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