@digdir/dialogporten-schema 1.21.0 → 1.22.0-6889a96

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.21.0",
3
+ "version": "1.22.0-6889a96",
4
4
  "description": "GraphQl schema and OpenAPI spec for Dialogporten",
5
5
  "engines": {
6
6
  "node": "20"
@@ -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!]!
@@ -231,7 +231,7 @@
231
231
  "type": "string"
232
232
  },
233
233
  "process": {
234
- "description": "Optional process identifier used to indicate a business process this dialog belongs to ",
234
+ "description": "Optional process identifier used to indicate a business process this dialog belongs to",
235
235
  "nullable": true,
236
236
  "type": "string"
237
237
  },
@@ -262,7 +262,7 @@
262
262
  ]
263
263
  },
264
264
  "systemLabel": {
265
- "description": "Set the system label of the dialog Migration purposes ",
265
+ "description": "Set the system label of the dialog Migration purposes",
266
266
  "nullable": true,
267
267
  "oneOf": [
268
268
  {
@@ -751,6 +751,13 @@
751
751
  },
752
752
  "type": "array"
753
753
  },
754
+ "id": {
755
+ "description": "A self-defined UUIDv7 may be provided to support idempotent creation of transmission attachments. If not provided, a new UUIDv7 will be generated.",
756
+ "example": "01913cd5-784f-7d3b-abef-4c77b1f0972d",
757
+ "format": "guid",
758
+ "nullable": true,
759
+ "type": "string"
760
+ },
754
761
  "urls": {
755
762
  "description": "The URLs associated with the attachment, each referring to a different representation of the attachment.",
756
763
  "items": {
@@ -4089,6 +4096,13 @@
4089
4096
  },
4090
4097
  "type": "array"
4091
4098
  },
4099
+ "id": {
4100
+ "description": "A self-defined UUIDv7 may be provided to support idempotent creation of transmission attachments. If not provided, a new UUIDv7 will be generated.",
4101
+ "example": "01913cd5-784f-7d3b-abef-4c77b1f0972d",
4102
+ "format": "guid",
4103
+ "nullable": true,
4104
+ "type": "string"
4105
+ },
4092
4106
  "urls": {
4093
4107
  "description": "The URLs associated with the attachment, each referring to a different representation of the attachment.",
4094
4108
  "items": {
@@ -5161,7 +5175,7 @@
5161
5175
  }
5162
5176
  },
5163
5177
  {
5164
- "description": "Filter by Display state ",
5178
+ "description": "Filter by Display state",
5165
5179
  "explode": true,
5166
5180
  "in": "query",
5167
5181
  "name": "systemLabel",
@@ -6460,4 +6474,4 @@
6460
6474
  "url": "https://altinn-dev-api.azure-api.net/dialogporten"
6461
6475
  }
6462
6476
  ]
6463
- }
6477
+ }