@digdir/dialogporten-schema 1.61.0-60ab46f → 1.61.1-86f834a

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.61.0-60ab46f",
3
+ "version": "1.61.1-86f834a",
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.7",
19
+ "vitest": "3.0.9",
20
20
  "glob": "11.0.1",
21
21
  "graphql-tag": "2.12.6"
22
22
  },
@@ -369,6 +369,10 @@ enum ActivityType {
369
369
  FORM_SUBMITTED
370
370
  "Indicates that a form associated with the dialog has been saved."
371
371
  FORM_SAVED
372
+ "Indicates that a correspondence has been opened."
373
+ CORRESPONDENCE_OPENED
374
+ "Indicates that a correspondence has been confirmed."
375
+ CORRESPONDENCE_CONFIRMED
372
376
  }
373
377
 
374
378
  enum ActorType {
package/src/index.js CHANGED
@@ -369,6 +369,10 @@ enum ActivityType {
369
369
  FORM_SUBMITTED
370
370
  "Indicates that a form associated with the dialog has been saved."
371
371
  FORM_SAVED
372
+ "Indicates that a correspondence has been opened."
373
+ CORRESPONDENCE_OPENED
374
+ "Indicates that a correspondence has been confirmed."
375
+ CORRESPONDENCE_CONFIRMED
372
376
  }
373
377
 
374
378
  enum ActorType {
@@ -91,7 +91,9 @@
91
91
  "SentToSendIn",
92
92
  "SentToPayment",
93
93
  "FormSubmitted",
94
- "FormSaved"
94
+ "FormSaved",
95
+ "CorrespondenceOpened",
96
+ "CorrespondenceConfirmed"
95
97
  ],
96
98
  "type": "string",
97
99
  "x-enumNames": [
@@ -109,7 +111,9 @@
109
111
  "SentToSendIn",
110
112
  "SentToPayment",
111
113
  "FormSubmitted",
112
- "FormSaved"
114
+ "FormSaved",
115
+ "CorrespondenceOpened",
116
+ "CorrespondenceConfirmed"
113
117
  ]
114
118
  },
115
119
  "DialogsEntitiesTransmissions_DialogTransmissionType": {