@digdir/dialogporten-schema 1.84.0 → 1.85.0-e05cd40
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 +2 -0
- package/src/index.js +2 -0
- package/swagger.verified.json +6 -0
package/package.json
CHANGED
package/schema.verified.graphql
CHANGED
|
@@ -97,6 +97,7 @@ type AuthorizedParty {
|
|
|
97
97
|
subParties: [AuthorizedSubParty!]
|
|
98
98
|
party: String!
|
|
99
99
|
partyUuid: UUID!
|
|
100
|
+
partyId: Int!
|
|
100
101
|
name: String!
|
|
101
102
|
partyType: String!
|
|
102
103
|
isDeleted: Boolean!
|
|
@@ -109,6 +110,7 @@ type AuthorizedParty {
|
|
|
109
110
|
type AuthorizedSubParty {
|
|
110
111
|
party: String!
|
|
111
112
|
partyUuid: UUID!
|
|
113
|
+
partyId: Int!
|
|
112
114
|
name: String!
|
|
113
115
|
partyType: String!
|
|
114
116
|
isDeleted: Boolean!
|
package/src/index.js
CHANGED
|
@@ -97,6 +97,7 @@ type AuthorizedParty {
|
|
|
97
97
|
subParties: [AuthorizedSubParty!]
|
|
98
98
|
party: String!
|
|
99
99
|
partyUuid: UUID!
|
|
100
|
+
partyId: Int!
|
|
100
101
|
name: String!
|
|
101
102
|
partyType: String!
|
|
102
103
|
isDeleted: Boolean!
|
|
@@ -109,6 +110,7 @@ type AuthorizedParty {
|
|
|
109
110
|
type AuthorizedSubParty {
|
|
110
111
|
party: String!
|
|
111
112
|
partyUuid: UUID!
|
|
113
|
+
partyId: Int!
|
|
112
114
|
name: String!
|
|
113
115
|
partyType: String!
|
|
114
116
|
isDeleted: Boolean!
|
package/swagger.verified.json
CHANGED
|
@@ -372,6 +372,12 @@
|
|
|
372
372
|
"example": "urn:altinn:organization:identifier-no:912345678",
|
|
373
373
|
"type": "string"
|
|
374
374
|
},
|
|
375
|
+
"partyId": {
|
|
376
|
+
"description": "The numeric identifier for the party.",
|
|
377
|
+
"example": 50136280,
|
|
378
|
+
"format": "int32",
|
|
379
|
+
"type": "integer"
|
|
380
|
+
},
|
|
375
381
|
"partyType": {
|
|
376
382
|
"description": "The type of the party, either \u0022Organization\u0022 or \u0022Person\u0022.",
|
|
377
383
|
"example": "Organization",
|