@digdir/dialogporten-schema 1.69.1 → 1.70.0-517290a
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 +4 -4
- package/src/index.js +4 -4
- package/swagger.verified.json +4 -4
package/package.json
CHANGED
package/schema.verified.graphql
CHANGED
|
@@ -409,14 +409,14 @@ enum DialogEventType {
|
|
|
409
409
|
}
|
|
410
410
|
|
|
411
411
|
enum DialogStatus {
|
|
412
|
-
"
|
|
413
|
-
|
|
412
|
+
"No explicit status. This is the default."
|
|
413
|
+
NOT_APPLICABLE
|
|
414
414
|
"Started. In a serial process, this is used to indicate that, for example, a form filling is ongoing."
|
|
415
415
|
IN_PROGRESS
|
|
416
416
|
"Used to indicate user-initiated dialogs not yet sent."
|
|
417
417
|
DRAFT
|
|
418
|
-
"
|
|
419
|
-
|
|
418
|
+
"Awaiting action by the service owner. Indicates that the dialog is in a state where the party representative has no further tasks, and the responsibility lies with the service owner."
|
|
419
|
+
AWAITING
|
|
420
420
|
"Used to indicate that the dialogue is in progress\/under work, but is in a state where the user must do something - for example, correct an error, or other conditions that hinder further processing."
|
|
421
421
|
REQUIRES_ATTENTION
|
|
422
422
|
"The dialogue was completed. This typically means that the dialogue is moved to a GUI archive or similar."
|
package/src/index.js
CHANGED
|
@@ -409,14 +409,14 @@ enum DialogEventType {
|
|
|
409
409
|
}
|
|
410
410
|
|
|
411
411
|
enum DialogStatus {
|
|
412
|
-
"
|
|
413
|
-
|
|
412
|
+
"No explicit status. This is the default."
|
|
413
|
+
NOT_APPLICABLE
|
|
414
414
|
"Started. In a serial process, this is used to indicate that, for example, a form filling is ongoing."
|
|
415
415
|
IN_PROGRESS
|
|
416
416
|
"Used to indicate user-initiated dialogs not yet sent."
|
|
417
417
|
DRAFT
|
|
418
|
-
"
|
|
419
|
-
|
|
418
|
+
"Awaiting action by the service owner. Indicates that the dialog is in a state where the party representative has no further tasks, and the responsibility lies with the service owner."
|
|
419
|
+
AWAITING
|
|
420
420
|
"Used to indicate that the dialogue is in progress\/under work, but is in a state where the user must do something - for example, correct an error, or other conditions that hinder further processing."
|
|
421
421
|
REQUIRES_ATTENTION
|
|
422
422
|
"The dialogue was completed. This typically means that the dialogue is moved to a GUI archive or similar."
|
package/swagger.verified.json
CHANGED
|
@@ -43,19 +43,19 @@
|
|
|
43
43
|
"DialogsEntities_DialogStatus": {
|
|
44
44
|
"description": "",
|
|
45
45
|
"enum": [
|
|
46
|
-
"
|
|
46
|
+
"NotApplicable",
|
|
47
47
|
"InProgress",
|
|
48
48
|
"Draft",
|
|
49
|
-
"
|
|
49
|
+
"Awaiting",
|
|
50
50
|
"RequiresAttention",
|
|
51
51
|
"Completed"
|
|
52
52
|
],
|
|
53
53
|
"type": "string",
|
|
54
54
|
"x-enumNames": [
|
|
55
|
-
"
|
|
55
|
+
"NotApplicable",
|
|
56
56
|
"InProgress",
|
|
57
57
|
"Draft",
|
|
58
|
-
"
|
|
58
|
+
"Awaiting",
|
|
59
59
|
"RequiresAttention",
|
|
60
60
|
"Completed"
|
|
61
61
|
]
|