@docupace/ihub-config 1.1.12 → 1.1.14
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/model/graphs/config/fields.graphql +367 -367
- package/dist/model/graphs/config/page.graphql +242 -241
- package/dist/model/graphs/config/table.graphql +180 -177
- package/dist/types/graphql.d.ts +6 -0
- package/dist/types/graphql.d.ts.map +1 -1
- package/dist/types/graphql.js.map +1 -1
- package/model/graphs/config/fields.graphql +367 -367
- package/model/graphs/config/page.graphql +242 -241
- package/model/graphs/config/table.graphql +180 -177
- package/package.json +78 -80
|
@@ -1,242 +1,243 @@
|
|
|
1
|
-
interface Page {
|
|
2
|
-
title: String
|
|
3
|
-
description: String
|
|
4
|
-
config: JSON
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
type OverviewPage implements Page {
|
|
8
|
-
title: String
|
|
9
|
-
description: String
|
|
10
|
-
domain: String
|
|
11
|
-
cards: [Card]
|
|
12
|
-
menuItems: [MenuItem]
|
|
13
|
-
config: JSON
|
|
14
|
-
tables: [Table]
|
|
15
|
-
breadcrumbs: [Breadcrumb!]
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
type TablePage implements Page {
|
|
19
|
-
title: String
|
|
20
|
-
component: String
|
|
21
|
-
description: String
|
|
22
|
-
actionButton: ActionButton
|
|
23
|
-
table: AnyTable!
|
|
24
|
-
panel: Panel
|
|
25
|
-
config: JSON
|
|
26
|
-
breadcrumbs: [Breadcrumb!]
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
type ComponentPage implements Page {
|
|
30
|
-
title: String
|
|
31
|
-
description: String
|
|
32
|
-
component: String
|
|
33
|
-
panel: Panel
|
|
34
|
-
config: JSON
|
|
35
|
-
mutations: JSON
|
|
36
|
-
breadcrumbs: [Breadcrumb!]
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
type TabbedPage implements Page {
|
|
40
|
-
title: String
|
|
41
|
-
description: String
|
|
42
|
-
tabs: [Tab!]!
|
|
43
|
-
config: JSON
|
|
44
|
-
gqlQuery: GQLQuery
|
|
45
|
-
# TODO: Replace `mutations` (currently a JSON object used as { [mutationName: String]: GQLQuery }) with a properly typed map.
|
|
46
|
-
mutations: JSON
|
|
47
|
-
breadcrumbs: [Breadcrumb!]
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
type DetailsPage implements Page {
|
|
51
|
-
title: String
|
|
52
|
-
description: String
|
|
53
|
-
panel: Panel
|
|
54
|
-
config: JSON
|
|
55
|
-
breadcrumbs: [Breadcrumb!]
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
type DomainRecordTemplate implements Page {
|
|
59
|
-
title: String
|
|
60
|
-
description: String
|
|
61
|
-
sideMenu: SideMenu
|
|
62
|
-
viewer: Viewer
|
|
63
|
-
config: JSON
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
type PageLayout implements Page {
|
|
67
|
-
title: String
|
|
68
|
-
description: String
|
|
69
|
-
sideMenu: SideMenu
|
|
70
|
-
widgets: [ExternalWidget]
|
|
71
|
-
config: JSON
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
type DashboardPage implements Page {
|
|
75
|
-
panel: DashboardPanel
|
|
76
|
-
title: String
|
|
77
|
-
description: String
|
|
78
|
-
config: JSON
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
type ReportPage implements Page {
|
|
82
|
-
title: String
|
|
83
|
-
description: String
|
|
84
|
-
controlPanel: Panel
|
|
85
|
-
dashboardPanel: DashboardPanel
|
|
86
|
-
breadcrumbs: [Breadcrumb!]
|
|
87
|
-
config: JSON
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
type AnyPage implements Page {
|
|
91
|
-
title: String
|
|
92
|
-
description: String
|
|
93
|
-
tables: [NamedTable!]
|
|
94
|
-
panels: [Panel!]
|
|
95
|
-
tabbedPages: [TabbedPage!]
|
|
96
|
-
config: JSON
|
|
97
|
-
breadcrumbs: [Breadcrumb!]
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
type WizardPage implements Page {
|
|
101
|
-
description: String
|
|
102
|
-
title : String
|
|
103
|
-
dataSource: String
|
|
104
|
-
steps: [Step!]!
|
|
105
|
-
loadWizardByCustodian: [LoadWizardByCustodian]
|
|
106
|
-
defaultWizard: String
|
|
107
|
-
# TODO: Replace `mutations` (currently a JSON object used as { [mutationName: String]: GQLQuery }) with a properly typed map.
|
|
108
|
-
mutations: JSON
|
|
109
|
-
config: JSON
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
type LoadWizardByCustodian {
|
|
113
|
-
custodian: String
|
|
114
|
-
wizard: String
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
type Step {
|
|
118
|
-
id : String!
|
|
119
|
-
label : String!
|
|
120
|
-
icon: String
|
|
121
|
-
page : Page
|
|
122
|
-
visibilityCondition: String
|
|
123
|
-
pathUrl: String
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
type SideMenu {
|
|
127
|
-
headerCard: Card
|
|
128
|
-
menuItems: [MenuItem!]
|
|
129
|
-
dataCard: Card
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
type CardView {
|
|
133
|
-
queryName: String
|
|
134
|
-
card: Card!
|
|
135
|
-
groups: CardGroups
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
type CardGroups {
|
|
139
|
-
queryName: String!
|
|
140
|
-
titlePath: String!
|
|
141
|
-
configKeyPath: String!
|
|
142
|
-
dataKeyPath: String!
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
type Tab {
|
|
146
|
-
name: String!
|
|
147
|
-
label: String!
|
|
148
|
-
page: Page!
|
|
149
|
-
visibilityCondition: String
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
1
|
+
interface Page {
|
|
2
|
+
title: String
|
|
3
|
+
description: String
|
|
4
|
+
config: JSON
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
type OverviewPage implements Page {
|
|
8
|
+
title: String
|
|
9
|
+
description: String
|
|
10
|
+
domain: String
|
|
11
|
+
cards: [Card]
|
|
12
|
+
menuItems: [MenuItem]
|
|
13
|
+
config: JSON
|
|
14
|
+
tables: [Table]
|
|
15
|
+
breadcrumbs: [Breadcrumb!]
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
type TablePage implements Page {
|
|
19
|
+
title: String
|
|
20
|
+
component: String
|
|
21
|
+
description: String
|
|
22
|
+
actionButton: ActionButton
|
|
23
|
+
table: AnyTable!
|
|
24
|
+
panel: Panel
|
|
25
|
+
config: JSON
|
|
26
|
+
breadcrumbs: [Breadcrumb!]
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
type ComponentPage implements Page {
|
|
30
|
+
title: String
|
|
31
|
+
description: String
|
|
32
|
+
component: String
|
|
33
|
+
panel: Panel
|
|
34
|
+
config: JSON
|
|
35
|
+
mutations: JSON
|
|
36
|
+
breadcrumbs: [Breadcrumb!]
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
type TabbedPage implements Page {
|
|
40
|
+
title: String
|
|
41
|
+
description: String
|
|
42
|
+
tabs: [Tab!]!
|
|
43
|
+
config: JSON
|
|
44
|
+
gqlQuery: GQLQuery
|
|
45
|
+
# TODO: Replace `mutations` (currently a JSON object used as { [mutationName: String]: GQLQuery }) with a properly typed map.
|
|
46
|
+
mutations: JSON
|
|
47
|
+
breadcrumbs: [Breadcrumb!]
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
type DetailsPage implements Page {
|
|
51
|
+
title: String
|
|
52
|
+
description: String
|
|
53
|
+
panel: Panel
|
|
54
|
+
config: JSON
|
|
55
|
+
breadcrumbs: [Breadcrumb!]
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
type DomainRecordTemplate implements Page {
|
|
59
|
+
title: String
|
|
60
|
+
description: String
|
|
61
|
+
sideMenu: SideMenu
|
|
62
|
+
viewer: Viewer
|
|
63
|
+
config: JSON
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
type PageLayout implements Page {
|
|
67
|
+
title: String
|
|
68
|
+
description: String
|
|
69
|
+
sideMenu: SideMenu
|
|
70
|
+
widgets: [ExternalWidget]
|
|
71
|
+
config: JSON
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
type DashboardPage implements Page {
|
|
75
|
+
panel: DashboardPanel
|
|
76
|
+
title: String
|
|
77
|
+
description: String
|
|
78
|
+
config: JSON
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
type ReportPage implements Page {
|
|
82
|
+
title: String
|
|
83
|
+
description: String
|
|
84
|
+
controlPanel: Panel
|
|
85
|
+
dashboardPanel: DashboardPanel
|
|
86
|
+
breadcrumbs: [Breadcrumb!]
|
|
87
|
+
config: JSON
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
type AnyPage implements Page {
|
|
91
|
+
title: String
|
|
92
|
+
description: String
|
|
93
|
+
tables: [NamedTable!]
|
|
94
|
+
panels: [Panel!]
|
|
95
|
+
tabbedPages: [TabbedPage!]
|
|
96
|
+
config: JSON
|
|
97
|
+
breadcrumbs: [Breadcrumb!]
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
type WizardPage implements Page {
|
|
101
|
+
description: String
|
|
102
|
+
title : String
|
|
103
|
+
dataSource: String
|
|
104
|
+
steps: [Step!]!
|
|
105
|
+
loadWizardByCustodian: [LoadWizardByCustodian]
|
|
106
|
+
defaultWizard: String
|
|
107
|
+
# TODO: Replace `mutations` (currently a JSON object used as { [mutationName: String]: GQLQuery }) with a properly typed map.
|
|
108
|
+
mutations: JSON
|
|
109
|
+
config: JSON
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
type LoadWizardByCustodian {
|
|
113
|
+
custodian: String
|
|
114
|
+
wizard: String
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
type Step {
|
|
118
|
+
id : String!
|
|
119
|
+
label : String!
|
|
120
|
+
icon: String
|
|
121
|
+
page : Page
|
|
122
|
+
visibilityCondition: String
|
|
123
|
+
pathUrl: String
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
type SideMenu {
|
|
127
|
+
headerCard: Card
|
|
128
|
+
menuItems: [MenuItem!]
|
|
129
|
+
dataCard: Card
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
type CardView {
|
|
133
|
+
queryName: String
|
|
134
|
+
card: Card!
|
|
135
|
+
groups: CardGroups
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
type CardGroups {
|
|
139
|
+
queryName: String!
|
|
140
|
+
titlePath: String!
|
|
141
|
+
configKeyPath: String!
|
|
142
|
+
dataKeyPath: String!
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
type Tab {
|
|
146
|
+
name: String!
|
|
147
|
+
label: String!
|
|
148
|
+
page: Page!
|
|
149
|
+
visibilityCondition: String
|
|
150
|
+
config: JSON
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
type DashboardPanel implements IPanel {
|
|
154
|
+
name: String
|
|
155
|
+
rows: [DashboardPanelRow!]
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
type DashboardPanelRow implements IPanelRow {
|
|
159
|
+
name: String!
|
|
160
|
+
title: String
|
|
161
|
+
titleVariant: String
|
|
162
|
+
layout: Number
|
|
163
|
+
hidden: Boolean
|
|
164
|
+
visibilityCondition: String
|
|
165
|
+
elements: [Widget!]
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
type Preview {
|
|
169
|
+
headerCard: Card
|
|
170
|
+
panel: Panel
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
interface ICard implements IElement {
|
|
174
|
+
name: String
|
|
175
|
+
component: String
|
|
176
|
+
config: JSON
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
interface QuickApp {
|
|
180
|
+
url: String
|
|
181
|
+
appPreference: String
|
|
182
|
+
target: Boolean
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
type CardRow {
|
|
186
|
+
name: String
|
|
187
|
+
paths: [String!]
|
|
188
|
+
expression: String
|
|
189
|
+
icon: String
|
|
190
|
+
component: String
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
type Card implements ICard & IRowElement & IElement {
|
|
194
|
+
name: String
|
|
195
|
+
component: String!
|
|
196
|
+
config: JSON
|
|
197
|
+
cols: Int
|
|
198
|
+
title: String
|
|
199
|
+
rows: [CardRow]
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
type Widget implements ICard & IRowElement & IElement & QuickApp {
|
|
203
|
+
id: String!
|
|
204
|
+
name: String
|
|
205
|
+
title: String
|
|
206
|
+
description: String
|
|
207
|
+
component: String
|
|
208
|
+
config: JSON
|
|
209
|
+
cols: Int
|
|
210
|
+
table: AnyTable
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
type ExternalWidget {
|
|
214
|
+
id: String
|
|
215
|
+
name: String
|
|
216
|
+
description: String
|
|
217
|
+
visibilityCondition: String
|
|
218
|
+
config: JSON
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
type ViewerOptions {
|
|
222
|
+
thumbnails: Boolean
|
|
223
|
+
pageNavigation: Boolean
|
|
224
|
+
lazyLoading: Boolean
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
type ViewerToolbar {
|
|
228
|
+
menuItems: [MenuItem!]!
|
|
229
|
+
actionButton: ActionButton
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
type Viewer {
|
|
233
|
+
documentActions: [MenuItem!]
|
|
234
|
+
options: ViewerOptions
|
|
235
|
+
toolbar: ViewerToolbar
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
type Breadcrumb {
|
|
239
|
+
label: String!
|
|
240
|
+
path: String
|
|
241
|
+
isLabelExpression: Boolean
|
|
242
|
+
isPathExpression: Boolean
|
|
242
243
|
}
|