@digdir/dialogporten-schema 1.22.0 → 1.23.1-cd4473d
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 -2
- package/src/index.js +1 -1
- package/swagger.verified.json +989 -204
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digdir/dialogporten-schema",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.23.1-cd4473d",
|
|
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
|
@@ -21,7 +21,6 @@ type Activity {
|
|
|
21
21
|
createdAt: DateTime
|
|
22
22
|
extendedType: URL
|
|
23
23
|
type: ActivityType!
|
|
24
|
-
relatedActivityId: UUID
|
|
25
24
|
transmissionId: UUID
|
|
26
25
|
performedBy: Actor!
|
|
27
26
|
description: [Localization!]!
|
|
@@ -62,6 +61,7 @@ type Attachment {
|
|
|
62
61
|
type AttachmentUrl {
|
|
63
62
|
id: UUID!
|
|
64
63
|
url: URL!
|
|
64
|
+
mediaType: String
|
|
65
65
|
consumerType: AttachmentUrlConsumer!
|
|
66
66
|
}
|
|
67
67
|
|
|
@@ -393,4 +393,4 @@ scalar DateTime @specifiedBy(url: "https:\/\/www.graphql-scalars.com\/date-time"
|
|
|
393
393
|
|
|
394
394
|
scalar URL @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc3986")
|
|
395
395
|
|
|
396
|
-
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
|
@@ -21,7 +21,6 @@ type Activity {
|
|
|
21
21
|
createdAt: DateTime
|
|
22
22
|
extendedType: URL
|
|
23
23
|
type: ActivityType!
|
|
24
|
-
relatedActivityId: UUID
|
|
25
24
|
transmissionId: UUID
|
|
26
25
|
performedBy: Actor!
|
|
27
26
|
description: [Localization!]!
|
|
@@ -62,6 +61,7 @@ type Attachment {
|
|
|
62
61
|
type AttachmentUrl {
|
|
63
62
|
id: UUID!
|
|
64
63
|
url: URL!
|
|
64
|
+
mediaType: String
|
|
65
65
|
consumerType: AttachmentUrlConsumer!
|
|
66
66
|
}
|
|
67
67
|
|