@digdir/dialogporten-schema 1.118.2 → 1.118.3

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.118.2",
3
+ "version": "1.118.3",
4
4
  "description": "GraphQl schema and OpenAPI spec for Dialogporten",
5
5
  "engines": {
6
6
  "node": "24"
@@ -536,6 +536,7 @@ type ServiceOwnerSearchLimits {
536
536
  }
537
537
 
538
538
  type ServiceResourceMetadata {
539
+ isFullCatalogueFallback: Boolean
539
540
  items: [ServiceResourceMetadataItem!]!
540
541
  }
541
542
 
package/src/index.js CHANGED
@@ -536,6 +536,7 @@ type ServiceOwnerSearchLimits {
536
536
  }
537
537
 
538
538
  type ServiceResourceMetadata {
539
+ isFullCatalogueFallback: Boolean
539
540
  items: [ServiceResourceMetadataItem!]!
540
541
  }
541
542
 
@@ -2791,6 +2791,11 @@
2791
2791
  "V1EndUserServiceResourcesQueriesSearch_AuthorizedServiceResources": {
2792
2792
  "additionalProperties": false,
2793
2793
  "properties": {
2794
+ "isFullCatalogueFallback": {
2795
+ "description": "Set to true only when Items is the full referenced catalogue returned as a fallback\ninstead of the caller\u0027s authorized subset: this happens when the caller is authorized to a very large\nnumber of parties on an unfiltered request, so the authorized union is not computed. Absent/null for a\nnormal authorization-scoped result \u2014 supply a party filter to always get an authorization-scoped result.",
2796
+ "nullable": true,
2797
+ "type": "boolean"
2798
+ },
2794
2799
  "items": {
2795
2800
  "items": {
2796
2801
  "$ref": "#/components/schemas/V1CommonServiceResourceMetadata_ServiceResourceMetadataItem"
@@ -8524,7 +8529,7 @@
8524
8529
  },
8525
8530
  "/api/v1/enduser/serviceresources": {
8526
8531
  "get": {
8527
- "description": "Returns the same service resource metadata as the public metadata endpoint, filtered to the resources the calling end user is authorized to use. Optionally narrowed by one or more party URNs.",
8532
+ "description": "Returns the same service resource metadata as the public metadata endpoint, filtered to the resources the calling end user is authorized to use. Optionally narrowed by one or more party URNs. For callers authorized to a very large number of parties on an unfiltered request, the full referenced catalogue is returned instead of the authorized subset, signalled by \u0027isFullCatalogueFallback\u0027 (supply a party filter to always get an authorization-scoped result).",
8528
8533
  "operationId": "V1EndUserServiceResourcesSearch_AuthorizedServiceResources",
8529
8534
  "parameters": [
8530
8535
  {
@@ -11684,5 +11689,19 @@
11684
11689
  ]
11685
11690
  }
11686
11691
  }
11687
- }
11688
- }
11692
+ },
11693
+ "tags": [
11694
+ {
11695
+ "description": "Endpoints for service owners to create and manage dialogs. Requires a Maskinporten token with the relevant \u0060digdir:dialogporten.serviceprovider\u0060 scope. The search endpoint additionally requires the \u0060digdir:dialogporten.serviceprovider.search\u0060 scope.\n\nA .NET client SDK is available: [Altinn.ApiClients.Dialogporten.ServiceOwner](https://www.nuget.org/packages/Altinn.ApiClients.Dialogporten.ServiceOwner/).",
11696
+ "name": "Serviceowner"
11697
+ },
11698
+ {
11699
+ "description": "Endpoints for end users to read and act on dialogs they are authorized to access. Used both by persons logged in via ID-porten and by Altinn system users authenticated via Maskinporten. Requires a token with the \u0060digdir:dialogporten\u0060 scope (or \u0060digdir:dialogporten.noconsent\u0060).\n\nA .NET client SDK is available: [Altinn.ApiClients.Dialogporten.EndUser](https://www.nuget.org/packages/Altinn.ApiClients.Dialogporten.EndUser/).",
11700
+ "name": "Enduser"
11701
+ },
11702
+ {
11703
+ "description": "Public, unauthenticated metadata endpoints such as health and configuration information.",
11704
+ "name": "Metadata"
11705
+ }
11706
+ ]
11707
+ }