citation-js 0.6.0 → 0.6.3
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/build/citation.js +393 -177
- package/build/citation.min.js +1 -1
- package/package.json +9 -9
package/build/citation.js
CHANGED
|
@@ -4282,7 +4282,7 @@ Translator.CONVERT_TO_TARGET = Symbol('convert to target');
|
|
|
4282
4282
|
},{}],44:[function(require,module,exports){
|
|
4283
4283
|
module.exports={
|
|
4284
4284
|
"name": "@citation-js/core",
|
|
4285
|
-
"version": "0.6.
|
|
4285
|
+
"version": "0.6.1",
|
|
4286
4286
|
"description": "Convert different bibliographic metadata sources",
|
|
4287
4287
|
"keywords": [
|
|
4288
4288
|
"citation-js",
|
|
@@ -4321,7 +4321,7 @@ module.exports={
|
|
|
4321
4321
|
"devDependencies": {
|
|
4322
4322
|
"@babel/plugin-proposal-class-properties": "^7.12.1"
|
|
4323
4323
|
},
|
|
4324
|
-
"gitHead": "
|
|
4324
|
+
"gitHead": "1ea02689d28379ce53121148783c356a57b161cf"
|
|
4325
4325
|
}
|
|
4326
4326
|
|
|
4327
4327
|
},{}],45:[function(require,module,exports){
|
|
@@ -7237,7 +7237,7 @@ var nonSpec = [{
|
|
|
7237
7237
|
},
|
|
7238
7238
|
toSource: function toSource(_ref) {
|
|
7239
7239
|
var S2ID = _ref.S2ID;
|
|
7240
|
-
return
|
|
7240
|
+
return S2ID;
|
|
7241
7241
|
}
|
|
7242
7242
|
}
|
|
7243
7243
|
}];
|
|
@@ -9176,8 +9176,7 @@ function bibliography(data) {
|
|
|
9176
9176
|
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
9177
9177
|
var _options$template = options.template,
|
|
9178
9178
|
template = _options$template === void 0 ? 'apa' : _options$template,
|
|
9179
|
-
|
|
9180
|
-
lang = _options$lang === void 0 ? 'en-US' : _options$lang,
|
|
9179
|
+
lang = options.lang,
|
|
9181
9180
|
_options$format = options.format,
|
|
9182
9181
|
format = _options$format === void 0 ? 'text' : _options$format,
|
|
9183
9182
|
_options$nosort = options.nosort,
|
|
@@ -9251,8 +9250,7 @@ function citation(data) {
|
|
|
9251
9250
|
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
9252
9251
|
var _options$template = options.template,
|
|
9253
9252
|
template = _options$template === void 0 ? 'apa' : _options$template,
|
|
9254
|
-
|
|
9255
|
-
lang = _options$lang === void 0 ? 'en-US' : _options$lang,
|
|
9253
|
+
lang = options.lang,
|
|
9256
9254
|
_options$format = options.format,
|
|
9257
9255
|
format = _options$format === void 0 ? 'text' : _options$format;
|
|
9258
9256
|
var ids = data.map(function (_ref) {
|
|
@@ -9386,7 +9384,7 @@ var prepareEngine = function prepareEngine(data, templateName, language, format)
|
|
|
9386
9384
|
|
|
9387
9385
|
var template = _styles.templates.get(_styles.templates.has(templateName) ? templateName : 'apa');
|
|
9388
9386
|
|
|
9389
|
-
language = _locales.locales.has(language) ? language :
|
|
9387
|
+
language = _locales.locales.has(language) ? language : undefined;
|
|
9390
9388
|
|
|
9391
9389
|
var callback = function callback(key) {
|
|
9392
9390
|
if (Object.prototype.hasOwnProperty.call(items, key)) {
|
|
@@ -10991,6 +10989,7 @@ module.exports=[
|
|
|
10991
10989
|
"entry-encyclopedia",
|
|
10992
10990
|
"musical_score",
|
|
10993
10991
|
"paper-conference",
|
|
10992
|
+
"periodical",
|
|
10994
10993
|
"post-weblog"
|
|
10995
10994
|
]
|
|
10996
10995
|
}
|
|
@@ -11036,9 +11035,11 @@ module.exports=[
|
|
|
11036
11035
|
"target": {
|
|
11037
11036
|
"type": [
|
|
11038
11037
|
"book",
|
|
11038
|
+
"classic",
|
|
11039
11039
|
"map",
|
|
11040
11040
|
"report",
|
|
11041
11041
|
"review-book",
|
|
11042
|
+
"software",
|
|
11042
11043
|
"webpage"
|
|
11043
11044
|
]
|
|
11044
11045
|
}
|
|
@@ -11116,6 +11117,7 @@ module.exports=[
|
|
|
11116
11117
|
"chapter",
|
|
11117
11118
|
"musical_score",
|
|
11118
11119
|
"paper-conference",
|
|
11120
|
+
"periodical",
|
|
11119
11121
|
"song",
|
|
11120
11122
|
"speech"
|
|
11121
11123
|
]
|
|
@@ -11213,6 +11215,7 @@ module.exports=[
|
|
|
11213
11215
|
"type": [
|
|
11214
11216
|
"book",
|
|
11215
11217
|
"chapter",
|
|
11218
|
+
"classic",
|
|
11216
11219
|
"entry",
|
|
11217
11220
|
"entry-dictionary",
|
|
11218
11221
|
"entry-encyclopedia",
|
|
@@ -11329,12 +11332,17 @@ module.exports=[
|
|
|
11329
11332
|
"book",
|
|
11330
11333
|
"broadcast",
|
|
11331
11334
|
"chapter",
|
|
11335
|
+
"classic",
|
|
11336
|
+
"collection",
|
|
11332
11337
|
"dataset",
|
|
11338
|
+
"document",
|
|
11333
11339
|
"entry",
|
|
11334
11340
|
"entry-dictionary",
|
|
11335
11341
|
"entry-encyclopedia",
|
|
11342
|
+
"event",
|
|
11336
11343
|
"figure",
|
|
11337
11344
|
"graphic",
|
|
11345
|
+
"hearing",
|
|
11338
11346
|
"interview",
|
|
11339
11347
|
"legal_case",
|
|
11340
11348
|
"legislation",
|
|
@@ -11345,14 +11353,19 @@ module.exports=[
|
|
|
11345
11353
|
"pamphlet",
|
|
11346
11354
|
"paper-conference",
|
|
11347
11355
|
"patent",
|
|
11356
|
+
"performance",
|
|
11357
|
+
"periodical",
|
|
11348
11358
|
"personal_communication",
|
|
11349
11359
|
"post",
|
|
11350
11360
|
"post-weblog",
|
|
11361
|
+
"regulation",
|
|
11351
11362
|
"report",
|
|
11352
11363
|
"review",
|
|
11353
11364
|
"review-book",
|
|
11365
|
+
"software",
|
|
11354
11366
|
"song",
|
|
11355
11367
|
"speech",
|
|
11368
|
+
"standard",
|
|
11356
11369
|
"thesis",
|
|
11357
11370
|
"treaty",
|
|
11358
11371
|
"webpage"
|
|
@@ -11422,10 +11435,14 @@ module.exports=[
|
|
|
11422
11435
|
"article-magazine",
|
|
11423
11436
|
"book",
|
|
11424
11437
|
"chapter",
|
|
11438
|
+
"classic",
|
|
11439
|
+
"collection",
|
|
11425
11440
|
"dataset",
|
|
11441
|
+
"document",
|
|
11426
11442
|
"entry",
|
|
11427
11443
|
"entry-dictionary",
|
|
11428
11444
|
"entry-encyclopedia",
|
|
11445
|
+
"event",
|
|
11429
11446
|
"figure",
|
|
11430
11447
|
"graphic",
|
|
11431
11448
|
"interview",
|
|
@@ -11435,14 +11452,19 @@ module.exports=[
|
|
|
11435
11452
|
"pamphlet",
|
|
11436
11453
|
"paper-conference",
|
|
11437
11454
|
"patent",
|
|
11455
|
+
"performance",
|
|
11456
|
+
"periodical",
|
|
11438
11457
|
"personal_communication",
|
|
11439
11458
|
"post",
|
|
11440
11459
|
"post-weblog",
|
|
11460
|
+
"regulation",
|
|
11441
11461
|
"report",
|
|
11442
11462
|
"review",
|
|
11443
11463
|
"review-book",
|
|
11464
|
+
"software",
|
|
11444
11465
|
"song",
|
|
11445
11466
|
"speech",
|
|
11467
|
+
"standard",
|
|
11446
11468
|
"thesis",
|
|
11447
11469
|
"treaty",
|
|
11448
11470
|
"webpage"
|
|
@@ -11524,7 +11546,8 @@ module.exports=[
|
|
|
11524
11546
|
},
|
|
11525
11547
|
"target": {
|
|
11526
11548
|
"type": [
|
|
11527
|
-
"chapter"
|
|
11549
|
+
"chapter",
|
|
11550
|
+
"periodical"
|
|
11528
11551
|
]
|
|
11529
11552
|
}
|
|
11530
11553
|
}
|
|
@@ -11608,7 +11631,11 @@ module.exports=[
|
|
|
11608
11631
|
"SER"
|
|
11609
11632
|
]
|
|
11610
11633
|
},
|
|
11611
|
-
"target":
|
|
11634
|
+
"target": {
|
|
11635
|
+
"type": [
|
|
11636
|
+
"periodical"
|
|
11637
|
+
]
|
|
11638
|
+
}
|
|
11612
11639
|
}
|
|
11613
11640
|
},
|
|
11614
11641
|
{
|
|
@@ -11977,12 +12004,17 @@ module.exports=[
|
|
|
11977
12004
|
"book",
|
|
11978
12005
|
"broadcast",
|
|
11979
12006
|
"chapter",
|
|
12007
|
+
"classic",
|
|
12008
|
+
"collection",
|
|
11980
12009
|
"dataset",
|
|
12010
|
+
"document",
|
|
11981
12011
|
"entry",
|
|
11982
12012
|
"entry-dictionary",
|
|
11983
12013
|
"entry-encyclopedia",
|
|
12014
|
+
"event",
|
|
11984
12015
|
"figure",
|
|
11985
12016
|
"graphic",
|
|
12017
|
+
"hearing",
|
|
11986
12018
|
"interview",
|
|
11987
12019
|
"legal_case",
|
|
11988
12020
|
"legislation",
|
|
@@ -11993,14 +12025,19 @@ module.exports=[
|
|
|
11993
12025
|
"pamphlet",
|
|
11994
12026
|
"paper-conference",
|
|
11995
12027
|
"patent",
|
|
12028
|
+
"performance",
|
|
12029
|
+
"periodical",
|
|
11996
12030
|
"personal_communication",
|
|
11997
12031
|
"post",
|
|
11998
12032
|
"post-weblog",
|
|
12033
|
+
"regulation",
|
|
11999
12034
|
"report",
|
|
12000
12035
|
"review",
|
|
12001
12036
|
"review-book",
|
|
12037
|
+
"software",
|
|
12002
12038
|
"song",
|
|
12003
12039
|
"speech",
|
|
12040
|
+
"standard",
|
|
12004
12041
|
"thesis",
|
|
12005
12042
|
"treaty",
|
|
12006
12043
|
"webpage"
|
|
@@ -12064,25 +12101,35 @@ module.exports=[
|
|
|
12064
12101
|
"article-newspaper",
|
|
12065
12102
|
"book",
|
|
12066
12103
|
"chapter",
|
|
12104
|
+
"classic",
|
|
12105
|
+
"collection",
|
|
12067
12106
|
"dataset",
|
|
12107
|
+
"document",
|
|
12068
12108
|
"entry",
|
|
12069
12109
|
"entry-dictionary",
|
|
12070
12110
|
"entry-encyclopedia",
|
|
12111
|
+
"event",
|
|
12071
12112
|
"figure",
|
|
12072
12113
|
"graphic",
|
|
12114
|
+
"hearing",
|
|
12073
12115
|
"interview",
|
|
12074
12116
|
"legislation",
|
|
12075
12117
|
"manuscript",
|
|
12076
12118
|
"map",
|
|
12077
12119
|
"musical_score",
|
|
12078
12120
|
"pamphlet",
|
|
12121
|
+
"performance",
|
|
12122
|
+
"periodical",
|
|
12079
12123
|
"personal_communication",
|
|
12080
12124
|
"post",
|
|
12081
12125
|
"post-weblog",
|
|
12126
|
+
"regulation",
|
|
12082
12127
|
"report",
|
|
12083
12128
|
"review-book",
|
|
12129
|
+
"software",
|
|
12084
12130
|
"song",
|
|
12085
12131
|
"speech",
|
|
12132
|
+
"standard",
|
|
12086
12133
|
"thesis",
|
|
12087
12134
|
"treaty",
|
|
12088
12135
|
"webpage"
|
|
@@ -12183,11 +12230,15 @@ module.exports=[
|
|
|
12183
12230
|
"bill",
|
|
12184
12231
|
"book",
|
|
12185
12232
|
"broadcast",
|
|
12233
|
+
"collection",
|
|
12186
12234
|
"dataset",
|
|
12235
|
+
"document",
|
|
12187
12236
|
"entry",
|
|
12188
12237
|
"entry-encyclopedia",
|
|
12238
|
+
"event",
|
|
12189
12239
|
"figure",
|
|
12190
12240
|
"graphic",
|
|
12241
|
+
"hearing",
|
|
12191
12242
|
"interview",
|
|
12192
12243
|
"legal_case",
|
|
12193
12244
|
"legislation",
|
|
@@ -12196,14 +12247,18 @@ module.exports=[
|
|
|
12196
12247
|
"motion_picture",
|
|
12197
12248
|
"musical_score",
|
|
12198
12249
|
"pamphlet",
|
|
12250
|
+
"performance",
|
|
12251
|
+
"periodical",
|
|
12199
12252
|
"personal_communication",
|
|
12200
12253
|
"post",
|
|
12201
12254
|
"post-weblog",
|
|
12255
|
+
"regulation",
|
|
12202
12256
|
"report",
|
|
12203
12257
|
"review",
|
|
12204
12258
|
"review-book",
|
|
12205
12259
|
"song",
|
|
12206
12260
|
"speech",
|
|
12261
|
+
"standard",
|
|
12207
12262
|
"thesis",
|
|
12208
12263
|
"treaty",
|
|
12209
12264
|
"webpage"
|
|
@@ -12316,12 +12371,17 @@ module.exports=[
|
|
|
12316
12371
|
"book",
|
|
12317
12372
|
"broadcast",
|
|
12318
12373
|
"chapter",
|
|
12374
|
+
"classic",
|
|
12375
|
+
"collection",
|
|
12319
12376
|
"dataset",
|
|
12377
|
+
"document",
|
|
12320
12378
|
"entry",
|
|
12321
12379
|
"entry-dictionary",
|
|
12322
12380
|
"entry-encyclopedia",
|
|
12381
|
+
"event",
|
|
12323
12382
|
"figure",
|
|
12324
12383
|
"graphic",
|
|
12384
|
+
"hearing",
|
|
12325
12385
|
"interview",
|
|
12326
12386
|
"legal_case",
|
|
12327
12387
|
"legislation",
|
|
@@ -12332,14 +12392,19 @@ module.exports=[
|
|
|
12332
12392
|
"pamphlet",
|
|
12333
12393
|
"paper-conference",
|
|
12334
12394
|
"patent",
|
|
12395
|
+
"performance",
|
|
12396
|
+
"periodical",
|
|
12335
12397
|
"personal_communication",
|
|
12336
12398
|
"post",
|
|
12337
12399
|
"post-weblog",
|
|
12400
|
+
"regulation",
|
|
12338
12401
|
"report",
|
|
12339
12402
|
"review",
|
|
12340
12403
|
"review-book",
|
|
12404
|
+
"software",
|
|
12341
12405
|
"song",
|
|
12342
12406
|
"speech",
|
|
12407
|
+
"standard",
|
|
12343
12408
|
"thesis",
|
|
12344
12409
|
"treaty",
|
|
12345
12410
|
"webpage"
|
|
@@ -12421,12 +12486,17 @@ module.exports=[
|
|
|
12421
12486
|
"book",
|
|
12422
12487
|
"broadcast",
|
|
12423
12488
|
"chapter",
|
|
12489
|
+
"classic",
|
|
12490
|
+
"collection",
|
|
12424
12491
|
"dataset",
|
|
12492
|
+
"document",
|
|
12425
12493
|
"entry",
|
|
12426
12494
|
"entry-dictionary",
|
|
12427
12495
|
"entry-encyclopedia",
|
|
12496
|
+
"event",
|
|
12428
12497
|
"figure",
|
|
12429
12498
|
"graphic",
|
|
12499
|
+
"hearing",
|
|
12430
12500
|
"interview",
|
|
12431
12501
|
"legal_case",
|
|
12432
12502
|
"legislation",
|
|
@@ -12437,14 +12507,19 @@ module.exports=[
|
|
|
12437
12507
|
"pamphlet",
|
|
12438
12508
|
"paper-conference",
|
|
12439
12509
|
"patent",
|
|
12510
|
+
"performance",
|
|
12511
|
+
"periodical",
|
|
12440
12512
|
"personal_communication",
|
|
12441
12513
|
"post",
|
|
12442
12514
|
"post-weblog",
|
|
12515
|
+
"regulation",
|
|
12443
12516
|
"report",
|
|
12444
12517
|
"review",
|
|
12445
12518
|
"review-book",
|
|
12519
|
+
"software",
|
|
12446
12520
|
"song",
|
|
12447
12521
|
"speech",
|
|
12522
|
+
"standard",
|
|
12448
12523
|
"thesis",
|
|
12449
12524
|
"treaty",
|
|
12450
12525
|
"webpage"
|
|
@@ -12497,9 +12572,13 @@ module.exports=[
|
|
|
12497
12572
|
"book",
|
|
12498
12573
|
"broadcast",
|
|
12499
12574
|
"chapter",
|
|
12575
|
+
"classic",
|
|
12576
|
+
"collection",
|
|
12577
|
+
"document",
|
|
12500
12578
|
"entry",
|
|
12501
12579
|
"entry-dictionary",
|
|
12502
12580
|
"entry-encyclopedia",
|
|
12581
|
+
"event",
|
|
12503
12582
|
"graphic",
|
|
12504
12583
|
"interview",
|
|
12505
12584
|
"legislation",
|
|
@@ -12508,7 +12587,10 @@ module.exports=[
|
|
|
12508
12587
|
"musical_score",
|
|
12509
12588
|
"pamphlet",
|
|
12510
12589
|
"paper-conference",
|
|
12590
|
+
"performance",
|
|
12591
|
+
"periodical",
|
|
12511
12592
|
"post-weblog",
|
|
12593
|
+
"regulation",
|
|
12512
12594
|
"report",
|
|
12513
12595
|
"review-book",
|
|
12514
12596
|
"song",
|
|
@@ -12535,7 +12617,8 @@ module.exports=[
|
|
|
12535
12617
|
"target": {
|
|
12536
12618
|
"type": [
|
|
12537
12619
|
"dataset",
|
|
12538
|
-
"figure"
|
|
12620
|
+
"figure",
|
|
12621
|
+
"software"
|
|
12539
12622
|
]
|
|
12540
12623
|
}
|
|
12541
12624
|
}
|
|
@@ -12678,10 +12761,13 @@ module.exports=[
|
|
|
12678
12761
|
"legislation",
|
|
12679
12762
|
"manuscript",
|
|
12680
12763
|
"pamphlet",
|
|
12764
|
+
"periodical",
|
|
12681
12765
|
"personal_communication",
|
|
12682
12766
|
"post",
|
|
12767
|
+
"regulation",
|
|
12683
12768
|
"review",
|
|
12684
|
-
"review-book"
|
|
12769
|
+
"review-book",
|
|
12770
|
+
"standard"
|
|
12685
12771
|
]
|
|
12686
12772
|
}
|
|
12687
12773
|
}
|
|
@@ -12760,12 +12846,17 @@ module.exports=[
|
|
|
12760
12846
|
"book",
|
|
12761
12847
|
"broadcast",
|
|
12762
12848
|
"chapter",
|
|
12849
|
+
"classic",
|
|
12850
|
+
"collection",
|
|
12763
12851
|
"dataset",
|
|
12852
|
+
"document",
|
|
12764
12853
|
"entry",
|
|
12765
12854
|
"entry-dictionary",
|
|
12766
12855
|
"entry-encyclopedia",
|
|
12856
|
+
"event",
|
|
12767
12857
|
"figure",
|
|
12768
12858
|
"graphic",
|
|
12859
|
+
"hearing",
|
|
12769
12860
|
"interview",
|
|
12770
12861
|
"legal_case",
|
|
12771
12862
|
"legislation",
|
|
@@ -12776,14 +12867,19 @@ module.exports=[
|
|
|
12776
12867
|
"pamphlet",
|
|
12777
12868
|
"paper-conference",
|
|
12778
12869
|
"patent",
|
|
12870
|
+
"performance",
|
|
12871
|
+
"periodical",
|
|
12779
12872
|
"personal_communication",
|
|
12780
12873
|
"post",
|
|
12781
12874
|
"post-weblog",
|
|
12875
|
+
"regulation",
|
|
12782
12876
|
"report",
|
|
12783
12877
|
"review",
|
|
12784
12878
|
"review-book",
|
|
12879
|
+
"software",
|
|
12785
12880
|
"song",
|
|
12786
12881
|
"speech",
|
|
12882
|
+
"standard",
|
|
12787
12883
|
"thesis",
|
|
12788
12884
|
"treaty",
|
|
12789
12885
|
"webpage"
|
|
@@ -12803,7 +12899,11 @@ module.exports=[
|
|
|
12803
12899
|
"HEAR"
|
|
12804
12900
|
]
|
|
12805
12901
|
},
|
|
12806
|
-
"target":
|
|
12902
|
+
"target": {
|
|
12903
|
+
"type": [
|
|
12904
|
+
"hearing"
|
|
12905
|
+
]
|
|
12906
|
+
}
|
|
12807
12907
|
}
|
|
12808
12908
|
},
|
|
12809
12909
|
{
|
|
@@ -12880,12 +12980,17 @@ module.exports=[
|
|
|
12880
12980
|
"book",
|
|
12881
12981
|
"broadcast",
|
|
12882
12982
|
"chapter",
|
|
12983
|
+
"classic",
|
|
12984
|
+
"collection",
|
|
12883
12985
|
"dataset",
|
|
12986
|
+
"document",
|
|
12884
12987
|
"entry",
|
|
12885
12988
|
"entry-dictionary",
|
|
12886
12989
|
"entry-encyclopedia",
|
|
12990
|
+
"event",
|
|
12887
12991
|
"figure",
|
|
12888
12992
|
"graphic",
|
|
12993
|
+
"hearing",
|
|
12889
12994
|
"interview",
|
|
12890
12995
|
"legal_case",
|
|
12891
12996
|
"legislation",
|
|
@@ -12896,14 +13001,19 @@ module.exports=[
|
|
|
12896
13001
|
"pamphlet",
|
|
12897
13002
|
"paper-conference",
|
|
12898
13003
|
"patent",
|
|
13004
|
+
"performance",
|
|
13005
|
+
"periodical",
|
|
12899
13006
|
"personal_communication",
|
|
12900
13007
|
"post",
|
|
12901
13008
|
"post-weblog",
|
|
13009
|
+
"regulation",
|
|
12902
13010
|
"report",
|
|
12903
13011
|
"review",
|
|
12904
13012
|
"review-book",
|
|
13013
|
+
"software",
|
|
12905
13014
|
"song",
|
|
12906
13015
|
"speech",
|
|
13016
|
+
"standard",
|
|
12907
13017
|
"thesis",
|
|
12908
13018
|
"treaty",
|
|
12909
13019
|
"webpage"
|
|
@@ -12983,12 +13093,17 @@ module.exports=[
|
|
|
12983
13093
|
"book",
|
|
12984
13094
|
"broadcast",
|
|
12985
13095
|
"chapter",
|
|
13096
|
+
"classic",
|
|
13097
|
+
"collection",
|
|
12986
13098
|
"dataset",
|
|
13099
|
+
"document",
|
|
12987
13100
|
"entry",
|
|
12988
13101
|
"entry-dictionary",
|
|
12989
13102
|
"entry-encyclopedia",
|
|
13103
|
+
"event",
|
|
12990
13104
|
"figure",
|
|
12991
13105
|
"graphic",
|
|
13106
|
+
"hearing",
|
|
12992
13107
|
"interview",
|
|
12993
13108
|
"legal_case",
|
|
12994
13109
|
"legislation",
|
|
@@ -12999,14 +13114,19 @@ module.exports=[
|
|
|
12999
13114
|
"pamphlet",
|
|
13000
13115
|
"paper-conference",
|
|
13001
13116
|
"patent",
|
|
13117
|
+
"performance",
|
|
13118
|
+
"periodical",
|
|
13002
13119
|
"personal_communication",
|
|
13003
13120
|
"post",
|
|
13004
13121
|
"post-weblog",
|
|
13122
|
+
"regulation",
|
|
13005
13123
|
"report",
|
|
13006
13124
|
"review",
|
|
13007
13125
|
"review-book",
|
|
13126
|
+
"software",
|
|
13008
13127
|
"song",
|
|
13009
13128
|
"speech",
|
|
13129
|
+
"standard",
|
|
13010
13130
|
"thesis",
|
|
13011
13131
|
"treaty",
|
|
13012
13132
|
"webpage"
|
|
@@ -13041,9 +13161,14 @@ module.exports=[
|
|
|
13041
13161
|
"target": {
|
|
13042
13162
|
"type": [
|
|
13043
13163
|
"bill",
|
|
13164
|
+
"collection",
|
|
13165
|
+
"document",
|
|
13044
13166
|
"entry-dictionary",
|
|
13167
|
+
"event",
|
|
13045
13168
|
"figure",
|
|
13169
|
+
"hearing",
|
|
13046
13170
|
"interview",
|
|
13171
|
+
"performance",
|
|
13047
13172
|
"song",
|
|
13048
13173
|
"speech",
|
|
13049
13174
|
"thesis",
|
|
@@ -13069,8 +13194,10 @@ module.exports=[
|
|
|
13069
13194
|
"target": {
|
|
13070
13195
|
"type": [
|
|
13071
13196
|
"book",
|
|
13197
|
+
"classic",
|
|
13072
13198
|
"entry",
|
|
13073
13199
|
"pamphlet",
|
|
13200
|
+
"periodical",
|
|
13074
13201
|
"review-book"
|
|
13075
13202
|
]
|
|
13076
13203
|
}
|
|
@@ -13134,7 +13261,9 @@ module.exports=[
|
|
|
13134
13261
|
"target": {
|
|
13135
13262
|
"type": [
|
|
13136
13263
|
"article-newspaper",
|
|
13137
|
-
"legislation"
|
|
13264
|
+
"legislation",
|
|
13265
|
+
"regulation",
|
|
13266
|
+
"standard"
|
|
13138
13267
|
]
|
|
13139
13268
|
}
|
|
13140
13269
|
}
|
|
@@ -13314,8 +13443,12 @@ module.exports=[
|
|
|
13314
13443
|
"article-magazine",
|
|
13315
13444
|
"article-newspaper",
|
|
13316
13445
|
"book",
|
|
13446
|
+
"classic",
|
|
13447
|
+
"collection",
|
|
13448
|
+
"document",
|
|
13317
13449
|
"entry",
|
|
13318
13450
|
"entry-dictionary",
|
|
13451
|
+
"event",
|
|
13319
13452
|
"figure",
|
|
13320
13453
|
"graphic",
|
|
13321
13454
|
"interview",
|
|
@@ -13324,13 +13457,18 @@ module.exports=[
|
|
|
13324
13457
|
"map",
|
|
13325
13458
|
"pamphlet",
|
|
13326
13459
|
"patent",
|
|
13460
|
+
"performance",
|
|
13461
|
+
"periodical",
|
|
13327
13462
|
"personal_communication",
|
|
13328
13463
|
"post",
|
|
13464
|
+
"regulation",
|
|
13329
13465
|
"report",
|
|
13330
13466
|
"review",
|
|
13331
13467
|
"review-book",
|
|
13468
|
+
"software",
|
|
13332
13469
|
"song",
|
|
13333
13470
|
"speech",
|
|
13471
|
+
"standard",
|
|
13334
13472
|
"thesis",
|
|
13335
13473
|
"treaty"
|
|
13336
13474
|
]
|
|
@@ -13436,12 +13574,17 @@ module.exports=[
|
|
|
13436
13574
|
"book",
|
|
13437
13575
|
"broadcast",
|
|
13438
13576
|
"chapter",
|
|
13577
|
+
"classic",
|
|
13578
|
+
"collection",
|
|
13439
13579
|
"dataset",
|
|
13580
|
+
"document",
|
|
13440
13581
|
"entry",
|
|
13441
13582
|
"entry-dictionary",
|
|
13442
13583
|
"entry-encyclopedia",
|
|
13584
|
+
"event",
|
|
13443
13585
|
"figure",
|
|
13444
13586
|
"graphic",
|
|
13587
|
+
"hearing",
|
|
13445
13588
|
"interview",
|
|
13446
13589
|
"legal_case",
|
|
13447
13590
|
"legislation",
|
|
@@ -13451,13 +13594,18 @@ module.exports=[
|
|
|
13451
13594
|
"musical_score",
|
|
13452
13595
|
"pamphlet",
|
|
13453
13596
|
"paper-conference",
|
|
13597
|
+
"performance",
|
|
13598
|
+
"periodical",
|
|
13454
13599
|
"personal_communication",
|
|
13455
13600
|
"post",
|
|
13456
13601
|
"post-weblog",
|
|
13602
|
+
"regulation",
|
|
13457
13603
|
"review",
|
|
13458
13604
|
"review-book",
|
|
13605
|
+
"software",
|
|
13459
13606
|
"song",
|
|
13460
13607
|
"speech",
|
|
13608
|
+
"standard",
|
|
13461
13609
|
"thesis",
|
|
13462
13610
|
"treaty",
|
|
13463
13611
|
"webpage"
|
|
@@ -13510,11 +13658,18 @@ module.exports=[
|
|
|
13510
13658
|
"target": {
|
|
13511
13659
|
"type": [
|
|
13512
13660
|
"book",
|
|
13661
|
+
"classic",
|
|
13662
|
+
"collection",
|
|
13663
|
+
"document",
|
|
13513
13664
|
"entry-dictionary",
|
|
13514
13665
|
"entry-encyclopedia",
|
|
13666
|
+
"event",
|
|
13667
|
+
"hearing",
|
|
13515
13668
|
"interview",
|
|
13516
13669
|
"musical_score",
|
|
13517
13670
|
"paper-conference",
|
|
13671
|
+
"performance",
|
|
13672
|
+
"periodical",
|
|
13518
13673
|
"review-book",
|
|
13519
13674
|
"treaty"
|
|
13520
13675
|
]
|
|
@@ -13614,12 +13769,18 @@ module.exports=[
|
|
|
13614
13769
|
"article-magazine",
|
|
13615
13770
|
"book",
|
|
13616
13771
|
"chapter",
|
|
13772
|
+
"classic",
|
|
13773
|
+
"collection",
|
|
13774
|
+
"document",
|
|
13617
13775
|
"entry",
|
|
13618
13776
|
"entry-dictionary",
|
|
13619
13777
|
"entry-encyclopedia",
|
|
13778
|
+
"event",
|
|
13620
13779
|
"interview",
|
|
13621
13780
|
"musical_score",
|
|
13622
13781
|
"pamphlet",
|
|
13782
|
+
"performance",
|
|
13783
|
+
"periodical",
|
|
13623
13784
|
"review",
|
|
13624
13785
|
"review-book",
|
|
13625
13786
|
"treaty"
|
|
@@ -13644,8 +13805,10 @@ module.exports=[
|
|
|
13644
13805
|
"target": {
|
|
13645
13806
|
"type": [
|
|
13646
13807
|
"bill",
|
|
13808
|
+
"hearing",
|
|
13647
13809
|
"legal_case",
|
|
13648
|
-
"legislation"
|
|
13810
|
+
"legislation",
|
|
13811
|
+
"regulation"
|
|
13649
13812
|
]
|
|
13650
13813
|
}
|
|
13651
13814
|
}
|
|
@@ -13710,12 +13873,17 @@ module.exports=[
|
|
|
13710
13873
|
"book",
|
|
13711
13874
|
"broadcast",
|
|
13712
13875
|
"chapter",
|
|
13876
|
+
"classic",
|
|
13877
|
+
"collection",
|
|
13713
13878
|
"dataset",
|
|
13879
|
+
"document",
|
|
13714
13880
|
"entry",
|
|
13715
13881
|
"entry-dictionary",
|
|
13716
13882
|
"entry-encyclopedia",
|
|
13883
|
+
"event",
|
|
13717
13884
|
"figure",
|
|
13718
13885
|
"graphic",
|
|
13886
|
+
"hearing",
|
|
13719
13887
|
"interview",
|
|
13720
13888
|
"legislation",
|
|
13721
13889
|
"map",
|
|
@@ -13723,12 +13891,17 @@ module.exports=[
|
|
|
13723
13891
|
"musical_score",
|
|
13724
13892
|
"pamphlet",
|
|
13725
13893
|
"paper-conference",
|
|
13894
|
+
"performance",
|
|
13895
|
+
"periodical",
|
|
13726
13896
|
"personal_communication",
|
|
13727
13897
|
"post",
|
|
13728
13898
|
"post-weblog",
|
|
13899
|
+
"regulation",
|
|
13729
13900
|
"review-book",
|
|
13901
|
+
"software",
|
|
13730
13902
|
"song",
|
|
13731
13903
|
"speech",
|
|
13904
|
+
"standard",
|
|
13732
13905
|
"thesis",
|
|
13733
13906
|
"treaty",
|
|
13734
13907
|
"webpage"
|
|
@@ -13788,7 +13961,9 @@ module.exports=[
|
|
|
13788
13961
|
"type": [
|
|
13789
13962
|
"article-newspaper",
|
|
13790
13963
|
"chapter",
|
|
13791
|
-
"
|
|
13964
|
+
"classic",
|
|
13965
|
+
"entry-dictionary",
|
|
13966
|
+
"software"
|
|
13792
13967
|
]
|
|
13793
13968
|
}
|
|
13794
13969
|
}
|
|
@@ -13855,9 +14030,14 @@ module.exports=[
|
|
|
13855
14030
|
"article-magazine",
|
|
13856
14031
|
"article-newspaper",
|
|
13857
14032
|
"chapter",
|
|
14033
|
+
"collection",
|
|
14034
|
+
"document",
|
|
13858
14035
|
"entry-dictionary",
|
|
13859
14036
|
"entry-encyclopedia",
|
|
14037
|
+
"event",
|
|
13860
14038
|
"interview",
|
|
14039
|
+
"performance",
|
|
14040
|
+
"periodical",
|
|
13861
14041
|
"review",
|
|
13862
14042
|
"treaty"
|
|
13863
14043
|
]
|
|
@@ -13895,8 +14075,12 @@ module.exports=[
|
|
|
13895
14075
|
"type": [
|
|
13896
14076
|
"article-newspaper",
|
|
13897
14077
|
"bill",
|
|
14078
|
+
"collection",
|
|
14079
|
+
"document",
|
|
14080
|
+
"event",
|
|
13898
14081
|
"interview",
|
|
13899
14082
|
"musical_score",
|
|
14083
|
+
"performance",
|
|
13900
14084
|
"treaty"
|
|
13901
14085
|
]
|
|
13902
14086
|
}
|
|
@@ -13930,7 +14114,8 @@ module.exports=[
|
|
|
13930
14114
|
},
|
|
13931
14115
|
"target": {
|
|
13932
14116
|
"type": [
|
|
13933
|
-
"chapter"
|
|
14117
|
+
"chapter",
|
|
14118
|
+
"periodical"
|
|
13934
14119
|
]
|
|
13935
14120
|
}
|
|
13936
14121
|
}
|
|
@@ -14025,7 +14210,11 @@ module.exports=[
|
|
|
14025
14210
|
"STAND"
|
|
14026
14211
|
]
|
|
14027
14212
|
},
|
|
14028
|
-
"target":
|
|
14213
|
+
"target": {
|
|
14214
|
+
"type": [
|
|
14215
|
+
"standard"
|
|
14216
|
+
]
|
|
14217
|
+
}
|
|
14029
14218
|
}
|
|
14030
14219
|
},
|
|
14031
14220
|
{
|
|
@@ -14060,7 +14249,8 @@ module.exports=[
|
|
|
14060
14249
|
},
|
|
14061
14250
|
"target": {
|
|
14062
14251
|
"type": [
|
|
14063
|
-
"legislation"
|
|
14252
|
+
"legislation",
|
|
14253
|
+
"regulation"
|
|
14064
14254
|
]
|
|
14065
14255
|
}
|
|
14066
14256
|
}
|
|
@@ -14081,7 +14271,12 @@ module.exports=[
|
|
|
14081
14271
|
},
|
|
14082
14272
|
"target": {
|
|
14083
14273
|
"type": [
|
|
14274
|
+
"classic",
|
|
14275
|
+
"collection",
|
|
14276
|
+
"document",
|
|
14277
|
+
"event",
|
|
14084
14278
|
"interview",
|
|
14279
|
+
"performance",
|
|
14085
14280
|
"treaty"
|
|
14086
14281
|
]
|
|
14087
14282
|
}
|
|
@@ -14123,11 +14318,14 @@ module.exports=[
|
|
|
14123
14318
|
"entry",
|
|
14124
14319
|
"entry-dictionary",
|
|
14125
14320
|
"entry-encyclopedia",
|
|
14321
|
+
"hearing",
|
|
14126
14322
|
"map",
|
|
14127
14323
|
"pamphlet",
|
|
14128
14324
|
"paper-conference",
|
|
14325
|
+
"periodical",
|
|
14129
14326
|
"post-weblog",
|
|
14130
14327
|
"review-book",
|
|
14328
|
+
"software",
|
|
14131
14329
|
"song",
|
|
14132
14330
|
"speech",
|
|
14133
14331
|
"webpage"
|
|
@@ -14193,7 +14391,9 @@ module.exports=[
|
|
|
14193
14391
|
},
|
|
14194
14392
|
"target": {
|
|
14195
14393
|
"type": [
|
|
14196
|
-
"legislation"
|
|
14394
|
+
"legislation",
|
|
14395
|
+
"regulation",
|
|
14396
|
+
"standard"
|
|
14197
14397
|
]
|
|
14198
14398
|
}
|
|
14199
14399
|
}
|
|
@@ -14249,9 +14449,13 @@ module.exports=[
|
|
|
14249
14449
|
"article-newspaper",
|
|
14250
14450
|
"bill",
|
|
14251
14451
|
"chapter",
|
|
14452
|
+
"collection",
|
|
14453
|
+
"document",
|
|
14252
14454
|
"entry",
|
|
14253
14455
|
"entry-dictionary",
|
|
14254
14456
|
"entry-encyclopedia",
|
|
14457
|
+
"event",
|
|
14458
|
+
"hearing",
|
|
14255
14459
|
"interview",
|
|
14256
14460
|
"legislation",
|
|
14257
14461
|
"manuscript",
|
|
@@ -14259,10 +14463,14 @@ module.exports=[
|
|
|
14259
14463
|
"pamphlet",
|
|
14260
14464
|
"paper-conference",
|
|
14261
14465
|
"patent",
|
|
14466
|
+
"performance",
|
|
14467
|
+
"periodical",
|
|
14262
14468
|
"personal_communication",
|
|
14263
14469
|
"post",
|
|
14470
|
+
"regulation",
|
|
14264
14471
|
"report",
|
|
14265
14472
|
"review",
|
|
14473
|
+
"standard",
|
|
14266
14474
|
"treaty"
|
|
14267
14475
|
]
|
|
14268
14476
|
}
|
|
@@ -14284,6 +14492,7 @@ module.exports=[
|
|
|
14284
14492
|
"target": {
|
|
14285
14493
|
"type": [
|
|
14286
14494
|
"book",
|
|
14495
|
+
"classic",
|
|
14287
14496
|
"review-book",
|
|
14288
14497
|
"thesis"
|
|
14289
14498
|
]
|
|
@@ -14387,11 +14596,16 @@ module.exports=[
|
|
|
14387
14596
|
"book",
|
|
14388
14597
|
"broadcast",
|
|
14389
14598
|
"chapter",
|
|
14599
|
+
"classic",
|
|
14600
|
+
"collection",
|
|
14390
14601
|
"dataset",
|
|
14602
|
+
"document",
|
|
14391
14603
|
"entry",
|
|
14392
14604
|
"entry-dictionary",
|
|
14393
14605
|
"entry-encyclopedia",
|
|
14606
|
+
"event",
|
|
14394
14607
|
"graphic",
|
|
14608
|
+
"hearing",
|
|
14395
14609
|
"interview",
|
|
14396
14610
|
"legal_case",
|
|
14397
14611
|
"manuscript",
|
|
@@ -14401,12 +14615,15 @@ module.exports=[
|
|
|
14401
14615
|
"pamphlet",
|
|
14402
14616
|
"paper-conference",
|
|
14403
14617
|
"patent",
|
|
14618
|
+
"performance",
|
|
14619
|
+
"periodical",
|
|
14404
14620
|
"personal_communication",
|
|
14405
14621
|
"post",
|
|
14406
14622
|
"post-weblog",
|
|
14407
14623
|
"report",
|
|
14408
14624
|
"review",
|
|
14409
14625
|
"review-book",
|
|
14626
|
+
"software",
|
|
14410
14627
|
"song",
|
|
14411
14628
|
"speech",
|
|
14412
14629
|
"thesis",
|
|
@@ -14457,12 +14674,14 @@ module.exports=[
|
|
|
14457
14674
|
"type": [
|
|
14458
14675
|
"book",
|
|
14459
14676
|
"broadcast",
|
|
14677
|
+
"classic",
|
|
14460
14678
|
"entry",
|
|
14461
14679
|
"manuscript",
|
|
14462
14680
|
"map",
|
|
14463
14681
|
"motion_picture",
|
|
14464
14682
|
"report",
|
|
14465
14683
|
"review-book",
|
|
14684
|
+
"software",
|
|
14466
14685
|
"webpage"
|
|
14467
14686
|
]
|
|
14468
14687
|
}
|
|
@@ -14508,12 +14727,17 @@ module.exports=[
|
|
|
14508
14727
|
"article-newspaper",
|
|
14509
14728
|
"bill",
|
|
14510
14729
|
"chapter",
|
|
14730
|
+
"collection",
|
|
14731
|
+
"document",
|
|
14511
14732
|
"entry-dictionary",
|
|
14512
14733
|
"entry-encyclopedia",
|
|
14734
|
+
"event",
|
|
14513
14735
|
"interview",
|
|
14514
14736
|
"musical_score",
|
|
14515
14737
|
"pamphlet",
|
|
14516
14738
|
"patent",
|
|
14739
|
+
"performance",
|
|
14740
|
+
"periodical",
|
|
14517
14741
|
"post-weblog",
|
|
14518
14742
|
"review",
|
|
14519
14743
|
"thesis",
|
|
@@ -14548,7 +14772,11 @@ module.exports=[
|
|
|
14548
14772
|
"HEAR"
|
|
14549
14773
|
]
|
|
14550
14774
|
},
|
|
14551
|
-
"target":
|
|
14775
|
+
"target": {
|
|
14776
|
+
"type": [
|
|
14777
|
+
"hearing"
|
|
14778
|
+
]
|
|
14779
|
+
}
|
|
14552
14780
|
}
|
|
14553
14781
|
},
|
|
14554
14782
|
{
|
|
@@ -14560,7 +14788,11 @@ module.exports=[
|
|
|
14560
14788
|
"STAND"
|
|
14561
14789
|
]
|
|
14562
14790
|
},
|
|
14563
|
-
"target":
|
|
14791
|
+
"target": {
|
|
14792
|
+
"type": [
|
|
14793
|
+
"standard"
|
|
14794
|
+
]
|
|
14795
|
+
}
|
|
14564
14796
|
}
|
|
14565
14797
|
},
|
|
14566
14798
|
{
|
|
@@ -14589,10 +14821,15 @@ module.exports=[
|
|
|
14589
14821
|
"target": {
|
|
14590
14822
|
"type": [
|
|
14591
14823
|
"chapter",
|
|
14824
|
+
"collection",
|
|
14592
14825
|
"dataset",
|
|
14826
|
+
"document",
|
|
14827
|
+
"event",
|
|
14593
14828
|
"interview",
|
|
14594
14829
|
"musical_score",
|
|
14595
14830
|
"paper-conference",
|
|
14831
|
+
"performance",
|
|
14832
|
+
"periodical",
|
|
14596
14833
|
"song",
|
|
14597
14834
|
"speech",
|
|
14598
14835
|
"treaty"
|
|
@@ -14674,12 +14911,17 @@ module.exports=[
|
|
|
14674
14911
|
"book",
|
|
14675
14912
|
"broadcast",
|
|
14676
14913
|
"chapter",
|
|
14914
|
+
"classic",
|
|
14915
|
+
"collection",
|
|
14677
14916
|
"dataset",
|
|
14917
|
+
"document",
|
|
14678
14918
|
"entry",
|
|
14679
14919
|
"entry-dictionary",
|
|
14680
14920
|
"entry-encyclopedia",
|
|
14921
|
+
"event",
|
|
14681
14922
|
"figure",
|
|
14682
14923
|
"graphic",
|
|
14924
|
+
"hearing",
|
|
14683
14925
|
"interview",
|
|
14684
14926
|
"legal_case",
|
|
14685
14927
|
"legislation",
|
|
@@ -14690,14 +14932,19 @@ module.exports=[
|
|
|
14690
14932
|
"pamphlet",
|
|
14691
14933
|
"paper-conference",
|
|
14692
14934
|
"patent",
|
|
14935
|
+
"performance",
|
|
14936
|
+
"periodical",
|
|
14693
14937
|
"personal_communication",
|
|
14694
14938
|
"post",
|
|
14695
14939
|
"post-weblog",
|
|
14940
|
+
"regulation",
|
|
14696
14941
|
"report",
|
|
14697
14942
|
"review",
|
|
14698
14943
|
"review-book",
|
|
14944
|
+
"software",
|
|
14699
14945
|
"song",
|
|
14700
14946
|
"speech",
|
|
14947
|
+
"standard",
|
|
14701
14948
|
"thesis",
|
|
14702
14949
|
"treaty",
|
|
14703
14950
|
"webpage"
|
|
@@ -14782,10 +15029,14 @@ module.exports=[
|
|
|
14782
15029
|
"book",
|
|
14783
15030
|
"broadcast",
|
|
14784
15031
|
"chapter",
|
|
15032
|
+
"classic",
|
|
15033
|
+
"collection",
|
|
14785
15034
|
"dataset",
|
|
15035
|
+
"document",
|
|
14786
15036
|
"entry",
|
|
14787
15037
|
"entry-dictionary",
|
|
14788
15038
|
"entry-encyclopedia",
|
|
15039
|
+
"event",
|
|
14789
15040
|
"figure",
|
|
14790
15041
|
"graphic",
|
|
14791
15042
|
"interview",
|
|
@@ -14798,14 +15049,19 @@ module.exports=[
|
|
|
14798
15049
|
"pamphlet",
|
|
14799
15050
|
"paper-conference",
|
|
14800
15051
|
"patent",
|
|
15052
|
+
"performance",
|
|
15053
|
+
"periodical",
|
|
14801
15054
|
"personal_communication",
|
|
14802
15055
|
"post",
|
|
14803
15056
|
"post-weblog",
|
|
15057
|
+
"regulation",
|
|
14804
15058
|
"report",
|
|
14805
15059
|
"review",
|
|
14806
15060
|
"review-book",
|
|
15061
|
+
"software",
|
|
14807
15062
|
"song",
|
|
14808
15063
|
"speech",
|
|
15064
|
+
"standard",
|
|
14809
15065
|
"thesis",
|
|
14810
15066
|
"treaty",
|
|
14811
15067
|
"webpage"
|
|
@@ -14866,20 +15122,28 @@ module.exports=[
|
|
|
14866
15122
|
"bill",
|
|
14867
15123
|
"book",
|
|
14868
15124
|
"chapter",
|
|
15125
|
+
"classic",
|
|
15126
|
+
"collection",
|
|
15127
|
+
"document",
|
|
14869
15128
|
"entry",
|
|
14870
15129
|
"entry-dictionary",
|
|
14871
15130
|
"entry-encyclopedia",
|
|
15131
|
+
"event",
|
|
14872
15132
|
"interview",
|
|
14873
15133
|
"legal_case",
|
|
14874
15134
|
"legislation",
|
|
14875
15135
|
"manuscript",
|
|
14876
15136
|
"musical_score",
|
|
14877
15137
|
"paper-conference",
|
|
15138
|
+
"performance",
|
|
15139
|
+
"periodical",
|
|
15140
|
+
"regulation",
|
|
14878
15141
|
"report",
|
|
14879
15142
|
"review",
|
|
14880
15143
|
"review-book",
|
|
14881
15144
|
"song",
|
|
14882
15145
|
"speech",
|
|
15146
|
+
"standard",
|
|
14883
15147
|
"treaty"
|
|
14884
15148
|
]
|
|
14885
15149
|
}
|
|
@@ -14912,7 +15176,11 @@ module.exports=[
|
|
|
14912
15176
|
"COMP"
|
|
14913
15177
|
]
|
|
14914
15178
|
},
|
|
14915
|
-
"target":
|
|
15179
|
+
"target": {
|
|
15180
|
+
"type": [
|
|
15181
|
+
"software"
|
|
15182
|
+
]
|
|
15183
|
+
}
|
|
14916
15184
|
}
|
|
14917
15185
|
},
|
|
14918
15186
|
{
|
|
@@ -15031,12 +15299,17 @@ module.exports=[
|
|
|
15031
15299
|
"book",
|
|
15032
15300
|
"broadcast",
|
|
15033
15301
|
"chapter",
|
|
15302
|
+
"classic",
|
|
15303
|
+
"collection",
|
|
15034
15304
|
"dataset",
|
|
15305
|
+
"document",
|
|
15035
15306
|
"entry",
|
|
15036
15307
|
"entry-dictionary",
|
|
15037
15308
|
"entry-encyclopedia",
|
|
15309
|
+
"event",
|
|
15038
15310
|
"figure",
|
|
15039
15311
|
"graphic",
|
|
15312
|
+
"hearing",
|
|
15040
15313
|
"interview",
|
|
15041
15314
|
"legal_case",
|
|
15042
15315
|
"legislation",
|
|
@@ -15047,13 +15320,18 @@ module.exports=[
|
|
|
15047
15320
|
"pamphlet",
|
|
15048
15321
|
"paper-conference",
|
|
15049
15322
|
"patent",
|
|
15323
|
+
"performance",
|
|
15324
|
+
"periodical",
|
|
15050
15325
|
"personal_communication",
|
|
15051
15326
|
"post",
|
|
15327
|
+
"regulation",
|
|
15052
15328
|
"report",
|
|
15053
15329
|
"review",
|
|
15054
15330
|
"review-book",
|
|
15331
|
+
"software",
|
|
15055
15332
|
"song",
|
|
15056
15333
|
"speech",
|
|
15334
|
+
"standard",
|
|
15057
15335
|
"thesis",
|
|
15058
15336
|
"treaty"
|
|
15059
15337
|
]
|
|
@@ -15174,44 +15452,7 @@ module.exports=[
|
|
|
15174
15452
|
},
|
|
15175
15453
|
"target": {
|
|
15176
15454
|
"original-author": true,
|
|
15177
|
-
"translator": true
|
|
15178
|
-
"type": [
|
|
15179
|
-
"article",
|
|
15180
|
-
"article-journal",
|
|
15181
|
-
"article-magazine",
|
|
15182
|
-
"article-newspaper",
|
|
15183
|
-
"bill",
|
|
15184
|
-
"book",
|
|
15185
|
-
"broadcast",
|
|
15186
|
-
"chapter",
|
|
15187
|
-
"dataset",
|
|
15188
|
-
"entry",
|
|
15189
|
-
"entry-dictionary",
|
|
15190
|
-
"entry-encyclopedia",
|
|
15191
|
-
"figure",
|
|
15192
|
-
"graphic",
|
|
15193
|
-
"interview",
|
|
15194
|
-
"legal_case",
|
|
15195
|
-
"legislation",
|
|
15196
|
-
"manuscript",
|
|
15197
|
-
"map",
|
|
15198
|
-
"motion_picture",
|
|
15199
|
-
"musical_score",
|
|
15200
|
-
"pamphlet",
|
|
15201
|
-
"paper-conference",
|
|
15202
|
-
"patent",
|
|
15203
|
-
"personal_communication",
|
|
15204
|
-
"post",
|
|
15205
|
-
"post-weblog",
|
|
15206
|
-
"report",
|
|
15207
|
-
"review",
|
|
15208
|
-
"review-book",
|
|
15209
|
-
"song",
|
|
15210
|
-
"speech",
|
|
15211
|
-
"thesis",
|
|
15212
|
-
"treaty",
|
|
15213
|
-
"webpage"
|
|
15214
|
-
]
|
|
15455
|
+
"translator": true
|
|
15215
15456
|
}
|
|
15216
15457
|
}
|
|
15217
15458
|
},
|
|
@@ -15281,44 +15522,7 @@ module.exports=[
|
|
|
15281
15522
|
]
|
|
15282
15523
|
},
|
|
15283
15524
|
"target": {
|
|
15284
|
-
"translator": true
|
|
15285
|
-
"type": [
|
|
15286
|
-
"article",
|
|
15287
|
-
"article-journal",
|
|
15288
|
-
"article-magazine",
|
|
15289
|
-
"article-newspaper",
|
|
15290
|
-
"bill",
|
|
15291
|
-
"book",
|
|
15292
|
-
"broadcast",
|
|
15293
|
-
"chapter",
|
|
15294
|
-
"dataset",
|
|
15295
|
-
"entry",
|
|
15296
|
-
"entry-dictionary",
|
|
15297
|
-
"entry-encyclopedia",
|
|
15298
|
-
"figure",
|
|
15299
|
-
"graphic",
|
|
15300
|
-
"interview",
|
|
15301
|
-
"legal_case",
|
|
15302
|
-
"legislation",
|
|
15303
|
-
"manuscript",
|
|
15304
|
-
"map",
|
|
15305
|
-
"motion_picture",
|
|
15306
|
-
"musical_score",
|
|
15307
|
-
"pamphlet",
|
|
15308
|
-
"paper-conference",
|
|
15309
|
-
"patent",
|
|
15310
|
-
"personal_communication",
|
|
15311
|
-
"post",
|
|
15312
|
-
"post-weblog",
|
|
15313
|
-
"report",
|
|
15314
|
-
"review",
|
|
15315
|
-
"review-book",
|
|
15316
|
-
"song",
|
|
15317
|
-
"speech",
|
|
15318
|
-
"thesis",
|
|
15319
|
-
"treaty",
|
|
15320
|
-
"webpage"
|
|
15321
|
-
]
|
|
15525
|
+
"translator": true
|
|
15322
15526
|
}
|
|
15323
15527
|
}
|
|
15324
15528
|
},
|
|
@@ -15388,44 +15592,7 @@ module.exports=[
|
|
|
15388
15592
|
},
|
|
15389
15593
|
"target": {
|
|
15390
15594
|
"original-author": true,
|
|
15391
|
-
"translator": true
|
|
15392
|
-
"type": [
|
|
15393
|
-
"article",
|
|
15394
|
-
"article-journal",
|
|
15395
|
-
"article-magazine",
|
|
15396
|
-
"article-newspaper",
|
|
15397
|
-
"bill",
|
|
15398
|
-
"book",
|
|
15399
|
-
"broadcast",
|
|
15400
|
-
"chapter",
|
|
15401
|
-
"dataset",
|
|
15402
|
-
"entry",
|
|
15403
|
-
"entry-dictionary",
|
|
15404
|
-
"entry-encyclopedia",
|
|
15405
|
-
"figure",
|
|
15406
|
-
"graphic",
|
|
15407
|
-
"interview",
|
|
15408
|
-
"legal_case",
|
|
15409
|
-
"legislation",
|
|
15410
|
-
"manuscript",
|
|
15411
|
-
"map",
|
|
15412
|
-
"motion_picture",
|
|
15413
|
-
"musical_score",
|
|
15414
|
-
"pamphlet",
|
|
15415
|
-
"paper-conference",
|
|
15416
|
-
"patent",
|
|
15417
|
-
"personal_communication",
|
|
15418
|
-
"post",
|
|
15419
|
-
"post-weblog",
|
|
15420
|
-
"report",
|
|
15421
|
-
"review",
|
|
15422
|
-
"review-book",
|
|
15423
|
-
"song",
|
|
15424
|
-
"speech",
|
|
15425
|
-
"thesis",
|
|
15426
|
-
"treaty",
|
|
15427
|
-
"webpage"
|
|
15428
|
-
]
|
|
15595
|
+
"translator": true
|
|
15429
15596
|
}
|
|
15430
15597
|
}
|
|
15431
15598
|
},
|
|
@@ -15495,44 +15662,7 @@ module.exports=[
|
|
|
15495
15662
|
]
|
|
15496
15663
|
},
|
|
15497
15664
|
"target": {
|
|
15498
|
-
"translator": true
|
|
15499
|
-
"type": [
|
|
15500
|
-
"article",
|
|
15501
|
-
"article-journal",
|
|
15502
|
-
"article-magazine",
|
|
15503
|
-
"article-newspaper",
|
|
15504
|
-
"bill",
|
|
15505
|
-
"book",
|
|
15506
|
-
"broadcast",
|
|
15507
|
-
"chapter",
|
|
15508
|
-
"dataset",
|
|
15509
|
-
"entry",
|
|
15510
|
-
"entry-dictionary",
|
|
15511
|
-
"entry-encyclopedia",
|
|
15512
|
-
"figure",
|
|
15513
|
-
"graphic",
|
|
15514
|
-
"interview",
|
|
15515
|
-
"legal_case",
|
|
15516
|
-
"legislation",
|
|
15517
|
-
"manuscript",
|
|
15518
|
-
"map",
|
|
15519
|
-
"motion_picture",
|
|
15520
|
-
"musical_score",
|
|
15521
|
-
"pamphlet",
|
|
15522
|
-
"paper-conference",
|
|
15523
|
-
"patent",
|
|
15524
|
-
"personal_communication",
|
|
15525
|
-
"post",
|
|
15526
|
-
"post-weblog",
|
|
15527
|
-
"report",
|
|
15528
|
-
"review",
|
|
15529
|
-
"review-book",
|
|
15530
|
-
"song",
|
|
15531
|
-
"speech",
|
|
15532
|
-
"thesis",
|
|
15533
|
-
"treaty",
|
|
15534
|
-
"webpage"
|
|
15535
|
-
]
|
|
15665
|
+
"translator": true
|
|
15536
15666
|
}
|
|
15537
15667
|
}
|
|
15538
15668
|
}
|
|
@@ -16065,6 +16195,11 @@ function parseEntity(entity) {
|
|
|
16065
16195
|
data.author = data['original-author'];
|
|
16066
16196
|
}
|
|
16067
16197
|
|
|
16198
|
+
if (data._versions) {
|
|
16199
|
+
data.custom.versions = data._versions;
|
|
16200
|
+
delete data._versions;
|
|
16201
|
+
}
|
|
16202
|
+
|
|
16068
16203
|
return data;
|
|
16069
16204
|
}
|
|
16070
16205
|
|
|
@@ -16425,6 +16560,26 @@ function parseDateRange(dates) {
|
|
|
16425
16560
|
};
|
|
16426
16561
|
}
|
|
16427
16562
|
|
|
16563
|
+
function parseVersion(version) {
|
|
16564
|
+
var output = {
|
|
16565
|
+
version: version.value
|
|
16566
|
+
};
|
|
16567
|
+
|
|
16568
|
+
if (version.qualifiers.P577) {
|
|
16569
|
+
output.issued = (0, _date.parse)(version.qualifiers.P577[0]);
|
|
16570
|
+
}
|
|
16571
|
+
|
|
16572
|
+
if (version.qualifiers.P356) {
|
|
16573
|
+
output.DOI = version.qualifiers.P356[0];
|
|
16574
|
+
}
|
|
16575
|
+
|
|
16576
|
+
if (version.qualifiers.P6138) {
|
|
16577
|
+
output.SWHID = version.qualifiers.P6138[0];
|
|
16578
|
+
}
|
|
16579
|
+
|
|
16580
|
+
return output;
|
|
16581
|
+
}
|
|
16582
|
+
|
|
16428
16583
|
function parseProp(prop, value, entity) {
|
|
16429
16584
|
switch (prop) {
|
|
16430
16585
|
case 'type':
|
|
@@ -16484,6 +16639,9 @@ function parseProp(prop, value, entity) {
|
|
|
16484
16639
|
case 'number-of-volumes':
|
|
16485
16640
|
return value.length;
|
|
16486
16641
|
|
|
16642
|
+
case '_versions':
|
|
16643
|
+
return value.map(parseVersion);
|
|
16644
|
+
|
|
16487
16645
|
default:
|
|
16488
16646
|
return value;
|
|
16489
16647
|
}
|
|
@@ -16680,7 +16838,9 @@ module.exports={
|
|
|
16680
16838
|
"URL": {
|
|
16681
16839
|
"values": "any",
|
|
16682
16840
|
"props": ["P856", "P953", "P973", "P2699"]
|
|
16683
|
-
}
|
|
16841
|
+
},
|
|
16842
|
+
|
|
16843
|
+
"_versions": { "values": "all", "props": ["P348:all"] }
|
|
16684
16844
|
}
|
|
16685
16845
|
|
|
16686
16846
|
},{}],110:[function(require,module,exports){
|
|
@@ -16722,6 +16882,47 @@ var _api = require("./api.js");
|
|
|
16722
16882
|
|
|
16723
16883
|
var _id = require("./id.js");
|
|
16724
16884
|
|
|
16885
|
+
function ownKeys(object, enumerableOnly) {
|
|
16886
|
+
var keys = Object.keys(object);
|
|
16887
|
+
|
|
16888
|
+
if (Object.getOwnPropertySymbols) {
|
|
16889
|
+
var symbols = Object.getOwnPropertySymbols(object);
|
|
16890
|
+
enumerableOnly && (symbols = symbols.filter(function (sym) {
|
|
16891
|
+
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
16892
|
+
})), keys.push.apply(keys, symbols);
|
|
16893
|
+
}
|
|
16894
|
+
|
|
16895
|
+
return keys;
|
|
16896
|
+
}
|
|
16897
|
+
|
|
16898
|
+
function _objectSpread(target) {
|
|
16899
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
16900
|
+
var source = null != arguments[i] ? arguments[i] : {};
|
|
16901
|
+
i % 2 ? ownKeys(Object(source), !0).forEach(function (key) {
|
|
16902
|
+
_defineProperty(target, key, source[key]);
|
|
16903
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) {
|
|
16904
|
+
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
16905
|
+
});
|
|
16906
|
+
}
|
|
16907
|
+
|
|
16908
|
+
return target;
|
|
16909
|
+
}
|
|
16910
|
+
|
|
16911
|
+
function _defineProperty(obj, key, value) {
|
|
16912
|
+
if (key in obj) {
|
|
16913
|
+
Object.defineProperty(obj, key, {
|
|
16914
|
+
value: value,
|
|
16915
|
+
enumerable: true,
|
|
16916
|
+
configurable: true,
|
|
16917
|
+
writable: true
|
|
16918
|
+
});
|
|
16919
|
+
} else {
|
|
16920
|
+
obj[key] = value;
|
|
16921
|
+
}
|
|
16922
|
+
|
|
16923
|
+
return obj;
|
|
16924
|
+
}
|
|
16925
|
+
|
|
16725
16926
|
var SIMPLIFY_OPTS = {
|
|
16726
16927
|
keepQualifiers: true,
|
|
16727
16928
|
timeConverter: 'simple-day'
|
|
@@ -16860,7 +17061,22 @@ function completeResponse(entities, old) {
|
|
|
16860
17061
|
}
|
|
16861
17062
|
|
|
16862
17063
|
function simplifyEntities(entities) {
|
|
16863
|
-
|
|
17064
|
+
var simplified = _wikidataSdk.simplify.entities(entities, SIMPLIFY_OPTS);
|
|
17065
|
+
|
|
17066
|
+
for (var id in entities) {
|
|
17067
|
+
var claims = entities[id].claims;
|
|
17068
|
+
|
|
17069
|
+
if (claims.P348) {
|
|
17070
|
+
simplified[id].claims['P348:all'] = _wikidataSdk.simplify.propertyClaims(claims.P348, _objectSpread(_objectSpread({}, SIMPLIFY_OPTS), {}, {
|
|
17071
|
+
keepNonTruthy: true,
|
|
17072
|
+
keepRank: true
|
|
17073
|
+
})).filter(function (claim) {
|
|
17074
|
+
return claim.rank !== 'deprecated';
|
|
17075
|
+
});
|
|
17076
|
+
}
|
|
17077
|
+
}
|
|
17078
|
+
|
|
17079
|
+
return simplified;
|
|
16864
17080
|
}
|
|
16865
17081
|
|
|
16866
17082
|
function initLoopState(entities, cache) {
|