@digdir/dialogporten-schema 1.21.0 → 1.22.0-3919343
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 -0
- package/src/index.js +3 -0
- package/swagger.verified.json +1023 -161
package/package.json
CHANGED
package/schema.verified.graphql
CHANGED
|
@@ -62,6 +62,7 @@ type Attachment {
|
|
|
62
62
|
type AttachmentUrl {
|
|
63
63
|
id: UUID!
|
|
64
64
|
url: URL!
|
|
65
|
+
mediaType: String
|
|
65
66
|
consumerType: AttachmentUrlConsumer!
|
|
66
67
|
}
|
|
67
68
|
|
|
@@ -110,6 +111,7 @@ type Dialog {
|
|
|
110
111
|
createdAt: DateTime!
|
|
111
112
|
updatedAt: DateTime!
|
|
112
113
|
dialogToken: String
|
|
114
|
+
systemLabel: SystemLabel!
|
|
113
115
|
status: DialogStatus!
|
|
114
116
|
content: Content!
|
|
115
117
|
attachments: [Attachment!]!
|
|
@@ -192,6 +194,7 @@ type SearchDialog {
|
|
|
192
194
|
updatedAt: DateTime!
|
|
193
195
|
dueAt: DateTime
|
|
194
196
|
status: DialogStatus!
|
|
197
|
+
systemLabel: SystemLabel!
|
|
195
198
|
latestActivity: Activity
|
|
196
199
|
content: SearchContent!
|
|
197
200
|
seenSinceLastUpdate: [SeenLog!]!
|
package/src/index.js
CHANGED
|
@@ -62,6 +62,7 @@ type Attachment {
|
|
|
62
62
|
type AttachmentUrl {
|
|
63
63
|
id: UUID!
|
|
64
64
|
url: URL!
|
|
65
|
+
mediaType: String
|
|
65
66
|
consumerType: AttachmentUrlConsumer!
|
|
66
67
|
}
|
|
67
68
|
|
|
@@ -110,6 +111,7 @@ type Dialog {
|
|
|
110
111
|
createdAt: DateTime!
|
|
111
112
|
updatedAt: DateTime!
|
|
112
113
|
dialogToken: String
|
|
114
|
+
systemLabel: SystemLabel!
|
|
113
115
|
status: DialogStatus!
|
|
114
116
|
content: Content!
|
|
115
117
|
attachments: [Attachment!]!
|
|
@@ -192,6 +194,7 @@ type SearchDialog {
|
|
|
192
194
|
updatedAt: DateTime!
|
|
193
195
|
dueAt: DateTime
|
|
194
196
|
status: DialogStatus!
|
|
197
|
+
systemLabel: SystemLabel!
|
|
195
198
|
latestActivity: Activity
|
|
196
199
|
content: SearchContent!
|
|
197
200
|
seenSinceLastUpdate: [SeenLog!]!
|