@docupace/ihub-config 1.1.2 → 1.1.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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graphql.js","sourceRoot":"","sources":["../../src/types/graphql.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"graphql.js","sourceRoot":"","sources":["../../src/types/graphql.ts"],"names":[],"mappings":"AAuCA,MAAM,CAAN,IAAY,mBAGX;AAHD,WAAY,mBAAmB;IAC7B,4CAAqB,CAAA;IACrB,wCAAiB,CAAA;AACnB,CAAC,EAHW,mBAAmB,KAAnB,mBAAmB,QAG9B;AAiXD,MAAM,CAAN,IAAY,cAGX;AAHD,WAAY,cAAc;IACxB,iCAAe,CAAA;IACf,6BAAW,CAAA;AACb,CAAC,EAHW,cAAc,KAAd,cAAc,QAGzB;AAsRD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AAmVD,MAAM,CAAN,IAAY,kBAGX;AAHD,WAAY,kBAAkB;IAC5B,qCAAe,CAAA;IACf,yCAAmB,CAAA;AACrB,CAAC,EAHW,kBAAkB,KAAlB,kBAAkB,QAG7B"}
|
|
@@ -12,6 +12,7 @@ type OverviewPage implements Page {
|
|
|
12
12
|
menuItems: [MenuItem]
|
|
13
13
|
config: JSON
|
|
14
14
|
tables: [Table]
|
|
15
|
+
breadcrumbs: [Breadcrumb!]
|
|
15
16
|
}
|
|
16
17
|
|
|
17
18
|
type TablePage implements Page {
|
|
@@ -22,6 +23,7 @@ type TablePage implements Page {
|
|
|
22
23
|
table: AnyTable!
|
|
23
24
|
panel: Panel
|
|
24
25
|
config: JSON
|
|
26
|
+
breadcrumbs: [Breadcrumb!]
|
|
25
27
|
}
|
|
26
28
|
|
|
27
29
|
type ComponentPage implements Page {
|
|
@@ -31,6 +33,7 @@ type ComponentPage implements Page {
|
|
|
31
33
|
panel: Panel
|
|
32
34
|
config: JSON
|
|
33
35
|
mutations: JSON
|
|
36
|
+
breadcrumbs: [Breadcrumb!]
|
|
34
37
|
}
|
|
35
38
|
|
|
36
39
|
type TabbedPage implements Page {
|
|
@@ -41,6 +44,7 @@ type TabbedPage implements Page {
|
|
|
41
44
|
gqlQuery: GQLQuery
|
|
42
45
|
# TODO: Replace `mutations` (currently a JSON object used as { [mutationName: String]: GQLQuery }) with a properly typed map.
|
|
43
46
|
mutations: JSON
|
|
47
|
+
breadcrumbs: [Breadcrumb!]
|
|
44
48
|
}
|
|
45
49
|
|
|
46
50
|
type DetailsPage implements Page {
|
|
@@ -48,6 +52,7 @@ type DetailsPage implements Page {
|
|
|
48
52
|
description: String
|
|
49
53
|
panel: Panel
|
|
50
54
|
config: JSON
|
|
55
|
+
breadcrumbs: [Breadcrumb!]
|
|
51
56
|
}
|
|
52
57
|
|
|
53
58
|
type DomainRecordTemplate implements Page {
|
|
@@ -78,6 +83,7 @@ type ReportPage implements Page {
|
|
|
78
83
|
description: String
|
|
79
84
|
controlPanel: Panel
|
|
80
85
|
dashboardPanel: DashboardPanel
|
|
86
|
+
breadcrumbs: [Breadcrumb!]
|
|
81
87
|
config: JSON
|
|
82
88
|
}
|
|
83
89
|
|
|
@@ -88,6 +94,7 @@ type AnyPage implements Page {
|
|
|
88
94
|
panels: [Panel!]
|
|
89
95
|
tabbedPages: [TabbedPage!]
|
|
90
96
|
config: JSON
|
|
97
|
+
breadcrumbs: [Breadcrumb!]
|
|
91
98
|
}
|
|
92
99
|
|
|
93
100
|
type WizardPage implements Page {
|
|
@@ -226,3 +233,10 @@ type Viewer {
|
|
|
226
233
|
options: ViewerOptions
|
|
227
234
|
toolbar: ViewerToolbar
|
|
228
235
|
}
|
|
236
|
+
|
|
237
|
+
type Breadcrumb {
|
|
238
|
+
label: String!
|
|
239
|
+
path: String
|
|
240
|
+
isLabelExpression: Boolean
|
|
241
|
+
isPathExpression: Boolean
|
|
242
|
+
}
|