@digdir/dialogporten-schema 1.88.3 → 1.89.5-f0165f9

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.88.3",
3
+ "version": "1.89.5-f0165f9",
4
4
  "description": "GraphQl schema and OpenAPI spec for Dialogporten",
5
5
  "engines": {
6
6
  "node": "22"
@@ -99,6 +99,7 @@ type AuthorizedParty {
99
99
  partyUuid: UUID!
100
100
  partyId: Int!
101
101
  name: String!
102
+ dateOfBirth: String
102
103
  partyType: String!
103
104
  isDeleted: Boolean!
104
105
  hasKeyRole: Boolean!
@@ -112,6 +113,7 @@ type AuthorizedSubParty {
112
113
  partyUuid: UUID!
113
114
  partyId: Int!
114
115
  name: String!
116
+ dateOfBirth: String
115
117
  partyType: String!
116
118
  isDeleted: Boolean!
117
119
  hasKeyRole: Boolean!
package/src/index.js CHANGED
@@ -99,6 +99,7 @@ type AuthorizedParty {
99
99
  partyUuid: UUID!
100
100
  partyId: Int!
101
101
  name: String!
102
+ dateOfBirth: String
102
103
  partyType: String!
103
104
  isDeleted: Boolean!
104
105
  hasKeyRole: Boolean!
@@ -112,6 +113,7 @@ type AuthorizedSubParty {
112
113
  partyUuid: UUID!
113
114
  partyId: Int!
114
115
  name: String!
116
+ dateOfBirth: String
115
117
  partyType: String!
116
118
  isDeleted: Boolean!
117
119
  hasKeyRole: Boolean!
@@ -338,6 +338,12 @@
338
338
  "V1AccessManagementQueriesGetParties_AuthorizedParty": {
339
339
  "additionalProperties": false,
340
340
  "properties": {
341
+ "dateOfBirth": {
342
+ "description": "The date of birth of the party, if a person.",
343
+ "example": "1977-12-26",
344
+ "nullable": true,
345
+ "type": "string"
346
+ },
341
347
  "hasKeyRole": {
342
348
  "description": "Whether the authenticated user has a key role in the party.\n \nRead more about key roles (norwegian) at https://docs.altinn.studio/nb/altinn-studio/reference/configuration/authorization/guidelines_authorization/roles_and_rights/roles_er/#n\u00F8kkelroller",
343
349
  "type": "boolean"