@digdir/dialogporten-schema 1.82.0 → 1.83.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digdir/dialogporten-schema",
3
- "version": "1.82.0",
3
+ "version": "1.83.0",
4
4
  "description": "GraphQl schema and OpenAPI spec for Dialogporten",
5
5
  "engines": {
6
6
  "node": "22"
@@ -242,6 +242,11 @@ type DialogByIdNotFound implements DialogByIdError {
242
242
  message: String!
243
243
  }
244
244
 
245
+ type DialogByIdNotVisible implements DialogByIdError {
246
+ message: String!
247
+ visibleFrom: DateTime!
248
+ }
249
+
245
250
  type DialogByIdPayload {
246
251
  dialog: Dialog
247
252
  errors: [DialogByIdError!]!
@@ -401,15 +406,35 @@ type SeenLog {
401
406
  isCurrentEndUser: Boolean!
402
407
  }
403
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
+
404
421
  type SetSystemLabelEntityNotFound implements SetSystemLabelError {
405
422
  message: String!
406
423
  }
407
424
 
425
+ type SetSystemLabelForbidden implements SetSystemLabelError {
426
+ message: String!
427
+ }
428
+
408
429
  type SetSystemLabelPayload {
409
430
  success: Boolean!
410
431
  errors: [SetSystemLabelError!]!
411
432
  }
412
433
 
434
+ type SetSystemLabelValidationError implements SetSystemLabelError {
435
+ message: String!
436
+ }
437
+
413
438
  type Subscriptions {
414
439
  "Requires a dialog token in the 'DigDir-Dialog-Token' header."
415
440
  dialogEvents(dialogId: UUID!): DialogEventPayload! @authorize(policy: "enduserSubscription", apply: VALIDATION)
@@ -663,4 +688,4 @@ scalar DateTime @specifiedBy(url: "https:\/\/www.graphql-scalars.com\/date-time"
663
688
 
664
689
  scalar URL @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc3986")
665
690
 
666
- 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
@@ -242,6 +242,11 @@ type DialogByIdNotFound implements DialogByIdError {
242
242
  message: String!
243
243
  }
244
244
 
245
+ type DialogByIdNotVisible implements DialogByIdError {
246
+ message: String!
247
+ visibleFrom: DateTime!
248
+ }
249
+
245
250
  type DialogByIdPayload {
246
251
  dialog: Dialog
247
252
  errors: [DialogByIdError!]!
@@ -401,15 +406,35 @@ type SeenLog {
401
406
  isCurrentEndUser: Boolean!
402
407
  }
403
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
+
404
421
  type SetSystemLabelEntityNotFound implements SetSystemLabelError {
405
422
  message: String!
406
423
  }
407
424
 
425
+ type SetSystemLabelForbidden implements SetSystemLabelError {
426
+ message: String!
427
+ }
428
+
408
429
  type SetSystemLabelPayload {
409
430
  success: Boolean!
410
431
  errors: [SetSystemLabelError!]!
411
432
  }
412
433
 
434
+ type SetSystemLabelValidationError implements SetSystemLabelError {
435
+ message: String!
436
+ }
437
+
413
438
  type Subscriptions {
414
439
  "Requires a dialog token in the 'DigDir-Dialog-Token' header."
415
440
  dialogEvents(dialogId: UUID!): DialogEventPayload! @authorize(policy: "enduserSubscription", apply: VALIDATION)