@digdir/dialogporten-schema 1.22.0 → 1.23.0
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 +2 -2
- package/schema.verified.graphql +2 -1
- package/src/index.js +1 -0
- package/swagger.verified.json +1005 -157
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digdir/dialogporten-schema",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.23.0",
|
|
4
4
|
"description": "GraphQl schema and OpenAPI spec for Dialogporten",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": "20"
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"test": "npm run build && vitest run --test-timeout=10000"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"vitest": "2.1.
|
|
19
|
+
"vitest": "2.1.2",
|
|
20
20
|
"glob": "11.0.0",
|
|
21
21
|
"graphql-tag": "2.12.6"
|
|
22
22
|
},
|
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
|
|
|
@@ -393,4 +394,4 @@ scalar DateTime @specifiedBy(url: "https:\/\/www.graphql-scalars.com\/date-time"
|
|
|
393
394
|
|
|
394
395
|
scalar URL @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc3986")
|
|
395
396
|
|
|
396
|
-
scalar UUID @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc4122")
|
|
397
|
+
scalar UUID @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc4122")
|