@nuffieldtechnologies/rugged-schema-types 0.3.14 → 0.3.16
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/distribution/index.js +20 -2
- package/package.json +1 -1
package/distribution/index.js
CHANGED
|
@@ -110,6 +110,22 @@ const _User = `
|
|
|
110
110
|
`;
|
|
111
111
|
const _AllUserFields = `{id, organisation, name, email, roles, permissions}`;
|
|
112
112
|
const _FormInput = `
|
|
113
|
+
input ResourceInput {
|
|
114
|
+
data: String
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
input ParamInput {
|
|
118
|
+
name: String
|
|
119
|
+
value: String
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
input ResourcesInput {
|
|
123
|
+
style: [Resource]
|
|
124
|
+
distribution: [Resource]
|
|
125
|
+
header: [Resource]
|
|
126
|
+
dataset: [Resource]
|
|
127
|
+
}
|
|
128
|
+
|
|
113
129
|
input FormInput {
|
|
114
130
|
id: ID
|
|
115
131
|
name: String
|
|
@@ -117,8 +133,10 @@ const _FormInput = `
|
|
|
117
133
|
definition: String
|
|
118
134
|
status: TEMPLATESTATUS
|
|
119
135
|
updated: String
|
|
120
|
-
|
|
121
|
-
|
|
136
|
+
params: [Param]
|
|
137
|
+
resources: Resources
|
|
138
|
+
body: String
|
|
139
|
+
}
|
|
122
140
|
`;
|
|
123
141
|
const _FormFilter = `
|
|
124
142
|
input FormFilter {
|