@digdir/dialogporten-schema 1.72.0-e4ab490 → 1.72.1-6cf8ebf

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.0-e4ab490",
3
+ "version": "1.72.1-6cf8ebf",
4
4
  "description": "GraphQl schema and OpenAPI spec for Dialogporten",
5
5
  "engines": {
6
6
  "node": "22"
@@ -152,6 +152,10 @@ type Dialog {
152
152
  dialogToken: String
153
153
  status: DialogStatus!
154
154
  hasUnopenedContent: Boolean!
155
+ "The number of transmissions sent by the service owner"
156
+ fromServiceOwnerTransmissionsCount: Int!
157
+ "The number of transmissions sent by a party representative"
158
+ fromPartyTransmissionsCount: Int!
155
159
  "Indicates if this dialog is intended for API consumption only and should not be shown in frontends aimed at humans"
156
160
  isApiOnly: Boolean!
157
161
  content: Content!
@@ -243,13 +247,19 @@ type SearchDialog {
243
247
  precedingProcess: String
244
248
  guiAttachmentCount: Int
245
249
  extendedStatus: String
250
+ externalReference: String
246
251
  createdAt: DateTime!
247
252
  updatedAt: DateTime!
253
+ contentUpdatedAt: DateTime!
248
254
  dueAt: DateTime
249
255
  status: DialogStatus!
250
256
  hasUnopenedContent: Boolean!
251
257
  "Indicates if this dialog is intended for API consumption only and should not be shown in frontends aimed at humans"
252
258
  isApiOnly: Boolean!
259
+ "The number of transmissions sent by the service owner"
260
+ fromServiceOwnerTransmissionsCount: Int!
261
+ "The number of transmissions sent by a party representative"
262
+ fromPartyTransmissionsCount: Int!
253
263
  latestActivity: Activity
254
264
  content: SearchContent!
255
265
  seenSinceLastUpdate: [SeenLog!]!
@@ -530,4 +540,4 @@ scalar DateTime @specifiedBy(url: "https:\/\/www.graphql-scalars.com\/date-time"
530
540
 
531
541
  scalar URL @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc3986")
532
542
 
533
- scalar UUID @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc4122")
543
+ scalar UUID @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc4122")
package/src/index.js CHANGED
@@ -152,6 +152,10 @@ type Dialog {
152
152
  dialogToken: String
153
153
  status: DialogStatus!
154
154
  hasUnopenedContent: Boolean!
155
+ "The number of transmissions sent by the service owner"
156
+ fromServiceOwnerTransmissionsCount: Int!
157
+ "The number of transmissions sent by a party representative"
158
+ fromPartyTransmissionsCount: Int!
155
159
  "Indicates if this dialog is intended for API consumption only and should not be shown in frontends aimed at humans"
156
160
  isApiOnly: Boolean!
157
161
  content: Content!
@@ -243,13 +247,19 @@ type SearchDialog {
243
247
  precedingProcess: String
244
248
  guiAttachmentCount: Int
245
249
  extendedStatus: String
250
+ externalReference: String
246
251
  createdAt: DateTime!
247
252
  updatedAt: DateTime!
253
+ contentUpdatedAt: DateTime!
248
254
  dueAt: DateTime
249
255
  status: DialogStatus!
250
256
  hasUnopenedContent: Boolean!
251
257
  "Indicates if this dialog is intended for API consumption only and should not be shown in frontends aimed at humans"
252
258
  isApiOnly: Boolean!
259
+ "The number of transmissions sent by the service owner"
260
+ fromServiceOwnerTransmissionsCount: Int!
261
+ "The number of transmissions sent by a party representative"
262
+ fromPartyTransmissionsCount: Int!
253
263
  latestActivity: Activity
254
264
  content: SearchContent!
255
265
  seenSinceLastUpdate: [SeenLog!]!
@@ -618,6 +618,16 @@
618
618
  "nullable": true,
619
619
  "type": "string"
620
620
  },
621
+ "fromPartyTransmissionsCount": {
622
+ "description": "The number of transmissions sent by a party representative ",
623
+ "format": "int32",
624
+ "type": "integer"
625
+ },
626
+ "fromServiceOwnerTransmissionsCount": {
627
+ "description": "The number of transmissions sent by a service owner ",
628
+ "format": "int32",
629
+ "type": "integer"
630
+ },
621
631
  "guiActions": {
622
632
  "description": "The GUI actions associated with the dialog. Should be used in browser-based interactive frontends.",
623
633
  "items": {
@@ -1536,6 +1546,16 @@
1536
1546
  "nullable": true,
1537
1547
  "type": "string"
1538
1548
  },
1549
+ "fromPartyTransmissionsCount": {
1550
+ "description": "The number of transmissions sent by a party representative ",
1551
+ "format": "int32",
1552
+ "type": "integer"
1553
+ },
1554
+ "fromServiceOwnerTransmissionsCount": {
1555
+ "description": "The number of transmissions sent by the service owner ",
1556
+ "format": "int32",
1557
+ "type": "integer"
1558
+ },
1539
1559
  "guiAttachmentCount": {
1540
1560
  "description": "The number of attachments in the dialog made available for browser-based frontends.",
1541
1561
  "format": "int32",
@@ -3767,6 +3787,16 @@
3767
3787
  "nullable": true,
3768
3788
  "type": "string"
3769
3789
  },
3790
+ "fromPartyTransmissionsCount": {
3791
+ "description": "The number of transmissions sent by a party representative",
3792
+ "format": "int32",
3793
+ "type": "integer"
3794
+ },
3795
+ "fromServiceOwnerTransmissionsCount": {
3796
+ "description": "The number of transmissions sent by the service owner",
3797
+ "format": "int32",
3798
+ "type": "integer"
3799
+ },
3770
3800
  "guiActions": {
3771
3801
  "description": "The GUI actions associated with the dialog. Should be used in browser-based interactive frontends.",
3772
3802
  "items": {
@@ -4804,6 +4834,16 @@
4804
4834
  "nullable": true,
4805
4835
  "type": "string"
4806
4836
  },
4837
+ "fromPartyTransmissionsCount": {
4838
+ "description": "The number of transmissions sent by a party representative",
4839
+ "format": "int32",
4840
+ "type": "integer"
4841
+ },
4842
+ "fromServiceOwnerTransmissionsCount": {
4843
+ "description": "The number of transmissions sent by a service owner",
4844
+ "format": "int32",
4845
+ "type": "integer"
4846
+ },
4807
4847
  "guiAttachmentCount": {
4808
4848
  "description": "The number of attachments in the dialog made available for browser-based frontends.",
4809
4849
  "format": "int32",
@@ -8520,4 +8560,4 @@
8520
8560
  }
8521
8561
  }
8522
8562
  }
8523
- }
8563
+ }