@digdir/dialogporten-schema 1.82.0-85cf00f → 1.82.0-e11e170
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/package.json +1 -1
- package/schema.verified.graphql +21 -1
- package/src/index.js +20 -0
package/package.json
CHANGED
package/schema.verified.graphql
CHANGED
|
@@ -406,15 +406,35 @@ type SeenLog {
|
|
|
406
406
|
isCurrentEndUser: Boolean!
|
|
407
407
|
}
|
|
408
408
|
|
|
409
|
+
type SetSystemLabelConcurrencyError implements SetSystemLabelError {
|
|
410
|
+
message: String!
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
type SetSystemLabelDomainError implements SetSystemLabelError {
|
|
414
|
+
message: String!
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
type SetSystemLabelEntityDeleted implements SetSystemLabelError {
|
|
418
|
+
message: String!
|
|
419
|
+
}
|
|
420
|
+
|
|
409
421
|
type SetSystemLabelEntityNotFound implements SetSystemLabelError {
|
|
410
422
|
message: String!
|
|
411
423
|
}
|
|
412
424
|
|
|
425
|
+
type SetSystemLabelForbidden implements SetSystemLabelError {
|
|
426
|
+
message: String!
|
|
427
|
+
}
|
|
428
|
+
|
|
413
429
|
type SetSystemLabelPayload {
|
|
414
430
|
success: Boolean!
|
|
415
431
|
errors: [SetSystemLabelError!]!
|
|
416
432
|
}
|
|
417
433
|
|
|
434
|
+
type SetSystemLabelValidationError implements SetSystemLabelError {
|
|
435
|
+
message: String!
|
|
436
|
+
}
|
|
437
|
+
|
|
418
438
|
type Subscriptions {
|
|
419
439
|
"Requires a dialog token in the 'DigDir-Dialog-Token' header."
|
|
420
440
|
dialogEvents(dialogId: UUID!): DialogEventPayload! @authorize(policy: "enduserSubscription", apply: VALIDATION)
|
|
@@ -668,4 +688,4 @@ scalar DateTime @specifiedBy(url: "https:\/\/www.graphql-scalars.com\/date-time"
|
|
|
668
688
|
|
|
669
689
|
scalar URL @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc3986")
|
|
670
690
|
|
|
671
|
-
scalar UUID @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc4122")
|
|
691
|
+
scalar UUID @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc4122")
|
package/src/index.js
CHANGED
|
@@ -406,15 +406,35 @@ type SeenLog {
|
|
|
406
406
|
isCurrentEndUser: Boolean!
|
|
407
407
|
}
|
|
408
408
|
|
|
409
|
+
type SetSystemLabelConcurrencyError implements SetSystemLabelError {
|
|
410
|
+
message: String!
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
type SetSystemLabelDomainError implements SetSystemLabelError {
|
|
414
|
+
message: String!
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
type SetSystemLabelEntityDeleted implements SetSystemLabelError {
|
|
418
|
+
message: String!
|
|
419
|
+
}
|
|
420
|
+
|
|
409
421
|
type SetSystemLabelEntityNotFound implements SetSystemLabelError {
|
|
410
422
|
message: String!
|
|
411
423
|
}
|
|
412
424
|
|
|
425
|
+
type SetSystemLabelForbidden implements SetSystemLabelError {
|
|
426
|
+
message: String!
|
|
427
|
+
}
|
|
428
|
+
|
|
413
429
|
type SetSystemLabelPayload {
|
|
414
430
|
success: Boolean!
|
|
415
431
|
errors: [SetSystemLabelError!]!
|
|
416
432
|
}
|
|
417
433
|
|
|
434
|
+
type SetSystemLabelValidationError implements SetSystemLabelError {
|
|
435
|
+
message: String!
|
|
436
|
+
}
|
|
437
|
+
|
|
418
438
|
type Subscriptions {
|
|
419
439
|
"Requires a dialog token in the 'DigDir-Dialog-Token' header."
|
|
420
440
|
dialogEvents(dialogId: UUID!): DialogEventPayload! @authorize(policy: "enduserSubscription", apply: VALIDATION)
|