@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digdir/dialogporten-schema",
3
- "version": "1.69.1",
3
+ "version": "1.70.0-517290a",
4
4
  "description": "GraphQl schema and OpenAPI spec for Dialogporten",
5
5
  "engines": {
6
6
  "node": "22"
@@ -409,14 +409,14 @@ enum DialogEventType {
409
409
  }
410
410
 
411
411
  enum DialogStatus {
412
- "The dialogue is considered new. Typically used for simple messages that do not require any interaction, or as an initial step for dialogues. This is the default."
413
- NEW
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
- "Sent by the service owner. In a serial process, this is used after a submission is made."
419
- SENT
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
- "The dialogue is considered new. Typically used for simple messages that do not require any interaction, or as an initial step for dialogues. This is the default."
413
- NEW
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
- "Sent by the service owner. In a serial process, this is used after a submission is made."
419
- SENT
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."
@@ -43,19 +43,19 @@
43
43
  "DialogsEntities_DialogStatus": {
44
44
  "description": "",
45
45
  "enum": [
46
- "New",
46
+ "NotApplicable",
47
47
  "InProgress",
48
48
  "Draft",
49
- "Sent",
49
+ "Awaiting",
50
50
  "RequiresAttention",
51
51
  "Completed"
52
52
  ],
53
53
  "type": "string",
54
54
  "x-enumNames": [
55
- "New",
55
+ "NotApplicable",
56
56
  "InProgress",
57
57
  "Draft",
58
- "Sent",
58
+ "Awaiting",
59
59
  "RequiresAttention",
60
60
  "Completed"
61
61
  ]