@digdir/dialogporten-schema 1.72.1-d9104f0 → 1.73.0-44e0062

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.72.1-d9104f0",
3
+ "version": "1.73.0-44e0062",
4
4
  "description": "GraphQl schema and OpenAPI spec for Dialogporten",
5
5
  "engines": {
6
6
  "node": "22"
@@ -397,6 +397,7 @@ type SeenLog {
397
397
  id: UUID!
398
398
  seenAt: DateTime!
399
399
  seenBy: Actor!
400
+ isViaServiceOwner: Boolean
400
401
  isCurrentEndUser: Boolean!
401
402
  }
402
403
 
@@ -431,6 +432,8 @@ type Transmission {
431
432
  type: TransmissionType!
432
433
  "The actor that sent the transmission."
433
434
  sender: Actor!
435
+ "Indicates whether the dialog transmission has been opened."
436
+ isOpened: Boolean!
434
437
  "The transmission unstructured text content."
435
438
  content: TransmissionContent!
436
439
  "The transmission-level attachments."
@@ -646,4 +649,4 @@ scalar DateTime @specifiedBy(url: "https:\/\/www.graphql-scalars.com\/date-time"
646
649
 
647
650
  scalar URL @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc3986")
648
651
 
649
- scalar UUID @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc4122")
652
+ scalar UUID @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc4122")
package/src/index.js CHANGED
@@ -397,6 +397,7 @@ type SeenLog {
397
397
  id: UUID!
398
398
  seenAt: DateTime!
399
399
  seenBy: Actor!
400
+ isViaServiceOwner: Boolean
400
401
  isCurrentEndUser: Boolean!
401
402
  }
402
403
 
@@ -431,6 +432,8 @@ type Transmission {
431
432
  type: TransmissionType!
432
433
  "The actor that sent the transmission."
433
434
  sender: Actor!
435
+ "Indicates whether the dialog transmission has been opened."
436
+ isOpened: Boolean!
434
437
  "The transmission unstructured text content."
435
438
  content: TransmissionContent!
436
439
  "The transmission-level attachments."