@digdir/dialogporten-schema 1.20.2-ee90c68 → 1.21.0-49c0d34
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 +2 -1
- package/src/index.js +1 -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!]!
|
|
@@ -391,4 +392,4 @@ scalar DateTime @specifiedBy(url: "https:\/\/www.graphql-scalars.com\/date-time"
|
|
|
391
392
|
|
|
392
393
|
scalar URL @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc3986")
|
|
393
394
|
|
|
394
|
-
scalar UUID @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc4122")
|
|
395
|
+
scalar UUID @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc4122")
|
package/src/index.js
CHANGED