@digdir/dialogporten-schema 1.20.2-ee90c68 → 1.21.0-3031d8d
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 +3 -1
- package/src/index.js +2 -0
- package/swagger.verified.json +1 -1
package/package.json
CHANGED
package/schema.verified.graphql
CHANGED
|
@@ -110,6 +110,7 @@ type Dialog {
|
|
|
110
110
|
createdAt: DateTime!
|
|
111
111
|
updatedAt: DateTime!
|
|
112
112
|
dialogToken: String
|
|
113
|
+
systemLabel: SystemLabel!
|
|
113
114
|
status: DialogStatus!
|
|
114
115
|
content: Content!
|
|
115
116
|
attachments: [Attachment!]!
|
|
@@ -192,6 +193,7 @@ type SearchDialog {
|
|
|
192
193
|
updatedAt: DateTime!
|
|
193
194
|
dueAt: DateTime
|
|
194
195
|
status: DialogStatus!
|
|
196
|
+
systemLabel: SystemLabel!
|
|
195
197
|
latestActivity: Activity
|
|
196
198
|
content: SearchContent!
|
|
197
199
|
seenSinceLastUpdate: [SeenLog!]!
|
|
@@ -391,4 +393,4 @@ scalar DateTime @specifiedBy(url: "https:\/\/www.graphql-scalars.com\/date-time"
|
|
|
391
393
|
|
|
392
394
|
scalar URL @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc3986")
|
|
393
395
|
|
|
394
|
-
scalar UUID @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc4122")
|
|
396
|
+
scalar UUID @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc4122")
|
package/src/index.js
CHANGED
|
@@ -110,6 +110,7 @@ type Dialog {
|
|
|
110
110
|
createdAt: DateTime!
|
|
111
111
|
updatedAt: DateTime!
|
|
112
112
|
dialogToken: String
|
|
113
|
+
systemLabel: SystemLabel!
|
|
113
114
|
status: DialogStatus!
|
|
114
115
|
content: Content!
|
|
115
116
|
attachments: [Attachment!]!
|
|
@@ -192,6 +193,7 @@ type SearchDialog {
|
|
|
192
193
|
updatedAt: DateTime!
|
|
193
194
|
dueAt: DateTime
|
|
194
195
|
status: DialogStatus!
|
|
196
|
+
systemLabel: SystemLabel!
|
|
195
197
|
latestActivity: Activity
|
|
196
198
|
content: SearchContent!
|
|
197
199
|
seenSinceLastUpdate: [SeenLog!]!
|