@digdir/dialogporten-schema 1.11.0-161c42b → 1.11.0-3de6a4f
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 +418 -418
package/package.json
CHANGED
package/swagger.verified.json
CHANGED
|
@@ -260,6 +260,126 @@
|
|
|
260
260
|
]
|
|
261
261
|
}
|
|
262
262
|
},
|
|
263
|
+
"/api/v1/serviceowner/dialogs/{dialogId}/seenlog": {
|
|
264
|
+
"get": {
|
|
265
|
+
"tags": [
|
|
266
|
+
"Serviceowner"
|
|
267
|
+
],
|
|
268
|
+
"summary": "Gets all seen log records for a dialog",
|
|
269
|
+
"description": "Gets all seen log records for a dialog. For more information see the documentation (link TBD).",
|
|
270
|
+
"operationId": "SearchDialogSeenLogSO",
|
|
271
|
+
"parameters": [
|
|
272
|
+
{
|
|
273
|
+
"name": "dialogId",
|
|
274
|
+
"in": "path",
|
|
275
|
+
"required": true,
|
|
276
|
+
"schema": {
|
|
277
|
+
"type": "string",
|
|
278
|
+
"format": "guid"
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
],
|
|
282
|
+
"responses": {
|
|
283
|
+
"401": {
|
|
284
|
+
"description": "Unauthorized"
|
|
285
|
+
},
|
|
286
|
+
"403": {
|
|
287
|
+
"description": "Forbidden"
|
|
288
|
+
},
|
|
289
|
+
"200": {
|
|
290
|
+
"description": "Successfully returned the dialog seen log records.",
|
|
291
|
+
"content": {
|
|
292
|
+
"application/json": {
|
|
293
|
+
"schema": {
|
|
294
|
+
"type": "array",
|
|
295
|
+
"items": {
|
|
296
|
+
"$ref": "#/components/schemas/SearchDialogSeenLogDtoSO"
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
"404": {
|
|
303
|
+
"description": "Not Found",
|
|
304
|
+
"content": {
|
|
305
|
+
"application/problem+json": {
|
|
306
|
+
"schema": {
|
|
307
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
"security": [
|
|
314
|
+
{
|
|
315
|
+
"JWTBearerAuth": []
|
|
316
|
+
}
|
|
317
|
+
]
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
"/api/v1/serviceowner/dialogs/{dialogId}/seenlog/{seenLogId}": {
|
|
321
|
+
"get": {
|
|
322
|
+
"tags": [
|
|
323
|
+
"Serviceowner"
|
|
324
|
+
],
|
|
325
|
+
"summary": "Gets a single dialog seen log record",
|
|
326
|
+
"description": "Gets a single dialog seen log record. For more information see the documentation (link TBD).",
|
|
327
|
+
"operationId": "GetDialogSeenLogSO",
|
|
328
|
+
"parameters": [
|
|
329
|
+
{
|
|
330
|
+
"name": "dialogId",
|
|
331
|
+
"in": "path",
|
|
332
|
+
"required": true,
|
|
333
|
+
"schema": {
|
|
334
|
+
"type": "string",
|
|
335
|
+
"format": "guid"
|
|
336
|
+
}
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"name": "seenLogId",
|
|
340
|
+
"in": "path",
|
|
341
|
+
"required": true,
|
|
342
|
+
"schema": {
|
|
343
|
+
"type": "string",
|
|
344
|
+
"format": "guid"
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
],
|
|
348
|
+
"responses": {
|
|
349
|
+
"401": {
|
|
350
|
+
"description": "Unauthorized"
|
|
351
|
+
},
|
|
352
|
+
"403": {
|
|
353
|
+
"description": "Forbidden"
|
|
354
|
+
},
|
|
355
|
+
"200": {
|
|
356
|
+
"description": "Successfully returned the dialog seen log record.",
|
|
357
|
+
"content": {
|
|
358
|
+
"application/json": {
|
|
359
|
+
"schema": {
|
|
360
|
+
"$ref": "#/components/schemas/GetDialogSeenLogDtoSO"
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
"404": {
|
|
366
|
+
"description": "Not Found",
|
|
367
|
+
"content": {
|
|
368
|
+
"application/problem+json": {
|
|
369
|
+
"schema": {
|
|
370
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
},
|
|
376
|
+
"security": [
|
|
377
|
+
{
|
|
378
|
+
"JWTBearerAuth": []
|
|
379
|
+
}
|
|
380
|
+
]
|
|
381
|
+
}
|
|
382
|
+
},
|
|
263
383
|
"/api/v1/serviceowner/dialogs/{dialogId}": {
|
|
264
384
|
"put": {
|
|
265
385
|
"tags": [
|
|
@@ -1080,126 +1200,6 @@
|
|
|
1080
1200
|
]
|
|
1081
1201
|
}
|
|
1082
1202
|
},
|
|
1083
|
-
"/api/v1/serviceowner/dialogs/{dialogId}/seenlog": {
|
|
1084
|
-
"get": {
|
|
1085
|
-
"tags": [
|
|
1086
|
-
"Serviceowner"
|
|
1087
|
-
],
|
|
1088
|
-
"summary": "Gets all seen log records for a dialog",
|
|
1089
|
-
"description": "Gets all seen log records for a dialog. For more information see the documentation (link TBD).",
|
|
1090
|
-
"operationId": "SearchDialogSeenLogSO",
|
|
1091
|
-
"parameters": [
|
|
1092
|
-
{
|
|
1093
|
-
"name": "dialogId",
|
|
1094
|
-
"in": "path",
|
|
1095
|
-
"required": true,
|
|
1096
|
-
"schema": {
|
|
1097
|
-
"type": "string",
|
|
1098
|
-
"format": "guid"
|
|
1099
|
-
}
|
|
1100
|
-
}
|
|
1101
|
-
],
|
|
1102
|
-
"responses": {
|
|
1103
|
-
"401": {
|
|
1104
|
-
"description": "Unauthorized"
|
|
1105
|
-
},
|
|
1106
|
-
"403": {
|
|
1107
|
-
"description": "Forbidden"
|
|
1108
|
-
},
|
|
1109
|
-
"200": {
|
|
1110
|
-
"description": "Successfully returned the dialog seen log records.",
|
|
1111
|
-
"content": {
|
|
1112
|
-
"application/json": {
|
|
1113
|
-
"schema": {
|
|
1114
|
-
"type": "array",
|
|
1115
|
-
"items": {
|
|
1116
|
-
"$ref": "#/components/schemas/SearchDialogSeenLogDtoSO"
|
|
1117
|
-
}
|
|
1118
|
-
}
|
|
1119
|
-
}
|
|
1120
|
-
}
|
|
1121
|
-
},
|
|
1122
|
-
"404": {
|
|
1123
|
-
"description": "Not Found",
|
|
1124
|
-
"content": {
|
|
1125
|
-
"application/problem+json": {
|
|
1126
|
-
"schema": {
|
|
1127
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
1128
|
-
}
|
|
1129
|
-
}
|
|
1130
|
-
}
|
|
1131
|
-
}
|
|
1132
|
-
},
|
|
1133
|
-
"security": [
|
|
1134
|
-
{
|
|
1135
|
-
"JWTBearerAuth": []
|
|
1136
|
-
}
|
|
1137
|
-
]
|
|
1138
|
-
}
|
|
1139
|
-
},
|
|
1140
|
-
"/api/v1/serviceowner/dialogs/{dialogId}/seenlog/{seenLogId}": {
|
|
1141
|
-
"get": {
|
|
1142
|
-
"tags": [
|
|
1143
|
-
"Serviceowner"
|
|
1144
|
-
],
|
|
1145
|
-
"summary": "Gets a single dialog seen log record",
|
|
1146
|
-
"description": "Gets a single dialog seen log record. For more information see the documentation (link TBD).",
|
|
1147
|
-
"operationId": "GetDialogSeenLogSO",
|
|
1148
|
-
"parameters": [
|
|
1149
|
-
{
|
|
1150
|
-
"name": "dialogId",
|
|
1151
|
-
"in": "path",
|
|
1152
|
-
"required": true,
|
|
1153
|
-
"schema": {
|
|
1154
|
-
"type": "string",
|
|
1155
|
-
"format": "guid"
|
|
1156
|
-
}
|
|
1157
|
-
},
|
|
1158
|
-
{
|
|
1159
|
-
"name": "seenLogId",
|
|
1160
|
-
"in": "path",
|
|
1161
|
-
"required": true,
|
|
1162
|
-
"schema": {
|
|
1163
|
-
"type": "string",
|
|
1164
|
-
"format": "guid"
|
|
1165
|
-
}
|
|
1166
|
-
}
|
|
1167
|
-
],
|
|
1168
|
-
"responses": {
|
|
1169
|
-
"401": {
|
|
1170
|
-
"description": "Unauthorized"
|
|
1171
|
-
},
|
|
1172
|
-
"403": {
|
|
1173
|
-
"description": "Forbidden"
|
|
1174
|
-
},
|
|
1175
|
-
"200": {
|
|
1176
|
-
"description": "Successfully returned the dialog seen log record.",
|
|
1177
|
-
"content": {
|
|
1178
|
-
"application/json": {
|
|
1179
|
-
"schema": {
|
|
1180
|
-
"$ref": "#/components/schemas/GetDialogSeenLogDtoSO"
|
|
1181
|
-
}
|
|
1182
|
-
}
|
|
1183
|
-
}
|
|
1184
|
-
},
|
|
1185
|
-
"404": {
|
|
1186
|
-
"description": "Not Found",
|
|
1187
|
-
"content": {
|
|
1188
|
-
"application/problem+json": {
|
|
1189
|
-
"schema": {
|
|
1190
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
1191
|
-
}
|
|
1192
|
-
}
|
|
1193
|
-
}
|
|
1194
|
-
}
|
|
1195
|
-
},
|
|
1196
|
-
"security": [
|
|
1197
|
-
{
|
|
1198
|
-
"JWTBearerAuth": []
|
|
1199
|
-
}
|
|
1200
|
-
]
|
|
1201
|
-
}
|
|
1202
|
-
},
|
|
1203
1203
|
"/api/v1/serviceowner/dialogs/{dialogId}/activities": {
|
|
1204
1204
|
"get": {
|
|
1205
1205
|
"tags": [
|
|
@@ -1621,21 +1621,141 @@
|
|
|
1621
1621
|
]
|
|
1622
1622
|
}
|
|
1623
1623
|
},
|
|
1624
|
-
"/api/v1/enduser/dialogs": {
|
|
1624
|
+
"/api/v1/enduser/dialogs/{dialogId}/seenlog": {
|
|
1625
1625
|
"get": {
|
|
1626
1626
|
"tags": [
|
|
1627
1627
|
"Enduser"
|
|
1628
1628
|
],
|
|
1629
|
-
"summary": "Gets
|
|
1630
|
-
"description": "
|
|
1631
|
-
"operationId": "
|
|
1629
|
+
"summary": "Gets all seen log records for a dialog",
|
|
1630
|
+
"description": "Gets all seen log records for a dialog. For more information see the documentation (link TBD).",
|
|
1631
|
+
"operationId": "SearchDialogSeenLog",
|
|
1632
1632
|
"parameters": [
|
|
1633
1633
|
{
|
|
1634
|
-
"name": "
|
|
1635
|
-
"in": "
|
|
1636
|
-
"
|
|
1637
|
-
"
|
|
1638
|
-
|
|
1634
|
+
"name": "dialogId",
|
|
1635
|
+
"in": "path",
|
|
1636
|
+
"required": true,
|
|
1637
|
+
"schema": {
|
|
1638
|
+
"type": "string",
|
|
1639
|
+
"format": "guid"
|
|
1640
|
+
}
|
|
1641
|
+
}
|
|
1642
|
+
],
|
|
1643
|
+
"responses": {
|
|
1644
|
+
"401": {
|
|
1645
|
+
"description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \"digdir:dialogporten\"."
|
|
1646
|
+
},
|
|
1647
|
+
"403": {
|
|
1648
|
+
"description": "Forbidden"
|
|
1649
|
+
},
|
|
1650
|
+
"200": {
|
|
1651
|
+
"description": "Successfully returned the dialog seen log records.",
|
|
1652
|
+
"content": {
|
|
1653
|
+
"application/json": {
|
|
1654
|
+
"schema": {
|
|
1655
|
+
"type": "array",
|
|
1656
|
+
"items": {
|
|
1657
|
+
"$ref": "#/components/schemas/SearchDialogSeenLogDto"
|
|
1658
|
+
}
|
|
1659
|
+
}
|
|
1660
|
+
}
|
|
1661
|
+
}
|
|
1662
|
+
},
|
|
1663
|
+
"404": {
|
|
1664
|
+
"description": "Not Found",
|
|
1665
|
+
"content": {
|
|
1666
|
+
"application/problem+json": {
|
|
1667
|
+
"schema": {
|
|
1668
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
1669
|
+
}
|
|
1670
|
+
}
|
|
1671
|
+
}
|
|
1672
|
+
}
|
|
1673
|
+
},
|
|
1674
|
+
"security": [
|
|
1675
|
+
{
|
|
1676
|
+
"JWTBearerAuth": []
|
|
1677
|
+
}
|
|
1678
|
+
]
|
|
1679
|
+
}
|
|
1680
|
+
},
|
|
1681
|
+
"/api/v1/enduser/dialogs/{dialogId}/seenlog/{seenLogId}": {
|
|
1682
|
+
"get": {
|
|
1683
|
+
"tags": [
|
|
1684
|
+
"Enduser"
|
|
1685
|
+
],
|
|
1686
|
+
"summary": "Gets a single dialog seen log record",
|
|
1687
|
+
"description": "Gets a single dialog seen log record. For more information see the documentation (link TBD).",
|
|
1688
|
+
"operationId": "GetDialogSeenLog",
|
|
1689
|
+
"parameters": [
|
|
1690
|
+
{
|
|
1691
|
+
"name": "dialogId",
|
|
1692
|
+
"in": "path",
|
|
1693
|
+
"required": true,
|
|
1694
|
+
"schema": {
|
|
1695
|
+
"type": "string",
|
|
1696
|
+
"format": "guid"
|
|
1697
|
+
}
|
|
1698
|
+
},
|
|
1699
|
+
{
|
|
1700
|
+
"name": "seenLogId",
|
|
1701
|
+
"in": "path",
|
|
1702
|
+
"required": true,
|
|
1703
|
+
"schema": {
|
|
1704
|
+
"type": "string",
|
|
1705
|
+
"format": "guid"
|
|
1706
|
+
}
|
|
1707
|
+
}
|
|
1708
|
+
],
|
|
1709
|
+
"responses": {
|
|
1710
|
+
"401": {
|
|
1711
|
+
"description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \"digdir:dialogporten\"."
|
|
1712
|
+
},
|
|
1713
|
+
"403": {
|
|
1714
|
+
"description": "Forbidden"
|
|
1715
|
+
},
|
|
1716
|
+
"200": {
|
|
1717
|
+
"description": "Successfully returned the dialog seen log record.",
|
|
1718
|
+
"content": {
|
|
1719
|
+
"application/json": {
|
|
1720
|
+
"schema": {
|
|
1721
|
+
"$ref": "#/components/schemas/GetDialogSeenLogDto"
|
|
1722
|
+
}
|
|
1723
|
+
}
|
|
1724
|
+
}
|
|
1725
|
+
},
|
|
1726
|
+
"404": {
|
|
1727
|
+
"description": "Not Found",
|
|
1728
|
+
"content": {
|
|
1729
|
+
"application/problem+json": {
|
|
1730
|
+
"schema": {
|
|
1731
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
1732
|
+
}
|
|
1733
|
+
}
|
|
1734
|
+
}
|
|
1735
|
+
}
|
|
1736
|
+
},
|
|
1737
|
+
"security": [
|
|
1738
|
+
{
|
|
1739
|
+
"JWTBearerAuth": []
|
|
1740
|
+
}
|
|
1741
|
+
]
|
|
1742
|
+
}
|
|
1743
|
+
},
|
|
1744
|
+
"/api/v1/enduser/dialogs": {
|
|
1745
|
+
"get": {
|
|
1746
|
+
"tags": [
|
|
1747
|
+
"Enduser"
|
|
1748
|
+
],
|
|
1749
|
+
"summary": "Gets a list of dialogs",
|
|
1750
|
+
"description": "Performs a search for dialogs, returning a paginated list of dialogs. For more information see the documentation (link TBD).\n\n* All date parameters must contain explicit time zone. Example: 2023-10-27T10:00:00Z or 2023-10-27T10:00:00+01:00\n* See \"continuationToken\" 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.",
|
|
1751
|
+
"operationId": "GetDialogList",
|
|
1752
|
+
"parameters": [
|
|
1753
|
+
{
|
|
1754
|
+
"name": "org",
|
|
1755
|
+
"in": "query",
|
|
1756
|
+
"style": "form",
|
|
1757
|
+
"explode": true,
|
|
1758
|
+
"description": "Filter by one or more service owner codes",
|
|
1639
1759
|
"schema": {
|
|
1640
1760
|
"type": "array",
|
|
1641
1761
|
"nullable": true,
|
|
@@ -1899,126 +2019,6 @@
|
|
|
1899
2019
|
]
|
|
1900
2020
|
}
|
|
1901
2021
|
},
|
|
1902
|
-
"/api/v1/enduser/dialogs/{dialogId}/seenlog": {
|
|
1903
|
-
"get": {
|
|
1904
|
-
"tags": [
|
|
1905
|
-
"Enduser"
|
|
1906
|
-
],
|
|
1907
|
-
"summary": "Gets all seen log records for a dialog",
|
|
1908
|
-
"description": "Gets all seen log records for a dialog. For more information see the documentation (link TBD).",
|
|
1909
|
-
"operationId": "SearchDialogSeenLog",
|
|
1910
|
-
"parameters": [
|
|
1911
|
-
{
|
|
1912
|
-
"name": "dialogId",
|
|
1913
|
-
"in": "path",
|
|
1914
|
-
"required": true,
|
|
1915
|
-
"schema": {
|
|
1916
|
-
"type": "string",
|
|
1917
|
-
"format": "guid"
|
|
1918
|
-
}
|
|
1919
|
-
}
|
|
1920
|
-
],
|
|
1921
|
-
"responses": {
|
|
1922
|
-
"401": {
|
|
1923
|
-
"description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \"digdir:dialogporten\"."
|
|
1924
|
-
},
|
|
1925
|
-
"403": {
|
|
1926
|
-
"description": "Forbidden"
|
|
1927
|
-
},
|
|
1928
|
-
"200": {
|
|
1929
|
-
"description": "Successfully returned the dialog seen log records.",
|
|
1930
|
-
"content": {
|
|
1931
|
-
"application/json": {
|
|
1932
|
-
"schema": {
|
|
1933
|
-
"type": "array",
|
|
1934
|
-
"items": {
|
|
1935
|
-
"$ref": "#/components/schemas/SearchDialogSeenLogDto"
|
|
1936
|
-
}
|
|
1937
|
-
}
|
|
1938
|
-
}
|
|
1939
|
-
}
|
|
1940
|
-
},
|
|
1941
|
-
"404": {
|
|
1942
|
-
"description": "Not Found",
|
|
1943
|
-
"content": {
|
|
1944
|
-
"application/problem+json": {
|
|
1945
|
-
"schema": {
|
|
1946
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
1947
|
-
}
|
|
1948
|
-
}
|
|
1949
|
-
}
|
|
1950
|
-
}
|
|
1951
|
-
},
|
|
1952
|
-
"security": [
|
|
1953
|
-
{
|
|
1954
|
-
"JWTBearerAuth": []
|
|
1955
|
-
}
|
|
1956
|
-
]
|
|
1957
|
-
}
|
|
1958
|
-
},
|
|
1959
|
-
"/api/v1/enduser/dialogs/{dialogId}/seenlog/{seenLogId}": {
|
|
1960
|
-
"get": {
|
|
1961
|
-
"tags": [
|
|
1962
|
-
"Enduser"
|
|
1963
|
-
],
|
|
1964
|
-
"summary": "Gets a single dialog seen log record",
|
|
1965
|
-
"description": "Gets a single dialog seen log record. For more information see the documentation (link TBD).",
|
|
1966
|
-
"operationId": "GetDialogSeenLog",
|
|
1967
|
-
"parameters": [
|
|
1968
|
-
{
|
|
1969
|
-
"name": "dialogId",
|
|
1970
|
-
"in": "path",
|
|
1971
|
-
"required": true,
|
|
1972
|
-
"schema": {
|
|
1973
|
-
"type": "string",
|
|
1974
|
-
"format": "guid"
|
|
1975
|
-
}
|
|
1976
|
-
},
|
|
1977
|
-
{
|
|
1978
|
-
"name": "seenLogId",
|
|
1979
|
-
"in": "path",
|
|
1980
|
-
"required": true,
|
|
1981
|
-
"schema": {
|
|
1982
|
-
"type": "string",
|
|
1983
|
-
"format": "guid"
|
|
1984
|
-
}
|
|
1985
|
-
}
|
|
1986
|
-
],
|
|
1987
|
-
"responses": {
|
|
1988
|
-
"401": {
|
|
1989
|
-
"description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \"digdir:dialogporten\"."
|
|
1990
|
-
},
|
|
1991
|
-
"403": {
|
|
1992
|
-
"description": "Forbidden"
|
|
1993
|
-
},
|
|
1994
|
-
"200": {
|
|
1995
|
-
"description": "Successfully returned the dialog seen log record.",
|
|
1996
|
-
"content": {
|
|
1997
|
-
"application/json": {
|
|
1998
|
-
"schema": {
|
|
1999
|
-
"$ref": "#/components/schemas/GetDialogSeenLogDto"
|
|
2000
|
-
}
|
|
2001
|
-
}
|
|
2002
|
-
}
|
|
2003
|
-
},
|
|
2004
|
-
"404": {
|
|
2005
|
-
"description": "Not Found",
|
|
2006
|
-
"content": {
|
|
2007
|
-
"application/problem+json": {
|
|
2008
|
-
"schema": {
|
|
2009
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
2010
|
-
}
|
|
2011
|
-
}
|
|
2012
|
-
}
|
|
2013
|
-
}
|
|
2014
|
-
},
|
|
2015
|
-
"security": [
|
|
2016
|
-
{
|
|
2017
|
-
"JWTBearerAuth": []
|
|
2018
|
-
}
|
|
2019
|
-
]
|
|
2020
|
-
}
|
|
2021
|
-
},
|
|
2022
2022
|
"/api/v1/enduser/dialogs/{dialogId}/activities": {
|
|
2023
2023
|
"get": {
|
|
2024
2024
|
"tags": [
|
|
@@ -2401,25 +2401,99 @@
|
|
|
2401
2401
|
},
|
|
2402
2402
|
"mediaType": {
|
|
2403
2403
|
"type": "string",
|
|
2404
|
-
"nullable": true
|
|
2404
|
+
"nullable": true
|
|
2405
|
+
},
|
|
2406
|
+
"consumerType": {
|
|
2407
|
+
"$ref": "#/components/schemas/AttachmentUrlConsumerType_Values"
|
|
2408
|
+
}
|
|
2409
|
+
}
|
|
2410
|
+
},
|
|
2411
|
+
"AttachmentUrlConsumerType_Values": {
|
|
2412
|
+
"type": "string",
|
|
2413
|
+
"description": "",
|
|
2414
|
+
"x-enumNames": [
|
|
2415
|
+
"Gui",
|
|
2416
|
+
"Api"
|
|
2417
|
+
],
|
|
2418
|
+
"enum": [
|
|
2419
|
+
"Gui",
|
|
2420
|
+
"Api"
|
|
2421
|
+
]
|
|
2422
|
+
},
|
|
2423
|
+
"SearchDialogSeenLogDtoSO": {
|
|
2424
|
+
"type": "object",
|
|
2425
|
+
"additionalProperties": false,
|
|
2426
|
+
"properties": {
|
|
2427
|
+
"id": {
|
|
2428
|
+
"type": "string",
|
|
2429
|
+
"format": "guid"
|
|
2430
|
+
},
|
|
2431
|
+
"seenAt": {
|
|
2432
|
+
"type": "string",
|
|
2433
|
+
"format": "date-time"
|
|
2434
|
+
},
|
|
2435
|
+
"seenBy": {
|
|
2436
|
+
"$ref": "#/components/schemas/SearchDialogDialogSeenLogSeenByActorDtoSO"
|
|
2437
|
+
},
|
|
2438
|
+
"isViaServiceOwner": {
|
|
2439
|
+
"type": "boolean",
|
|
2440
|
+
"nullable": true
|
|
2441
|
+
}
|
|
2442
|
+
}
|
|
2443
|
+
},
|
|
2444
|
+
"SearchDialogDialogSeenLogSeenByActorDtoSO": {
|
|
2445
|
+
"type": "object",
|
|
2446
|
+
"additionalProperties": false,
|
|
2447
|
+
"properties": {
|
|
2448
|
+
"id": {
|
|
2449
|
+
"type": "string",
|
|
2450
|
+
"format": "guid"
|
|
2451
|
+
},
|
|
2452
|
+
"actorName": {
|
|
2453
|
+
"type": "string"
|
|
2454
|
+
},
|
|
2455
|
+
"actorId": {
|
|
2456
|
+
"type": "string"
|
|
2457
|
+
}
|
|
2458
|
+
}
|
|
2459
|
+
},
|
|
2460
|
+
"GetDialogSeenLogDtoSO": {
|
|
2461
|
+
"type": "object",
|
|
2462
|
+
"additionalProperties": false,
|
|
2463
|
+
"properties": {
|
|
2464
|
+
"id": {
|
|
2465
|
+
"type": "string",
|
|
2466
|
+
"format": "guid"
|
|
2467
|
+
},
|
|
2468
|
+
"seenAt": {
|
|
2469
|
+
"type": "string",
|
|
2470
|
+
"format": "date-time"
|
|
2471
|
+
},
|
|
2472
|
+
"seenBy": {
|
|
2473
|
+
"$ref": "#/components/schemas/GetDialogSeenLogSeenByActorDtoSO"
|
|
2474
|
+
},
|
|
2475
|
+
"isViaServiceOwner": {
|
|
2476
|
+
"type": "boolean",
|
|
2477
|
+
"nullable": true
|
|
2478
|
+
}
|
|
2479
|
+
}
|
|
2480
|
+
},
|
|
2481
|
+
"GetDialogSeenLogSeenByActorDtoSO": {
|
|
2482
|
+
"type": "object",
|
|
2483
|
+
"additionalProperties": false,
|
|
2484
|
+
"properties": {
|
|
2485
|
+
"id": {
|
|
2486
|
+
"type": "string",
|
|
2487
|
+
"format": "guid"
|
|
2405
2488
|
},
|
|
2406
|
-
"
|
|
2407
|
-
"
|
|
2489
|
+
"actorName": {
|
|
2490
|
+
"type": "string"
|
|
2491
|
+
},
|
|
2492
|
+
"actorId": {
|
|
2493
|
+
"type": "string"
|
|
2408
2494
|
}
|
|
2409
2495
|
}
|
|
2410
2496
|
},
|
|
2411
|
-
"AttachmentUrlConsumerType_Values": {
|
|
2412
|
-
"type": "string",
|
|
2413
|
-
"description": "",
|
|
2414
|
-
"x-enumNames": [
|
|
2415
|
-
"Gui",
|
|
2416
|
-
"Api"
|
|
2417
|
-
],
|
|
2418
|
-
"enum": [
|
|
2419
|
-
"Gui",
|
|
2420
|
-
"Api"
|
|
2421
|
-
]
|
|
2422
|
-
},
|
|
2423
2497
|
"UpdateDialogRequest": {
|
|
2424
2498
|
"type": "object",
|
|
2425
2499
|
"additionalProperties": false,
|
|
@@ -3080,7 +3154,7 @@
|
|
|
3080
3154
|
"format": "date-time"
|
|
3081
3155
|
},
|
|
3082
3156
|
"seenBy": {
|
|
3083
|
-
"$ref": "#/components/schemas/
|
|
3157
|
+
"$ref": "#/components/schemas/SearchDialogDialogSeenLogSeenByActorDtoSO2"
|
|
3084
3158
|
},
|
|
3085
3159
|
"isViaServiceOwner": {
|
|
3086
3160
|
"type": "boolean",
|
|
@@ -3091,7 +3165,7 @@
|
|
|
3091
3165
|
}
|
|
3092
3166
|
}
|
|
3093
3167
|
},
|
|
3094
|
-
"
|
|
3168
|
+
"SearchDialogDialogSeenLogSeenByActorDtoSO2": {
|
|
3095
3169
|
"type": "object",
|
|
3096
3170
|
"additionalProperties": false,
|
|
3097
3171
|
"properties": {
|
|
@@ -4128,80 +4202,6 @@
|
|
|
4128
4202
|
}
|
|
4129
4203
|
}
|
|
4130
4204
|
},
|
|
4131
|
-
"SearchDialogSeenLogDtoSO": {
|
|
4132
|
-
"type": "object",
|
|
4133
|
-
"additionalProperties": false,
|
|
4134
|
-
"properties": {
|
|
4135
|
-
"id": {
|
|
4136
|
-
"type": "string",
|
|
4137
|
-
"format": "guid"
|
|
4138
|
-
},
|
|
4139
|
-
"seenAt": {
|
|
4140
|
-
"type": "string",
|
|
4141
|
-
"format": "date-time"
|
|
4142
|
-
},
|
|
4143
|
-
"seenBy": {
|
|
4144
|
-
"$ref": "#/components/schemas/SearchDialogDialogSeenLogSeenByActorDtoSO2"
|
|
4145
|
-
},
|
|
4146
|
-
"isViaServiceOwner": {
|
|
4147
|
-
"type": "boolean",
|
|
4148
|
-
"nullable": true
|
|
4149
|
-
}
|
|
4150
|
-
}
|
|
4151
|
-
},
|
|
4152
|
-
"SearchDialogDialogSeenLogSeenByActorDtoSO2": {
|
|
4153
|
-
"type": "object",
|
|
4154
|
-
"additionalProperties": false,
|
|
4155
|
-
"properties": {
|
|
4156
|
-
"id": {
|
|
4157
|
-
"type": "string",
|
|
4158
|
-
"format": "guid"
|
|
4159
|
-
},
|
|
4160
|
-
"actorName": {
|
|
4161
|
-
"type": "string"
|
|
4162
|
-
},
|
|
4163
|
-
"actorId": {
|
|
4164
|
-
"type": "string"
|
|
4165
|
-
}
|
|
4166
|
-
}
|
|
4167
|
-
},
|
|
4168
|
-
"GetDialogSeenLogDtoSO": {
|
|
4169
|
-
"type": "object",
|
|
4170
|
-
"additionalProperties": false,
|
|
4171
|
-
"properties": {
|
|
4172
|
-
"id": {
|
|
4173
|
-
"type": "string",
|
|
4174
|
-
"format": "guid"
|
|
4175
|
-
},
|
|
4176
|
-
"seenAt": {
|
|
4177
|
-
"type": "string",
|
|
4178
|
-
"format": "date-time"
|
|
4179
|
-
},
|
|
4180
|
-
"seenBy": {
|
|
4181
|
-
"$ref": "#/components/schemas/GetDialogSeenLogSeenByActorDtoSO"
|
|
4182
|
-
},
|
|
4183
|
-
"isViaServiceOwner": {
|
|
4184
|
-
"type": "boolean",
|
|
4185
|
-
"nullable": true
|
|
4186
|
-
}
|
|
4187
|
-
}
|
|
4188
|
-
},
|
|
4189
|
-
"GetDialogSeenLogSeenByActorDtoSO": {
|
|
4190
|
-
"type": "object",
|
|
4191
|
-
"additionalProperties": false,
|
|
4192
|
-
"properties": {
|
|
4193
|
-
"id": {
|
|
4194
|
-
"type": "string",
|
|
4195
|
-
"format": "guid"
|
|
4196
|
-
},
|
|
4197
|
-
"actorName": {
|
|
4198
|
-
"type": "string"
|
|
4199
|
-
},
|
|
4200
|
-
"actorId": {
|
|
4201
|
-
"type": "string"
|
|
4202
|
-
}
|
|
4203
|
-
}
|
|
4204
|
-
},
|
|
4205
4205
|
"CreateDialogActivityRequest": {
|
|
4206
4206
|
"type": "object",
|
|
4207
4207
|
"additionalProperties": false,
|
|
@@ -4309,6 +4309,84 @@
|
|
|
4309
4309
|
}
|
|
4310
4310
|
}
|
|
4311
4311
|
},
|
|
4312
|
+
"SearchDialogSeenLogDto": {
|
|
4313
|
+
"type": "object",
|
|
4314
|
+
"additionalProperties": false,
|
|
4315
|
+
"properties": {
|
|
4316
|
+
"id": {
|
|
4317
|
+
"type": "string",
|
|
4318
|
+
"format": "guid"
|
|
4319
|
+
},
|
|
4320
|
+
"seenAt": {
|
|
4321
|
+
"type": "string",
|
|
4322
|
+
"format": "date-time"
|
|
4323
|
+
},
|
|
4324
|
+
"seenBy": {
|
|
4325
|
+
"$ref": "#/components/schemas/SearchDialogSeenLogSeenByActorDto"
|
|
4326
|
+
},
|
|
4327
|
+
"isViaServiceOwner": {
|
|
4328
|
+
"type": "boolean"
|
|
4329
|
+
},
|
|
4330
|
+
"isCurrentEndUser": {
|
|
4331
|
+
"type": "boolean"
|
|
4332
|
+
}
|
|
4333
|
+
}
|
|
4334
|
+
},
|
|
4335
|
+
"SearchDialogSeenLogSeenByActorDto": {
|
|
4336
|
+
"type": "object",
|
|
4337
|
+
"additionalProperties": false,
|
|
4338
|
+
"properties": {
|
|
4339
|
+
"id": {
|
|
4340
|
+
"type": "string",
|
|
4341
|
+
"format": "guid"
|
|
4342
|
+
},
|
|
4343
|
+
"actorName": {
|
|
4344
|
+
"type": "string"
|
|
4345
|
+
},
|
|
4346
|
+
"actorId": {
|
|
4347
|
+
"type": "string"
|
|
4348
|
+
}
|
|
4349
|
+
}
|
|
4350
|
+
},
|
|
4351
|
+
"GetDialogSeenLogDto": {
|
|
4352
|
+
"type": "object",
|
|
4353
|
+
"additionalProperties": false,
|
|
4354
|
+
"properties": {
|
|
4355
|
+
"id": {
|
|
4356
|
+
"type": "string",
|
|
4357
|
+
"format": "guid"
|
|
4358
|
+
},
|
|
4359
|
+
"seenAt": {
|
|
4360
|
+
"type": "string",
|
|
4361
|
+
"format": "date-time"
|
|
4362
|
+
},
|
|
4363
|
+
"seenBy": {
|
|
4364
|
+
"$ref": "#/components/schemas/GetDialogSeenLogSeenByActorDto"
|
|
4365
|
+
},
|
|
4366
|
+
"isViaServiceOwner": {
|
|
4367
|
+
"type": "boolean"
|
|
4368
|
+
},
|
|
4369
|
+
"isCurrentEndUser": {
|
|
4370
|
+
"type": "boolean"
|
|
4371
|
+
}
|
|
4372
|
+
}
|
|
4373
|
+
},
|
|
4374
|
+
"GetDialogSeenLogSeenByActorDto": {
|
|
4375
|
+
"type": "object",
|
|
4376
|
+
"additionalProperties": false,
|
|
4377
|
+
"properties": {
|
|
4378
|
+
"id": {
|
|
4379
|
+
"type": "string",
|
|
4380
|
+
"format": "guid"
|
|
4381
|
+
},
|
|
4382
|
+
"actorName": {
|
|
4383
|
+
"type": "string"
|
|
4384
|
+
},
|
|
4385
|
+
"actorId": {
|
|
4386
|
+
"type": "string"
|
|
4387
|
+
}
|
|
4388
|
+
}
|
|
4389
|
+
},
|
|
4312
4390
|
"PaginatedListOfSearchDialogDto": {
|
|
4313
4391
|
"type": "object",
|
|
4314
4392
|
"additionalProperties": false,
|
|
@@ -5064,84 +5142,6 @@
|
|
|
5064
5142
|
}
|
|
5065
5143
|
}
|
|
5066
5144
|
},
|
|
5067
|
-
"SearchDialogSeenLogDto": {
|
|
5068
|
-
"type": "object",
|
|
5069
|
-
"additionalProperties": false,
|
|
5070
|
-
"properties": {
|
|
5071
|
-
"id": {
|
|
5072
|
-
"type": "string",
|
|
5073
|
-
"format": "guid"
|
|
5074
|
-
},
|
|
5075
|
-
"seenAt": {
|
|
5076
|
-
"type": "string",
|
|
5077
|
-
"format": "date-time"
|
|
5078
|
-
},
|
|
5079
|
-
"seenBy": {
|
|
5080
|
-
"$ref": "#/components/schemas/SearchDialogSeenLogSeenByActorDto"
|
|
5081
|
-
},
|
|
5082
|
-
"isViaServiceOwner": {
|
|
5083
|
-
"type": "boolean"
|
|
5084
|
-
},
|
|
5085
|
-
"isCurrentEndUser": {
|
|
5086
|
-
"type": "boolean"
|
|
5087
|
-
}
|
|
5088
|
-
}
|
|
5089
|
-
},
|
|
5090
|
-
"SearchDialogSeenLogSeenByActorDto": {
|
|
5091
|
-
"type": "object",
|
|
5092
|
-
"additionalProperties": false,
|
|
5093
|
-
"properties": {
|
|
5094
|
-
"id": {
|
|
5095
|
-
"type": "string",
|
|
5096
|
-
"format": "guid"
|
|
5097
|
-
},
|
|
5098
|
-
"actorName": {
|
|
5099
|
-
"type": "string"
|
|
5100
|
-
},
|
|
5101
|
-
"actorId": {
|
|
5102
|
-
"type": "string"
|
|
5103
|
-
}
|
|
5104
|
-
}
|
|
5105
|
-
},
|
|
5106
|
-
"GetDialogSeenLogDto": {
|
|
5107
|
-
"type": "object",
|
|
5108
|
-
"additionalProperties": false,
|
|
5109
|
-
"properties": {
|
|
5110
|
-
"id": {
|
|
5111
|
-
"type": "string",
|
|
5112
|
-
"format": "guid"
|
|
5113
|
-
},
|
|
5114
|
-
"seenAt": {
|
|
5115
|
-
"type": "string",
|
|
5116
|
-
"format": "date-time"
|
|
5117
|
-
},
|
|
5118
|
-
"seenBy": {
|
|
5119
|
-
"$ref": "#/components/schemas/GetDialogSeenLogSeenByActorDto"
|
|
5120
|
-
},
|
|
5121
|
-
"isViaServiceOwner": {
|
|
5122
|
-
"type": "boolean"
|
|
5123
|
-
},
|
|
5124
|
-
"isCurrentEndUser": {
|
|
5125
|
-
"type": "boolean"
|
|
5126
|
-
}
|
|
5127
|
-
}
|
|
5128
|
-
},
|
|
5129
|
-
"GetDialogSeenLogSeenByActorDto": {
|
|
5130
|
-
"type": "object",
|
|
5131
|
-
"additionalProperties": false,
|
|
5132
|
-
"properties": {
|
|
5133
|
-
"id": {
|
|
5134
|
-
"type": "string",
|
|
5135
|
-
"format": "guid"
|
|
5136
|
-
},
|
|
5137
|
-
"actorName": {
|
|
5138
|
-
"type": "string"
|
|
5139
|
-
},
|
|
5140
|
-
"actorId": {
|
|
5141
|
-
"type": "string"
|
|
5142
|
-
}
|
|
5143
|
-
}
|
|
5144
|
-
},
|
|
5145
5145
|
"Operation": {
|
|
5146
5146
|
"type": "object",
|
|
5147
5147
|
"additionalProperties": false,
|