@paris-ias/list 1.0.141 → 1.0.143

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.
Files changed (35) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/list/molecules/GlobalSearchInput.vue +84 -86
  3. package/dist/runtime/plugins/pinia.js +30 -29
  4. package/package.json +1 -1
  5. package/dist/runtime/graphql/buildFiltersValues.gql +0 -35
  6. package/dist/runtime/graphql/item/action.gql +0 -22
  7. package/dist/runtime/graphql/item/affiliations.gql +0 -37
  8. package/dist/runtime/graphql/item/apps.gql +0 -34
  9. package/dist/runtime/graphql/item/disciplines.gql +0 -17
  10. package/dist/runtime/graphql/item/events.gql +0 -120
  11. package/dist/runtime/graphql/item/fellowships.gql +0 -164
  12. package/dist/runtime/graphql/item/files.gql +0 -25
  13. package/dist/runtime/graphql/item/mailing.gql +0 -10
  14. package/dist/runtime/graphql/item/news.gql +0 -129
  15. package/dist/runtime/graphql/item/people.gql +0 -174
  16. package/dist/runtime/graphql/item/projects.gql +0 -171
  17. package/dist/runtime/graphql/item/publications.gql +0 -169
  18. package/dist/runtime/graphql/item/tags.gql +0 -13
  19. package/dist/runtime/graphql/item/users.gql +0 -14
  20. package/dist/runtime/graphql/list/action.gql +0 -31
  21. package/dist/runtime/graphql/list/affiliations.gql +0 -42
  22. package/dist/runtime/graphql/list/apps.gql +0 -42
  23. package/dist/runtime/graphql/list/disciplines.gql +0 -22
  24. package/dist/runtime/graphql/list/events.gql +0 -44
  25. package/dist/runtime/graphql/list/fellowships.gql +0 -53
  26. package/dist/runtime/graphql/list/files.gql +0 -37
  27. package/dist/runtime/graphql/list/mailing.gql +0 -22
  28. package/dist/runtime/graphql/list/news.gql +0 -40
  29. package/dist/runtime/graphql/list/people.gql +0 -56
  30. package/dist/runtime/graphql/list/projects.gql +0 -37
  31. package/dist/runtime/graphql/list/publications.gql +0 -40
  32. package/dist/runtime/graphql/list/search.gql +0 -161
  33. package/dist/runtime/graphql/list/tags.gql +0 -22
  34. package/dist/runtime/graphql/list/users.gql +0 -38
  35. package/dist/runtime/graphql/login.gql +0 -0
@@ -1,161 +0,0 @@
1
- query search($appId: ID = "", $search: String = "", $lang: String = "en") {
2
- search(appId: $appId, search: $search, lang: $lang) {
3
- people {
4
- items {
5
- firstname
6
- id
7
- groups {
8
- board
9
- fellows
10
- sab
11
- sponsor
12
- team
13
- vintage {
14
- name
15
- theme
16
- url
17
- year
18
- }
19
- }
20
- image {
21
- alt
22
- backgroundColor
23
- caption
24
- copyright
25
- license
26
- licenseUrl
27
- url
28
- }
29
- lastname
30
- slug
31
- }
32
- total
33
- }
34
- projects {
35
- items {
36
- date
37
- id
38
- featured
39
- name
40
- image {
41
- alt
42
- backgroundColor
43
- caption
44
- copyright
45
- license
46
- licenseUrl
47
- url
48
- }
49
- subtitle
50
- tags {
51
- name
52
- }
53
- slug {
54
- fr
55
- en
56
- }
57
- }
58
- total
59
- }
60
- publications {
61
- items {
62
- subtitle
63
- name
64
- image {
65
- alt
66
- backgroundColor
67
- caption
68
- copyright
69
- licenseUrl
70
- license
71
- url
72
- }
73
- id
74
- date
75
- slug {
76
- fr
77
- en
78
- }
79
- }
80
- total
81
- }
82
- events {
83
- items {
84
- availableSlots
85
- bookingState
86
- category
87
- start
88
- state
89
- summary
90
- eventType
91
- slug {
92
- fr
93
- en
94
- }
95
- name
96
- image {
97
- alt
98
- backgroundColor
99
- caption
100
- copyright
101
- licenseUrl
102
- license
103
- url
104
- }
105
- }
106
- total
107
- }
108
- fellowships {
109
- total
110
- items {
111
- applicationStart
112
- applicationStop
113
- disciplines {
114
- name
115
- }
116
- fellowshipStart
117
- fellowshipType
118
- fellowshipStop
119
- id
120
- image {
121
- alt
122
- backgroundColor
123
- caption
124
- copyright
125
- license
126
- licenseUrl
127
- url
128
- }
129
- name
130
- summary
131
- slug {
132
- fr
133
- en
134
- }
135
- }
136
- }
137
- news {
138
- total
139
- items {
140
- category
141
- date
142
- featured
143
- id
144
- image {
145
- alt
146
- backgroundColor
147
- caption
148
- copyright
149
- license
150
- licenseUrl
151
- url
152
- }
153
- name
154
- slug {
155
- fr
156
- en
157
- }
158
- }
159
- }
160
- }
161
- }
@@ -1,22 +0,0 @@
1
- query listTags(
2
- $options: ListInput = {
3
- skip: 0
4
- limit: 9
5
- sortBy: ["start"]
6
- sortDesc: false
7
- filters: "{}"
8
- }
9
- $appId: ID = "iea"
10
- $lang: String = "en"
11
- ) {
12
- listTags(options: $options, appId: $appId, lang: $lang) {
13
- items {
14
- createdAt
15
- description
16
- icon
17
- name
18
- updatedAt
19
- }
20
- total
21
- }
22
- }
@@ -1,38 +0,0 @@
1
- query listUsers(
2
- $options: ListInput = {
3
- skip: 0
4
- limit: 9
5
- sortBy: ["start"]
6
- sortDesc: false
7
- filters: "{}"
8
- }
9
- $appId: ID = "iea"
10
- $lang: String = "en"
11
- ) {
12
- listUsers(options: $options, appId: $appId, lang: $lang) {
13
- items {
14
- admin
15
- branch
16
- createdAt
17
- email
18
- profile {
19
- country
20
- firstname
21
- image
22
- lastname
23
- linkedin
24
- position
25
- presentation
26
- references
27
- twitter
28
- wikipedia
29
- }
30
- role
31
- settings {
32
- lang
33
- }
34
- status
35
- }
36
- total
37
- }
38
- }
File without changes