@digdir/dialogporten-schema 1.47.4 → 1.47.5-e43b119
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 +6 -0
- package/src/index.js +6 -0
- package/swagger.verified.json +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digdir/dialogporten-schema",
|
|
3
|
-
"version": "1.47.
|
|
3
|
+
"version": "1.47.5-e43b119",
|
|
4
4
|
"description": "GraphQl schema and OpenAPI spec for Dialogporten",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": "22"
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"test": "npm run build && vitest run --test-timeout=10000"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"vitest": "3.0.
|
|
19
|
+
"vitest": "3.0.4",
|
|
20
20
|
"glob": "11.0.1",
|
|
21
21
|
"graphql-tag": "2.12.6"
|
|
22
22
|
},
|
package/schema.verified.graphql
CHANGED
|
@@ -296,6 +296,8 @@ input SearchDialogInput {
|
|
|
296
296
|
externalReference: String
|
|
297
297
|
"Filter by status"
|
|
298
298
|
status: [DialogStatus!]
|
|
299
|
+
"Filter by system label"
|
|
300
|
+
systemLabel: [SystemLabel!]
|
|
299
301
|
"Only return dialogs created after this date"
|
|
300
302
|
createdAfter: DateTime
|
|
301
303
|
"Only return dialogs created before this date"
|
|
@@ -359,6 +361,10 @@ enum ActivityType {
|
|
|
359
361
|
SENT_TO_SEND_IN
|
|
360
362
|
"Indicates that a dialog has been sent to payment."
|
|
361
363
|
SENT_TO_PAYMENT
|
|
364
|
+
"Indicates that a form associated with the dialog has been submitted."
|
|
365
|
+
FORM_SUBMITTED
|
|
366
|
+
"Indicates that a form associated with the dialog has been saved."
|
|
367
|
+
FORM_SAVED
|
|
362
368
|
}
|
|
363
369
|
|
|
364
370
|
enum ActorType {
|
package/src/index.js
CHANGED
|
@@ -296,6 +296,8 @@ input SearchDialogInput {
|
|
|
296
296
|
externalReference: String
|
|
297
297
|
"Filter by status"
|
|
298
298
|
status: [DialogStatus!]
|
|
299
|
+
"Filter by system label"
|
|
300
|
+
systemLabel: [SystemLabel!]
|
|
299
301
|
"Only return dialogs created after this date"
|
|
300
302
|
createdAfter: DateTime
|
|
301
303
|
"Only return dialogs created before this date"
|
|
@@ -359,6 +361,10 @@ enum ActivityType {
|
|
|
359
361
|
SENT_TO_SEND_IN
|
|
360
362
|
"Indicates that a dialog has been sent to payment."
|
|
361
363
|
SENT_TO_PAYMENT
|
|
364
|
+
"Indicates that a form associated with the dialog has been submitted."
|
|
365
|
+
FORM_SUBMITTED
|
|
366
|
+
"Indicates that a form associated with the dialog has been saved."
|
|
367
|
+
FORM_SAVED
|
|
362
368
|
}
|
|
363
369
|
|
|
364
370
|
enum ActorType {
|
package/swagger.verified.json
CHANGED
|
@@ -89,7 +89,9 @@
|
|
|
89
89
|
"SentToSigning",
|
|
90
90
|
"SentToFormFill",
|
|
91
91
|
"SentToSendIn",
|
|
92
|
-
"SentToPayment"
|
|
92
|
+
"SentToPayment",
|
|
93
|
+
"FormSubmitted",
|
|
94
|
+
"FormSaved"
|
|
93
95
|
],
|
|
94
96
|
"type": "string",
|
|
95
97
|
"x-enumNames": [
|
|
@@ -105,7 +107,9 @@
|
|
|
105
107
|
"SentToSigning",
|
|
106
108
|
"SentToFormFill",
|
|
107
109
|
"SentToSendIn",
|
|
108
|
-
"SentToPayment"
|
|
110
|
+
"SentToPayment",
|
|
111
|
+
"FormSubmitted",
|
|
112
|
+
"FormSaved"
|
|
109
113
|
]
|
|
110
114
|
},
|
|
111
115
|
"DialogsEntitiesTransmissions_DialogTransmissionType": {
|
|
@@ -7063,4 +7067,4 @@
|
|
|
7063
7067
|
"url": "https://altinn-dev-api.azure-api.net/dialogporten"
|
|
7064
7068
|
}
|
|
7065
7069
|
]
|
|
7066
|
-
}
|
|
7070
|
+
}
|