You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Automatic testing for changes in GraphQL schema (same as OpenAPI)
Renamed `docs/swagger` to `docs/schema` to host the two files in the
same npm package.
Renamed npm package to `dialogporten-schema`
Automatic versioning/publishing of this npm package is being worked on
in another branch
## Related Issue(s)
- #490
## Verification
- [x] **Your** code builds clean without any errors or warnings
- [x] Manual testing done (required)
- [x] Relevant automated test added (if you find this hard, leave it and
we'll help out)
## Documentation
- [ ] Documentation is updated (either in `docs`-directory, Altinnpedia
or a separate linked PR in
[altinn-studio-docs.](https://github.com/Altinn/altinn-studio-docs), if
applicable)
"Only return dialogs with due date after this date"
160
+
dueAfter: DateTime
161
+
"Only return dialogs with due date before this date"
162
+
dueBefore: DateTime
163
+
"Search string for free text search. Will attempt to fuzzily match in all free text fields in the aggregate"
164
+
search: String
165
+
"Limit free text search to texts with this culture code, e.g. \"nb-NO\". Default: search all culture codes"
166
+
searchCultureCode: String
167
+
}
168
+
169
+
enumActivityType {
170
+
"Refers to a submission made by a party that has been received by the service provider."
171
+
SUBMISSION
172
+
"Indicates feedback from the service provider on a submission. Contains a reference to the current submission."
173
+
FEEDBACK
174
+
"Information from the service provider, not (directly) related to any submission."
175
+
INFORMATION
176
+
"Used to indicate an error situation, typically on a submission. Contains a service-specific activityErrorCode."
177
+
ERROR
178
+
"Indicates that the dialog is closed for further changes. This typically happens when the dialog is completed or deleted."
179
+
CLOSED
180
+
"When the dialog is forwarded (delegated access) by someone with access to others."
181
+
FORWARDED
182
+
}
183
+
184
+
enumApplyPolicy {
185
+
BEFORE_RESOLVER
186
+
AFTER_RESOLVER
187
+
VALIDATION
188
+
}
189
+
190
+
enumContentType {
191
+
TITLE
192
+
SENDER_NAME
193
+
SUMMARY
194
+
ADDITIONAL_INFO
195
+
}
196
+
197
+
enumDialogStatus {
198
+
"New"
199
+
NEW
200
+
"In progress. General status used for dialog services where further user input is expected."
201
+
IN_PROGRESS
202
+
"Waiting for feedback from the service provider"
203
+
WAITING
204
+
"The dialog is in a state where it is waiting for signing. Typically the last step after all completion is carried out and validated."
205
+
SIGNING
206
+
"The dialog was cancelled. This typically removes the dialog from normal GUI views."
207
+
CANCELLED
208
+
"The dialog was completed. This typically moves the dialog to a GUI archive or similar."
209
+
COMPLETED
210
+
}
211
+
212
+
enumElementUrlConsumer {
213
+
GUI
214
+
API
215
+
}
216
+
217
+
enumGuiActionPriority {
218
+
PRIMARY
219
+
SECONDARY
220
+
TERTIARY
221
+
}
222
+
223
+
enumHttpVerb {
224
+
GET
225
+
POST
226
+
PUT
227
+
PATCH
228
+
DELETE
229
+
HEAD
230
+
OPTIONS
231
+
TRACE
232
+
CONNECT
233
+
}
234
+
235
+
directive@authorize("The name of the authorization policy that determines access to the annotated resource."policy: String"Roles that are allowed to access the annotated resource."roles: [String!] "Defines when when the authorize directive shall be applied.By default the authorize directives are applied during the validation phase."apply: ApplyPolicy! = BEFORE_RESOLVER) repeatableonOBJECT | FIELD_DEFINITION
236
+
237
+
"The `DateTime` scalar represents an ISO-8601 compliant date time type."
0 commit comments