@nuffieldtechnologies/rugged-schema-types 0.3.16 → 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 +6 -6
- package/package.json +1 -1
package/distribution/index.js
CHANGED
|
@@ -120,10 +120,10 @@ const _FormInput = `
|
|
|
120
120
|
}
|
|
121
121
|
|
|
122
122
|
input ResourcesInput {
|
|
123
|
-
style: [
|
|
124
|
-
distribution: [
|
|
125
|
-
header: [
|
|
126
|
-
dataset: [
|
|
123
|
+
style: [ResourceInput]
|
|
124
|
+
distribution: [ResourceInput]
|
|
125
|
+
header: [ResourceInput]
|
|
126
|
+
dataset: [ResourceInput]
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
input FormInput {
|
|
@@ -133,8 +133,8 @@ const _FormInput = `
|
|
|
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
|
`;
|