@paris-ias/trees 2.2.21 → 2.2.22
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.
|
@@ -48,6 +48,23 @@ export enum newsCategories {
|
|
|
48
48
|
Video = "VIDEO",
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
+
export enum publicationPublicType {
|
|
52
|
+
Article = "ARTICLE", // Aka PPIAS publication
|
|
53
|
+
Book = "BOOK",
|
|
54
|
+
BookChapter = "BOOK_CHAPTER",
|
|
55
|
+
ConferencePaper = "CONFERENCE_PAPER",
|
|
56
|
+
Data = "DATA",
|
|
57
|
+
Report = "REPORT",
|
|
58
|
+
Software = "SOFTWARE",
|
|
59
|
+
Thesis = "THESIS",
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export enum mediaPublicType {
|
|
63
|
+
Audio = "AUDIO",
|
|
64
|
+
Podcast = "PODCAST",
|
|
65
|
+
Video = "VIDEO",
|
|
66
|
+
}
|
|
67
|
+
|
|
51
68
|
export enum publicationType {
|
|
52
69
|
// Publication
|
|
53
70
|
Article = "ARTICLE", // Aka PPIAS publication
|
|
@@ -85,6 +102,9 @@ export interface Publications {
|
|
|
85
102
|
state?: publicationState | publicationStateAdmin
|
|
86
103
|
tags?: Tag[]
|
|
87
104
|
type: publicationType
|
|
105
|
+
publicationType?: publicationPublicType
|
|
106
|
+
mediaType?: mediaPublicType
|
|
107
|
+
mediaCategory?: mediaType
|
|
88
108
|
url?: URL
|
|
89
109
|
video?: Video
|
|
90
110
|
}
|
package/dist/list/events.cjs.js
CHANGED
package/dist/list/events.js
CHANGED
|
@@ -338,6 +338,70 @@ const data = {
|
|
|
338
338
|
"disjonctive": false
|
|
339
339
|
},
|
|
340
340
|
"value": ""
|
|
341
|
+
},
|
|
342
|
+
"publicationType": {
|
|
343
|
+
"type": "Select",
|
|
344
|
+
"items": {
|
|
345
|
+
"Article": "ARTICLE",
|
|
346
|
+
"Book": "BOOK",
|
|
347
|
+
"BookChapter": "BOOK_CHAPTER",
|
|
348
|
+
"ConferencePaper": "CONFERENCE_PAPER",
|
|
349
|
+
"Data": "DATA",
|
|
350
|
+
"Report": "REPORT",
|
|
351
|
+
"Software": "SOFTWARE",
|
|
352
|
+
"Thesis": "THESIS"
|
|
353
|
+
},
|
|
354
|
+
"multiple": true,
|
|
355
|
+
"show": {
|
|
356
|
+
"default": false,
|
|
357
|
+
"switchIf": [
|
|
358
|
+
{
|
|
359
|
+
"modifier": "publications"
|
|
360
|
+
}
|
|
361
|
+
],
|
|
362
|
+
"disjonctive": true
|
|
363
|
+
},
|
|
364
|
+
"value": ""
|
|
365
|
+
},
|
|
366
|
+
"mediaPublicType": {
|
|
367
|
+
"type": "Select",
|
|
368
|
+
"items": {
|
|
369
|
+
"Audio": "AUDIO",
|
|
370
|
+
"Podcast": "PODCAST",
|
|
371
|
+
"Video": "VIDEO"
|
|
372
|
+
},
|
|
373
|
+
"multiple": true,
|
|
374
|
+
"show": {
|
|
375
|
+
"default": false,
|
|
376
|
+
"switchIf": [
|
|
377
|
+
{
|
|
378
|
+
"modifier": "media"
|
|
379
|
+
}
|
|
380
|
+
],
|
|
381
|
+
"disjonctive": true
|
|
382
|
+
},
|
|
383
|
+
"value": ""
|
|
384
|
+
},
|
|
385
|
+
"mediaCategory": {
|
|
386
|
+
"type": "Select",
|
|
387
|
+
"items": {
|
|
388
|
+
"Fellows": "FELLOWS",
|
|
389
|
+
"Events": "EVENTS",
|
|
390
|
+
"Ideas": "IDEAS",
|
|
391
|
+
"ConferenceCycle": "CONFERENCE_CYCLE",
|
|
392
|
+
"Other": "OTHER"
|
|
393
|
+
},
|
|
394
|
+
"multiple": true,
|
|
395
|
+
"show": {
|
|
396
|
+
"default": false,
|
|
397
|
+
"switchIf": [
|
|
398
|
+
{
|
|
399
|
+
"modifier": "media"
|
|
400
|
+
}
|
|
401
|
+
],
|
|
402
|
+
"disjonctive": true
|
|
403
|
+
},
|
|
404
|
+
"value": ""
|
|
341
405
|
}
|
|
342
406
|
},
|
|
343
407
|
"limit": 20
|
|
@@ -48,6 +48,23 @@ export enum newsCategories {
|
|
|
48
48
|
Video = "VIDEO",
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
+
export enum publicationPublicType {
|
|
52
|
+
Article = "ARTICLE", // Aka PPIAS publication
|
|
53
|
+
Book = "BOOK",
|
|
54
|
+
BookChapter = "BOOK_CHAPTER",
|
|
55
|
+
ConferencePaper = "CONFERENCE_PAPER",
|
|
56
|
+
Data = "DATA",
|
|
57
|
+
Report = "REPORT",
|
|
58
|
+
Software = "SOFTWARE",
|
|
59
|
+
Thesis = "THESIS",
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export enum mediaPublicType {
|
|
63
|
+
Audio = "AUDIO",
|
|
64
|
+
Podcast = "PODCAST",
|
|
65
|
+
Video = "VIDEO",
|
|
66
|
+
}
|
|
67
|
+
|
|
51
68
|
export enum publicationType {
|
|
52
69
|
// Publication
|
|
53
70
|
Article = "ARTICLE", // Aka PPIAS publication
|
|
@@ -85,6 +102,9 @@ export interface Publications {
|
|
|
85
102
|
state?: publicationState | publicationStateAdmin
|
|
86
103
|
tags?: Tag[]
|
|
87
104
|
type: publicationType
|
|
105
|
+
publicationType?: publicationPublicType
|
|
106
|
+
mediaType?: mediaPublicType
|
|
107
|
+
mediaCategory?: mediaType
|
|
88
108
|
url?: URL
|
|
89
109
|
video?: Video
|
|
90
110
|
}
|
|
@@ -336,6 +336,70 @@ const data = {
|
|
|
336
336
|
"disjonctive": false
|
|
337
337
|
},
|
|
338
338
|
"value": ""
|
|
339
|
+
},
|
|
340
|
+
"publicationType": {
|
|
341
|
+
"type": "Select",
|
|
342
|
+
"items": {
|
|
343
|
+
"Article": "ARTICLE",
|
|
344
|
+
"Book": "BOOK",
|
|
345
|
+
"BookChapter": "BOOK_CHAPTER",
|
|
346
|
+
"ConferencePaper": "CONFERENCE_PAPER",
|
|
347
|
+
"Data": "DATA",
|
|
348
|
+
"Report": "REPORT",
|
|
349
|
+
"Software": "SOFTWARE",
|
|
350
|
+
"Thesis": "THESIS"
|
|
351
|
+
},
|
|
352
|
+
"multiple": true,
|
|
353
|
+
"show": {
|
|
354
|
+
"default": false,
|
|
355
|
+
"switchIf": [
|
|
356
|
+
{
|
|
357
|
+
"modifier": "publications"
|
|
358
|
+
}
|
|
359
|
+
],
|
|
360
|
+
"disjonctive": true
|
|
361
|
+
},
|
|
362
|
+
"value": ""
|
|
363
|
+
},
|
|
364
|
+
"mediaPublicType": {
|
|
365
|
+
"type": "Select",
|
|
366
|
+
"items": {
|
|
367
|
+
"Audio": "AUDIO",
|
|
368
|
+
"Podcast": "PODCAST",
|
|
369
|
+
"Video": "VIDEO"
|
|
370
|
+
},
|
|
371
|
+
"multiple": true,
|
|
372
|
+
"show": {
|
|
373
|
+
"default": false,
|
|
374
|
+
"switchIf": [
|
|
375
|
+
{
|
|
376
|
+
"modifier": "media"
|
|
377
|
+
}
|
|
378
|
+
],
|
|
379
|
+
"disjonctive": true
|
|
380
|
+
},
|
|
381
|
+
"value": ""
|
|
382
|
+
},
|
|
383
|
+
"mediaCategory": {
|
|
384
|
+
"type": "Select",
|
|
385
|
+
"items": {
|
|
386
|
+
"Fellows": "FELLOWS",
|
|
387
|
+
"Events": "EVENTS",
|
|
388
|
+
"Ideas": "IDEAS",
|
|
389
|
+
"ConferenceCycle": "CONFERENCE_CYCLE",
|
|
390
|
+
"Other": "OTHER"
|
|
391
|
+
},
|
|
392
|
+
"multiple": true,
|
|
393
|
+
"show": {
|
|
394
|
+
"default": false,
|
|
395
|
+
"switchIf": [
|
|
396
|
+
{
|
|
397
|
+
"modifier": "media"
|
|
398
|
+
}
|
|
399
|
+
],
|
|
400
|
+
"disjonctive": true
|
|
401
|
+
},
|
|
402
|
+
"value": ""
|
|
339
403
|
}
|
|
340
404
|
},
|
|
341
405
|
"limit": 20
|