@digdir/dialogporten-schema 1.97.1-bb87bbb → 1.98.2-974dfa6
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/swagger.verified.json +167 -0
package/package.json
CHANGED
package/swagger.verified.json
CHANGED
|
@@ -275,6 +275,35 @@
|
|
|
275
275
|
},
|
|
276
276
|
"type": "object"
|
|
277
277
|
},
|
|
278
|
+
"PaginatedListOfV1ServiceOwnerDialogsQueriesSearchEndUserContext_DialogEndUserContextItem": {
|
|
279
|
+
"additionalProperties": false,
|
|
280
|
+
"properties": {
|
|
281
|
+
"continuationToken": {
|
|
282
|
+
"description": "The continuation token to be used to fetch the next page of items",
|
|
283
|
+
"example": "createdat_2024-07-31T09:09:03.0257090Z,id_0c089101-b7cf-a476-955c-f00a78d74a4e",
|
|
284
|
+
"nullable": true,
|
|
285
|
+
"type": "string"
|
|
286
|
+
},
|
|
287
|
+
"hasNextPage": {
|
|
288
|
+
"description": "Whether there are more items available that can be fetched by supplying the continuation token",
|
|
289
|
+
"type": "boolean"
|
|
290
|
+
},
|
|
291
|
+
"items": {
|
|
292
|
+
"description": "The paginated list of items",
|
|
293
|
+
"items": {
|
|
294
|
+
"$ref": "#/components/schemas/V1ServiceOwnerDialogsQueriesSearchEndUserContext_DialogEndUserContextItem"
|
|
295
|
+
},
|
|
296
|
+
"nullable": true,
|
|
297
|
+
"type": "array"
|
|
298
|
+
},
|
|
299
|
+
"orderBy": {
|
|
300
|
+
"description": "The current sorting order of the items",
|
|
301
|
+
"example": "createdat_desc,id_desc",
|
|
302
|
+
"type": "string"
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
"type": "object"
|
|
306
|
+
},
|
|
278
307
|
"ProblemDetails": {
|
|
279
308
|
"additionalProperties": false,
|
|
280
309
|
"properties": {
|
|
@@ -5482,6 +5511,27 @@
|
|
|
5482
5511
|
},
|
|
5483
5512
|
"type": "object"
|
|
5484
5513
|
},
|
|
5514
|
+
"V1ServiceOwnerDialogsQueriesSearchEndUserContext_DialogEndUserContextItem": {
|
|
5515
|
+
"additionalProperties": false,
|
|
5516
|
+
"properties": {
|
|
5517
|
+
"dialogId": {
|
|
5518
|
+
"format": "guid",
|
|
5519
|
+
"type": "string"
|
|
5520
|
+
},
|
|
5521
|
+
"endUserContextRevision": {
|
|
5522
|
+
"format": "guid",
|
|
5523
|
+
"type": "string"
|
|
5524
|
+
},
|
|
5525
|
+
"systemLabels": {
|
|
5526
|
+
"items": {
|
|
5527
|
+
"$ref": "#/components/schemas/DialogEndUserContextsEntities_SystemLabel"
|
|
5528
|
+
},
|
|
5529
|
+
"nullable": true,
|
|
5530
|
+
"type": "array"
|
|
5531
|
+
}
|
|
5532
|
+
},
|
|
5533
|
+
"type": "object"
|
|
5534
|
+
},
|
|
5485
5535
|
"V1ServiceOwnerDialogsQueriesSearchSeenLogs_SeenLog": {
|
|
5486
5536
|
"additionalProperties": false,
|
|
5487
5537
|
"properties": {
|
|
@@ -9732,6 +9782,123 @@
|
|
|
9732
9782
|
]
|
|
9733
9783
|
}
|
|
9734
9784
|
},
|
|
9785
|
+
"/api/v1/serviceowner/dialogs/endusercontext": {
|
|
9786
|
+
"get": {
|
|
9787
|
+
"description": "Performs a search for dialog end user context labels, returning a paginated list of dialogs.\n\n* Party is required.\n* System labels are matched with OR semantics.\n* See \\\u0022continuationToken\\\u0022 in the response for how to get the next page of results.\n* hasNextPage will be set to true if there are more items to get.",
|
|
9788
|
+
"operationId": "V1ServiceOwnerDialogsQueriesSearchEndUserContext_DialogEndUserContext",
|
|
9789
|
+
"parameters": [
|
|
9790
|
+
{
|
|
9791
|
+
"description": "Filter by one or more owning parties",
|
|
9792
|
+
"example": [
|
|
9793
|
+
""
|
|
9794
|
+
],
|
|
9795
|
+
"explode": true,
|
|
9796
|
+
"in": "query",
|
|
9797
|
+
"name": "party",
|
|
9798
|
+
"required": true,
|
|
9799
|
+
"schema": {
|
|
9800
|
+
"items": {
|
|
9801
|
+
"type": "string"
|
|
9802
|
+
},
|
|
9803
|
+
"type": "array"
|
|
9804
|
+
},
|
|
9805
|
+
"style": "form"
|
|
9806
|
+
},
|
|
9807
|
+
{
|
|
9808
|
+
"description": "Filter by end user id",
|
|
9809
|
+
"in": "query",
|
|
9810
|
+
"name": "endUserId",
|
|
9811
|
+
"schema": {
|
|
9812
|
+
"nullable": true,
|
|
9813
|
+
"type": "string"
|
|
9814
|
+
}
|
|
9815
|
+
},
|
|
9816
|
+
{
|
|
9817
|
+
"description": "Filter by one or more system labels",
|
|
9818
|
+
"explode": true,
|
|
9819
|
+
"in": "query",
|
|
9820
|
+
"name": "label",
|
|
9821
|
+
"schema": {
|
|
9822
|
+
"items": {
|
|
9823
|
+
"$ref": "#/components/schemas/DialogEndUserContextsEntities_SystemLabel"
|
|
9824
|
+
},
|
|
9825
|
+
"nullable": true,
|
|
9826
|
+
"type": "array"
|
|
9827
|
+
},
|
|
9828
|
+
"style": "form"
|
|
9829
|
+
},
|
|
9830
|
+
{
|
|
9831
|
+
"description": "Supply \u0022continuationToken\u0022 for the response to get the next page of results, if hasNextPage is true",
|
|
9832
|
+
"in": "query",
|
|
9833
|
+
"name": "continuationToken",
|
|
9834
|
+
"schema": {
|
|
9835
|
+
"nullable": true,
|
|
9836
|
+
"oneOf": [
|
|
9837
|
+
{
|
|
9838
|
+
"$ref": "#/components/schemas/ContinuationTokenSetOfTOrderDefinitionAndTTarget"
|
|
9839
|
+
}
|
|
9840
|
+
]
|
|
9841
|
+
}
|
|
9842
|
+
},
|
|
9843
|
+
{
|
|
9844
|
+
"description": "Limit the number of results per page (1-1000, default: 100)",
|
|
9845
|
+
"in": "query",
|
|
9846
|
+
"name": "limit",
|
|
9847
|
+
"schema": {
|
|
9848
|
+
"format": "int32",
|
|
9849
|
+
"nullable": true,
|
|
9850
|
+
"type": "integer"
|
|
9851
|
+
}
|
|
9852
|
+
}
|
|
9853
|
+
],
|
|
9854
|
+
"responses": {
|
|
9855
|
+
"200": {
|
|
9856
|
+
"content": {
|
|
9857
|
+
"application/json": {
|
|
9858
|
+
"schema": {
|
|
9859
|
+
"$ref": "#/components/schemas/PaginatedListOfV1ServiceOwnerDialogsQueriesSearchEndUserContext_DialogEndUserContextItem"
|
|
9860
|
+
}
|
|
9861
|
+
}
|
|
9862
|
+
},
|
|
9863
|
+
"description": "Successfully returned the dialog list."
|
|
9864
|
+
},
|
|
9865
|
+
"401": {
|
|
9866
|
+
"description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \u0022digdir:dialogporten.serviceprovider.search\u0022."
|
|
9867
|
+
},
|
|
9868
|
+
"503": {
|
|
9869
|
+
"content": {
|
|
9870
|
+
"text/plain": {
|
|
9871
|
+
"schema": {
|
|
9872
|
+
"example": "Service Unavailable",
|
|
9873
|
+
"type": "string"
|
|
9874
|
+
}
|
|
9875
|
+
}
|
|
9876
|
+
},
|
|
9877
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
9878
|
+
"headers": {
|
|
9879
|
+
"Retry-After": {
|
|
9880
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
9881
|
+
"schema": {
|
|
9882
|
+
"type": "string"
|
|
9883
|
+
}
|
|
9884
|
+
}
|
|
9885
|
+
}
|
|
9886
|
+
}
|
|
9887
|
+
},
|
|
9888
|
+
"security": [
|
|
9889
|
+
{
|
|
9890
|
+
"JWTBearerAuth": [
|
|
9891
|
+
"digdir:dialogporten.serviceprovider",
|
|
9892
|
+
"digdir:dialogporten.serviceprovider.search"
|
|
9893
|
+
]
|
|
9894
|
+
}
|
|
9895
|
+
],
|
|
9896
|
+
"summary": "Gets end user context system labels for dialogs",
|
|
9897
|
+
"tags": [
|
|
9898
|
+
"Serviceowner"
|
|
9899
|
+
]
|
|
9900
|
+
}
|
|
9901
|
+
},
|
|
9735
9902
|
"/api/v1/serviceowner/dialogs/endusercontext/systemlabels/actions/bulkset": {
|
|
9736
9903
|
"post": {
|
|
9737
9904
|
"description": "Sets the system labels for a list of dialogs, optionally including a end user context revision for each dialog.",
|