@nuffieldtechnologies/rugged-schema-types 0.3.17 → 0.3.18
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 +2 -22
- package/package.json +1 -1
package/distribution/index.js
CHANGED
|
@@ -110,22 +110,12 @@ 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
113
|
|
|
117
114
|
input ParamInput {
|
|
118
115
|
name: String
|
|
119
116
|
value: String
|
|
120
117
|
}
|
|
121
118
|
|
|
122
|
-
input ResourcesInput {
|
|
123
|
-
style: [ResourceInput]
|
|
124
|
-
distribution: [ResourceInput]
|
|
125
|
-
header: [ResourceInput]
|
|
126
|
-
dataset: [ResourceInput]
|
|
127
|
-
}
|
|
128
|
-
|
|
129
119
|
input FormInput {
|
|
130
120
|
id: ID
|
|
131
121
|
name: String
|
|
@@ -134,7 +124,7 @@ const _FormInput = `
|
|
|
134
124
|
status: TEMPLATESTATUS
|
|
135
125
|
updated: String
|
|
136
126
|
params: [ParamInput]
|
|
137
|
-
resources:
|
|
127
|
+
resources: String
|
|
138
128
|
body: String
|
|
139
129
|
}
|
|
140
130
|
`;
|
|
@@ -144,22 +134,12 @@ const _FormFilter = `
|
|
|
144
134
|
}
|
|
145
135
|
`;
|
|
146
136
|
const _Form = `
|
|
147
|
-
type Resource {
|
|
148
|
-
data: String
|
|
149
|
-
}
|
|
150
137
|
|
|
151
138
|
type Param {
|
|
152
139
|
name: String
|
|
153
140
|
value: String
|
|
154
141
|
}
|
|
155
142
|
|
|
156
|
-
type Resources {
|
|
157
|
-
style: [Resource]
|
|
158
|
-
distribution: [Resource]
|
|
159
|
-
header: [Resource]
|
|
160
|
-
dataset: [Resource]
|
|
161
|
-
}
|
|
162
|
-
|
|
163
143
|
type Form {
|
|
164
144
|
id: ID
|
|
165
145
|
name: String
|
|
@@ -168,7 +148,7 @@ const _Form = `
|
|
|
168
148
|
status: TEMPLATESTATUS
|
|
169
149
|
updated: String
|
|
170
150
|
params: [Param]
|
|
171
|
-
resources:
|
|
151
|
+
resources: String
|
|
172
152
|
body: String
|
|
173
153
|
}
|
|
174
154
|
`;
|