@paris-ias/trees 2.0.6 → 2.0.8
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/dist/form/actions.cjs.js +102 -0
- package/dist/form/actions.d.ts +21 -2
- package/dist/form/actions.js +3 -1
- package/dist/form/affiliations.cjs.js +197 -0
- package/dist/form/affiliations.d.ts +18 -2
- package/dist/form/affiliations.js +3 -1
- package/dist/form/apps.cjs.js +151 -0
- package/dist/form/apps.d.ts +30 -2
- package/dist/form/apps.js +3 -1
- package/dist/form/disciplines.cjs.js +49 -0
- package/dist/form/disciplines.d.ts +12 -2
- package/dist/form/disciplines.js +3 -1
- package/dist/form/events.cjs.js +855 -0
- package/dist/form/events.d.ts +96 -2
- package/dist/form/events.js +3 -1
- package/dist/form/fellowships.cjs.js +1326 -0
- package/dist/form/fellowships.d.ts +48 -2
- package/dist/form/fellowships.js +3 -1
- package/dist/form/files.cjs.js +49 -0
- package/dist/form/files.d.ts +25 -2
- package/dist/form/files.js +3 -1
- package/dist/form/mailing.cjs.js +62 -0
- package/dist/form/mailing.d.ts +18 -2
- package/dist/form/mailing.js +3 -1
- package/dist/form/news.cjs.js +271 -0
- package/dist/form/news.d.ts +51 -2
- package/dist/form/news.js +3 -1
- package/dist/form/people.cjs.js +677 -0
- package/dist/form/people.d.ts +26 -2
- package/dist/form/people.js +3 -1
- package/dist/form/projects.cjs.js +357 -0
- package/dist/form/projects.d.ts +36 -2
- package/dist/form/projects.js +3 -1
- package/dist/form/publications.cjs.js +383 -0
- package/dist/form/publications.d.ts +44 -2
- package/dist/form/publications.js +3 -1
- package/dist/form/tags.cjs.js +57 -0
- package/dist/form/tags.d.ts +12 -2
- package/dist/form/tags.js +3 -1
- package/dist/form/users.cjs.js +595 -0
- package/dist/form/users.d.ts +12 -2
- package/dist/form/users.js +3 -1
- package/dist/list/actions.cjs.js +152 -0
- package/dist/list/actions.d.ts +30 -2
- package/dist/list/actions.js +3 -1
- package/dist/list/affiliations.cjs.js +152 -0
- package/dist/list/affiliations.d.ts +27 -2
- package/dist/list/affiliations.js +3 -1
- package/dist/list/apps.cjs.js +152 -0
- package/dist/list/apps.d.ts +39 -2
- package/dist/list/apps.js +3 -1
- package/dist/list/disciplines.cjs.js +151 -0
- package/dist/list/disciplines.d.ts +21 -2
- package/dist/list/disciplines.js +3 -1
- package/dist/list/events.cjs.js +205 -0
- package/dist/list/events.d.ts +105 -2
- package/dist/list/events.js +3 -1
- package/dist/list/fellowships.cjs.js +168 -0
- package/dist/list/fellowships.d.ts +57 -2
- package/dist/list/fellowships.js +3 -1
- package/dist/list/files.cjs.js +151 -0
- package/dist/list/files.d.ts +34 -2
- package/dist/list/files.js +3 -1
- package/dist/list/mailing.cjs.js +151 -0
- package/dist/list/mailing.d.ts +27 -2
- package/dist/list/mailing.js +3 -1
- package/dist/list/news.cjs.js +154 -0
- package/dist/list/news.d.ts +60 -2
- package/dist/list/news.js +3 -1
- package/dist/list/people.cjs.js +195 -0
- package/dist/list/people.d.ts +35 -2
- package/dist/list/people.js +3 -1
- package/dist/list/projects.cjs.js +154 -0
- package/dist/list/projects.d.ts +45 -2
- package/dist/list/projects.js +3 -1
- package/dist/list/publications.cjs.js +171 -0
- package/dist/list/publications.d.ts +53 -2
- package/dist/list/publications.js +3 -1
- package/dist/list/tags.cjs.js +152 -0
- package/dist/list/tags.d.ts +21 -2
- package/dist/list/tags.js +3 -1
- package/dist/list/users.cjs.js +195 -0
- package/dist/list/users.d.ts +21 -2
- package/dist/list/users.js +3 -1
- package/index.js +30 -0
- package/package.json +67 -32
package/dist/form/events.d.ts
CHANGED
|
@@ -1,2 +1,96 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import type { Form } from "../../index"
|
|
2
|
+
|
|
3
|
+
// Inline type definitions
|
|
4
|
+
export interface Events {
|
|
5
|
+
affiliations?: Affiliations[] // 3 - Server & Client - //Bottom left Document
|
|
6
|
+
appId: string // 0 - Server & Client -
|
|
7
|
+
availableSlots: number // 0 - Server & Client - ? => Claire
|
|
8
|
+
bookingState: bookingState // 0 - Server & Client -
|
|
9
|
+
category: eventCategories // 0 - Server & Client -
|
|
10
|
+
createdAt?: Date // 0 - Server & Client -
|
|
11
|
+
dateText: string // 0 - Server & Client -
|
|
12
|
+
delay?: number // 0 - Server & Client -
|
|
13
|
+
description: string // 0 - Server & Client -
|
|
14
|
+
details: String // 0 - Server & Client -
|
|
15
|
+
disciplines?: Disciplines[] // 3 - Server & Client //Inside=> Presentation
|
|
16
|
+
discussants?: People[] // 0 - Server & Client -
|
|
17
|
+
files?: Files[] // 3 - Server & Client -
|
|
18
|
+
lang: string[]
|
|
19
|
+
image?: Image // 3 - Server & Client -
|
|
20
|
+
gallery?: Image[]
|
|
21
|
+
name: string // 0 - Server & Client -
|
|
22
|
+
eventSlot?: EventSlot[] //// 3 - Server -
|
|
23
|
+
organizers: People[] | Affiliations[] // 3 - Server & Client -
|
|
24
|
+
outside: boolean // 0 - Server & Client - // Near inscription
|
|
25
|
+
location: Location // 0 - Server & Client -
|
|
26
|
+
organiserType: organiserType // server & client - 0 = IAS, 1 = member, 2 = fellow, 3 = external
|
|
27
|
+
program: String // 0 - Server & Client -
|
|
28
|
+
related: Related
|
|
29
|
+
// slots?: EventSlot[]; //// 3 - Server
|
|
30
|
+
speakers?: People[] // 3 - Server & Client -
|
|
31
|
+
start: string // 0 - Server & Client - A verifier string ? string[]
|
|
32
|
+
state: eventState // 0 - Server & Client -
|
|
33
|
+
stop: string // 0 - Server & Client - A verifier string ? string[]
|
|
34
|
+
stream?: string // 0 - Server & Client -
|
|
35
|
+
subtitle?: string // 0 - Server &
|
|
36
|
+
summary?: string // 0 - Server & Client -
|
|
37
|
+
tags?: Tag[] // 3 - Server & Client - Inside=> Presentation
|
|
38
|
+
totalSlots: number // 0 - Server & Client
|
|
39
|
+
eventType: eventType // 0 : online, 1: physical, 2: hybrid// 0 - Server & Client -
|
|
40
|
+
updatedAt: Date // 0 - Server & Client -
|
|
41
|
+
url?: URL // 0 - Server & Client -
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export enum eventState {
|
|
45
|
+
Draft = "DRAFT",
|
|
46
|
+
Published = "PUBLISHED",
|
|
47
|
+
Removed = "REMOVED",
|
|
48
|
+
Finished = "FINISHED",
|
|
49
|
+
Cancelled = "CANCELLED",
|
|
50
|
+
Postponed = "POSTPONED",
|
|
51
|
+
Rescheduled = "RESCHEDULED",
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export enum bookingState {
|
|
55
|
+
Open = "OPEN",
|
|
56
|
+
Full = "FULL",
|
|
57
|
+
Closed = "CLOSED",
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export enum eventType {
|
|
61
|
+
Online = "ONLINE",
|
|
62
|
+
Physical = "PHYSICAL",
|
|
63
|
+
Hybrid = "HYBRID",
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export enum organiserType {
|
|
67
|
+
Ias = "IAS",
|
|
68
|
+
Member = "MEMBER",
|
|
69
|
+
Fellow = "FELLOW",
|
|
70
|
+
External = "EXTERNAL",
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export enum eventCategories {
|
|
74
|
+
Seminar = "SEMINAR",
|
|
75
|
+
Workshop = "WORKSHOP",
|
|
76
|
+
Conference = "CONFERENCE",
|
|
77
|
+
ConferenceCycle = "CONFERENCE_CYCLE",
|
|
78
|
+
Lecture = "LECTURE",
|
|
79
|
+
Symposium = "SYMPOSIUM",
|
|
80
|
+
Meeting = "MEETING",
|
|
81
|
+
Colloquium = "COLLOQUIUM",
|
|
82
|
+
Forum = "FORUM",
|
|
83
|
+
RoundTable = "ROUND_TABLE",
|
|
84
|
+
Panel = "PANEL",
|
|
85
|
+
Webinar = "WEBINAR",
|
|
86
|
+
FellowPresentation = "FELLOW_PRESENTATION",
|
|
87
|
+
Other = "OTHER",
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
export interface FormModule {
|
|
91
|
+
_defaults: Record<string, any>
|
|
92
|
+
schema: Record<string, Form>
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
declare const data: FormModule
|
|
96
|
+
export default data
|