@digdir/dialogporten-schema 1.7.1 → 1.8.1-51eb898

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.7.1",
3
+ "version": "1.8.1-51eb898",
4
4
  "description": "GraphQl schema and OpenAPI spec for Dialogporten",
5
5
  "author": "DigDir",
6
6
  "repository": {
@@ -17,7 +17,7 @@ type Activity {
17
17
  type: ActivityType!
18
18
  relatedActivityId: UUID
19
19
  dialogElementId: UUID
20
- performedBy: [Localization!]
20
+ performedBy: String
21
21
  description: [Localization!]!
22
22
  }
23
23
 
@@ -115,7 +115,7 @@ type Element {
115
115
  type ElementUrl {
116
116
  id: UUID!
117
117
  url: URL!
118
- mimeType: String
118
+ mediaType: String
119
119
  consumerType: ElementUrlConsumer!
120
120
  }
121
121
 
@@ -125,10 +125,11 @@ type GuiAction {
125
125
  url: URL!
126
126
  authorizationAttribute: String
127
127
  isAuthorized: Boolean!
128
- isBackChannel: Boolean!
129
- isDeleteAction: Boolean!
128
+ isDeleteDialogAction: Boolean!
130
129
  priority: GuiActionPriority!
130
+ httpMethod: HttpVerb!
131
131
  title: [Localization!]!
132
+ prompt: [Localization!]
132
133
  }
133
134
 
134
135
  type Localization {
@@ -266,7 +266,7 @@
266
266
  {
267
267
  "Id": "858177cb-8584-4d10-a086-3a5defa7a6c3",
268
268
  "Url": "http://example.com/some-url",
269
- "MimeType": "application/json",
269
+ "MediaType": "application/json",
270
270
  "ConsumerType": 0
271
271
  }
272
272
  ]
@@ -278,8 +278,8 @@
278
278
  "Action": "submit",
279
279
  "Url": "https://example.com/some-url",
280
280
  "AuthorizationAttribute": null,
281
- "IsBackChannel": false,
282
- "IsDeleteAction": false,
281
+ "IsDeleteDialogAction": false,
282
+ "HttpMethod": 1,
283
283
  "Priority": 1,
284
284
  "Title": [
285
285
  {
@@ -290,7 +290,8 @@
290
290
  "Value": "GUI action-tittel",
291
291
  "CultureCode": "nb-no"
292
292
  }
293
- ]
293
+ ],
294
+ "Prompt": null
294
295
  }
295
296
  ],
296
297
  "ApiActions": [
@@ -322,16 +323,7 @@
322
323
  "Type": 3,
323
324
  "RelatedActivityId": null,
324
325
  "DialogElementId": null,
325
- "PerformedBy": [
326
- {
327
- "Value": "Some performer",
328
- "CultureCode": "en-us"
329
- },
330
- {
331
- "Value": "En utfører",
332
- "CultureCode": "nb-no"
333
- }
334
- ],
326
+ "PerformedBy": "Some performed",
335
327
  "Description": [
336
328
  {
337
329
  "Value": "Some description",
@@ -995,14 +987,14 @@
995
987
  ]
996
988
  }
997
989
  },
998
- "/api/v1/serviceowner/dialogs/{dialogId}/elements/{elementId}": {
999
- "put": {
990
+ "/api/v1/serviceowner/dialogs/{dialogId}/elements": {
991
+ "get": {
1000
992
  "tags": [
1001
993
  "Serviceowner"
1002
994
  ],
1003
- "summary": "Replaces a dialog element",
1004
- "description": "Replaces a given dialog element with the supplied model. For more information see the documentation (link TBD).\n\nOptimistic concurrency control is implemented using the If-Match header. Supply the Revision value from the GetDialog endpoint to ensure that the dialog is not deleted by another request in the meantime.",
1005
- "operationId": "ReplaceDialogElement",
995
+ "summary": "Gets a list of dialog elements",
996
+ "description": "Gets the list of elements belonging to a dialog",
997
+ "operationId": "GetDialogElementListSO",
1006
998
  "parameters": [
1007
999
  {
1008
1000
  "name": "dialogId",
@@ -1012,142 +1004,25 @@
1012
1004
  "type": "string",
1013
1005
  "format": "guid"
1014
1006
  }
1015
- },
1016
- {
1017
- "name": "elementId",
1018
- "in": "path",
1019
- "required": true,
1020
- "schema": {
1021
- "type": "string",
1022
- "format": "guid"
1023
- }
1024
- },
1025
- {
1026
- "name": "if-Match",
1027
- "in": "header",
1028
- "schema": {
1029
- "type": "string",
1030
- "format": "guid",
1031
- "nullable": true
1032
- }
1033
1007
  }
1034
1008
  ],
1035
- "requestBody": {
1036
- "x-name": "UpdateDialogElementRequest",
1037
- "description": "",
1038
- "content": {
1039
- "application/json": {
1040
- "schema": {
1041
- "$ref": "#/components/schemas/UpdateDialogElementRequest"
1042
- }
1043
- }
1044
- },
1045
- "required": true,
1046
- "x-position": 1
1047
- },
1048
1009
  "responses": {
1049
- "401": {
1050
- "description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \"digdir:dialogporten.serviceprovider\"."
1051
- },
1052
- "403": {
1053
- "description": "Unauthorized to update child entity for the given dialog (dialog not owned by authenticated organization or has additional scope requirements defined in service identifiers policy)."
1054
- },
1055
- "204": {
1056
- "description": "The dialog element was updated successfully."
1057
- },
1058
- "400": {
1059
- "description": "Validation error occured. See problem details for a list of errors.",
1060
- "content": {
1061
- "application/problem+json": {
1062
- "schema": {
1063
- "$ref": "#/components/schemas/ProblemDetails"
1064
- }
1065
- }
1066
- }
1067
- },
1068
- "404": {
1069
- "description": "The given dialog ID or dialog element ID was not found or was already deleted.",
1070
- "content": {
1071
- "application/problem+json": {
1072
- "schema": {
1073
- "$ref": "#/components/schemas/ProblemDetails"
1074
- }
1075
- }
1076
- }
1077
- },
1078
- "412": {
1079
- "description": "The supplied If-Match header did not match the current Revision value for the dialog. The request was not applied.",
1080
- "content": {
1081
- "application/problem+json": {
1082
- "schema": {
1083
- "$ref": "#/components/schemas/ProblemDetails"
1084
- }
1085
- }
1086
- }
1087
- },
1088
- "422": {
1089
- "description": "Domain error occured. See problem details for a list of errors.",
1010
+ "200": {
1011
+ "description": "Successfully returned the dialog element list.",
1090
1012
  "content": {
1091
- "application/problem+json": {
1092
- "schema": {
1093
- "$ref": "#/components/schemas/ProblemDetails"
1094
- }
1013
+ "text/plain": {
1014
+ "schema": {}
1015
+ },
1016
+ "application/json": {
1017
+ "schema": {}
1095
1018
  }
1096
1019
  }
1097
- }
1098
- },
1099
- "security": [
1100
- {
1101
- "JWTBearerAuth": []
1102
- }
1103
- ]
1104
- },
1105
- "get": {
1106
- "tags": [
1107
- "Serviceowner"
1108
- ],
1109
- "summary": "Gets a single dialog element",
1110
- "description": "Gets a single element belonging to a dialog. For more information see the documentation (link TBD).",
1111
- "operationId": "GetDialogElementSO",
1112
- "parameters": [
1113
- {
1114
- "name": "dialogId",
1115
- "in": "path",
1116
- "required": true,
1117
- "schema": {
1118
- "type": "string",
1119
- "format": "guid"
1120
- }
1121
1020
  },
1122
- {
1123
- "name": "elementId",
1124
- "in": "path",
1125
- "required": true,
1126
- "schema": {
1127
- "type": "string",
1128
- "format": "guid"
1129
- }
1130
- }
1131
- ],
1132
- "responses": {
1133
1021
  "401": {
1134
1022
  "description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \"digdir:dialogporten.serviceprovider\"."
1135
1023
  },
1136
1024
  "403": {
1137
- "description": "Unauthorized to get child entity for the given dialog (dialog not owned by authenticated organization or has additional scope requirements defined in service identifiers policy)."
1138
- },
1139
- "200": {
1140
- "description": "Successfully returned the dialog element."
1141
- },
1142
- "404": {
1143
- "description": "The given dialog ID or dialog element ID was not found or was already deleted.",
1144
- "content": {
1145
- "application/problem+json": {
1146
- "schema": {
1147
- "$ref": "#/components/schemas/ProblemDetails"
1148
- }
1149
- }
1150
- }
1025
+ "description": "Unauthorized to get the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
1151
1026
  }
1152
1027
  },
1153
1028
  "security": [
@@ -1156,13 +1031,13 @@
1156
1031
  }
1157
1032
  ]
1158
1033
  },
1159
- "delete": {
1034
+ "post": {
1160
1035
  "tags": [
1161
1036
  "Serviceowner"
1162
1037
  ],
1163
- "summary": "Deletes a dialog element",
1164
- "description": "Deletes a given dialog element (hard delete). For more information see the documentation (link TBD).\n\nOptimistic concurrency control is implemented using the If-Match header. Supply the Revision value from the GetDialog endpoint to ensure that the dialog is not modified/deleted by another request in the meantime.",
1165
- "operationId": "DeleteDialogElement",
1038
+ "summary": "Creates a new dialog element",
1039
+ "description": "The dialog element is created with the given configuration. For more information see the documentation (link TBD).\n\nOptimistic concurrency control is implemented using the If-Match header. Supply the Revision value from the GetDialog endpoint to ensure that the dialog is not modified/deleted by another request in the meantime.",
1040
+ "operationId": "CreateDialogElement",
1166
1041
  "parameters": [
1167
1042
  {
1168
1043
  "name": "dialogId",
@@ -1173,15 +1048,6 @@
1173
1048
  "format": "guid"
1174
1049
  }
1175
1050
  },
1176
- {
1177
- "name": "elementId",
1178
- "in": "path",
1179
- "required": true,
1180
- "schema": {
1181
- "type": "string",
1182
- "format": "guid"
1183
- }
1184
- },
1185
1051
  {
1186
1052
  "name": "if-Match",
1187
1053
  "in": "header",
@@ -1192,18 +1058,39 @@
1192
1058
  }
1193
1059
  }
1194
1060
  ],
1061
+ "requestBody": {
1062
+ "x-name": "CreateDialogElementRequest",
1063
+ "description": "",
1064
+ "content": {
1065
+ "application/json": {
1066
+ "schema": {
1067
+ "$ref": "#/components/schemas/CreateDialogElementRequest"
1068
+ }
1069
+ }
1070
+ },
1071
+ "required": true,
1072
+ "x-position": 1
1073
+ },
1195
1074
  "responses": {
1196
1075
  "401": {
1197
1076
  "description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \"digdir:dialogporten.serviceprovider\"."
1198
1077
  },
1199
1078
  "403": {
1200
- "description": "Unauthorized to delete child entity for the given dialog (dialog not owned by authenticated organization or has additional scope requirements defined in service identifiers policy)."
1079
+ "description": "Unauthorized to create child entity for the given dialog (dialog not owned by authenticated organization or has additional scope requirements defined in service identifiers policy)."
1201
1080
  },
1202
- "204": {
1203
- "description": "The dialog element was deleted successfully."
1081
+ "201": {
1082
+ "description": "The UUID of the created the dialog element. A relative URL to the newly created activity is set in the \"Location\" header.",
1083
+ "content": {
1084
+ "application/json": {
1085
+ "schema": {
1086
+ "type": "string"
1087
+ },
1088
+ "example": "b6dc8b01-1cd8-2777-b759-d84b0e384f47"
1089
+ }
1090
+ }
1204
1091
  },
1205
1092
  "400": {
1206
- "description": "Bad Request",
1093
+ "description": "Validation error occured. See problem details for a list of errors.",
1207
1094
  "content": {
1208
1095
  "application/problem+json": {
1209
1096
  "schema": {
@@ -1213,7 +1100,7 @@
1213
1100
  }
1214
1101
  },
1215
1102
  "404": {
1216
- "description": "The given dialog ID or dialog element ID was not found or was already deleted.",
1103
+ "description": "The given dialog ID was not found or is already deleted.",
1217
1104
  "content": {
1218
1105
  "application/problem+json": {
1219
1106
  "schema": {
@@ -1233,7 +1120,7 @@
1233
1120
  }
1234
1121
  },
1235
1122
  "422": {
1236
- "description": "",
1123
+ "description": "Domain error occured. See problem details for a list of errors.",
1237
1124
  "content": {
1238
1125
  "application/problem+json": {
1239
1126
  "schema": {
@@ -1250,14 +1137,14 @@
1250
1137
  ]
1251
1138
  }
1252
1139
  },
1253
- "/api/v1/serviceowner/dialogs/{dialogId}/elements": {
1140
+ "/api/v1/serviceowner/dialogs/{dialogId}/elements/{elementId}": {
1254
1141
  "get": {
1255
1142
  "tags": [
1256
1143
  "Serviceowner"
1257
1144
  ],
1258
- "summary": "Gets a list of dialog elements",
1259
- "description": "Gets the list of elements belonging to a dialog",
1260
- "operationId": "GetDialogElementListSO",
1145
+ "summary": "Gets a single dialog element",
1146
+ "description": "Gets a single element belonging to a dialog. For more information see the documentation (link TBD).",
1147
+ "operationId": "GetDialogElementSO",
1261
1148
  "parameters": [
1262
1149
  {
1263
1150
  "name": "dialogId",
@@ -1267,123 +1154,29 @@
1267
1154
  "type": "string",
1268
1155
  "format": "guid"
1269
1156
  }
1270
- }
1271
- ],
1272
- "responses": {
1273
- "200": {
1274
- "description": "Successfully returned the dialog element list.",
1275
- "content": {
1276
- "text/plain": {
1277
- "schema": {}
1278
- },
1279
- "application/json": {
1280
- "schema": {}
1281
- }
1282
- }
1283
1157
  },
1284
- "401": {
1285
- "description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \"digdir:dialogporten.serviceprovider\"."
1286
- },
1287
- "403": {
1288
- "description": "Unauthorized to get the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
1289
- }
1290
- },
1291
- "security": [
1292
1158
  {
1293
- "JWTBearerAuth": []
1294
- }
1295
- ]
1296
- },
1297
- "post": {
1298
- "tags": [
1299
- "Serviceowner"
1300
- ],
1301
- "summary": "Creates a new dialog element",
1302
- "description": "The dialog element is created with the given configuration. For more information see the documentation (link TBD).\n\nOptimistic concurrency control is implemented using the If-Match header. Supply the Revision value from the GetDialog endpoint to ensure that the dialog is not modified/deleted by another request in the meantime.",
1303
- "operationId": "CreateDialogElement",
1304
- "parameters": [
1305
- {
1306
- "name": "dialogId",
1159
+ "name": "elementId",
1307
1160
  "in": "path",
1308
1161
  "required": true,
1309
1162
  "schema": {
1310
1163
  "type": "string",
1311
1164
  "format": "guid"
1312
1165
  }
1313
- },
1314
- {
1315
- "name": "if-Match",
1316
- "in": "header",
1317
- "schema": {
1318
- "type": "string",
1319
- "format": "guid",
1320
- "nullable": true
1321
- }
1322
1166
  }
1323
1167
  ],
1324
- "requestBody": {
1325
- "x-name": "CreateDialogElementRequest",
1326
- "description": "",
1327
- "content": {
1328
- "application/json": {
1329
- "schema": {
1330
- "$ref": "#/components/schemas/CreateDialogElementRequest"
1331
- }
1332
- }
1333
- },
1334
- "required": true,
1335
- "x-position": 1
1336
- },
1337
1168
  "responses": {
1338
1169
  "401": {
1339
1170
  "description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \"digdir:dialogporten.serviceprovider\"."
1340
1171
  },
1341
1172
  "403": {
1342
- "description": "Unauthorized to create child entity for the given dialog (dialog not owned by authenticated organization or has additional scope requirements defined in service identifiers policy)."
1343
- },
1344
- "201": {
1345
- "description": "The UUID of the created the dialog element. A relative URL to the newly created activity is set in the \"Location\" header.",
1346
- "content": {
1347
- "application/json": {
1348
- "schema": {
1349
- "type": "string"
1350
- },
1351
- "example": "b6dc8b01-1cd8-2777-b759-d84b0e384f47"
1352
- }
1353
- }
1173
+ "description": "Unauthorized to get child entity for the given dialog (dialog not owned by authenticated organization or has additional scope requirements defined in service identifiers policy)."
1354
1174
  },
1355
- "400": {
1356
- "description": "Validation error occured. See problem details for a list of errors.",
1357
- "content": {
1358
- "application/problem+json": {
1359
- "schema": {
1360
- "$ref": "#/components/schemas/ProblemDetails"
1361
- }
1362
- }
1363
- }
1175
+ "200": {
1176
+ "description": "Successfully returned the dialog element."
1364
1177
  },
1365
1178
  "404": {
1366
- "description": "The given dialog ID was not found or is already deleted.",
1367
- "content": {
1368
- "application/problem+json": {
1369
- "schema": {
1370
- "$ref": "#/components/schemas/ProblemDetails"
1371
- }
1372
- }
1373
- }
1374
- },
1375
- "412": {
1376
- "description": "The supplied If-Match header did not match the current Revision value for the dialog. The request was not applied.",
1377
- "content": {
1378
- "application/problem+json": {
1379
- "schema": {
1380
- "$ref": "#/components/schemas/ProblemDetails"
1381
- }
1382
- }
1383
- }
1384
- },
1385
- "422": {
1386
- "description": "Domain error occured. See problem details for a list of errors.",
1179
+ "description": "The given dialog ID or dialog element ID was not found or was already deleted.",
1387
1180
  "content": {
1388
1181
  "application/problem+json": {
1389
1182
  "schema": {
@@ -2604,7 +2397,7 @@
2604
2397
  "type": "string",
2605
2398
  "format": "uri"
2606
2399
  },
2607
- "mimeType": {
2400
+ "mediaType": {
2608
2401
  "type": "string",
2609
2402
  "nullable": true
2610
2403
  },
@@ -2645,11 +2438,16 @@
2645
2438
  "type": "string",
2646
2439
  "nullable": true
2647
2440
  },
2648
- "isBackChannel": {
2441
+ "isDeleteDialogAction": {
2649
2442
  "type": "boolean"
2650
2443
  },
2651
- "isDeleteAction": {
2652
- "type": "boolean"
2444
+ "httpMethod": {
2445
+ "nullable": true,
2446
+ "oneOf": [
2447
+ {
2448
+ "$ref": "#/components/schemas/HttpVerb_Values"
2449
+ }
2450
+ ]
2653
2451
  },
2654
2452
  "priority": {
2655
2453
  "$ref": "#/components/schemas/DialogGuiActionPriority_Values"
@@ -2659,9 +2457,42 @@
2659
2457
  "items": {
2660
2458
  "$ref": "#/components/schemas/LocalizationDto"
2661
2459
  }
2460
+ },
2461
+ "prompt": {
2462
+ "type": "array",
2463
+ "nullable": true,
2464
+ "items": {
2465
+ "$ref": "#/components/schemas/LocalizationDto"
2466
+ }
2662
2467
  }
2663
2468
  }
2664
2469
  },
2470
+ "HttpVerb_Values": {
2471
+ "type": "string",
2472
+ "description": "",
2473
+ "x-enumNames": [
2474
+ "GET",
2475
+ "POST",
2476
+ "PUT",
2477
+ "PATCH",
2478
+ "DELETE",
2479
+ "HEAD",
2480
+ "OPTIONS",
2481
+ "TRACE",
2482
+ "CONNECT"
2483
+ ],
2484
+ "enum": [
2485
+ "GET",
2486
+ "POST",
2487
+ "PUT",
2488
+ "PATCH",
2489
+ "DELETE",
2490
+ "HEAD",
2491
+ "OPTIONS",
2492
+ "TRACE",
2493
+ "CONNECT"
2494
+ ]
2495
+ },
2665
2496
  "DialogGuiActionPriority_Values": {
2666
2497
  "type": "string",
2667
2498
  "description": "",
@@ -2750,32 +2581,6 @@
2750
2581
  }
2751
2582
  }
2752
2583
  },
2753
- "HttpVerb_Values": {
2754
- "type": "string",
2755
- "description": "",
2756
- "x-enumNames": [
2757
- "GET",
2758
- "POST",
2759
- "PUT",
2760
- "PATCH",
2761
- "DELETE",
2762
- "HEAD",
2763
- "OPTIONS",
2764
- "TRACE",
2765
- "CONNECT"
2766
- ],
2767
- "enum": [
2768
- "GET",
2769
- "POST",
2770
- "PUT",
2771
- "PATCH",
2772
- "DELETE",
2773
- "HEAD",
2774
- "OPTIONS",
2775
- "TRACE",
2776
- "CONNECT"
2777
- ]
2778
- },
2779
2584
  "UpdateDialogDialogActivityDto": {
2780
2585
  "type": "object",
2781
2586
  "additionalProperties": false,
@@ -2809,10 +2614,8 @@
2809
2614
  "nullable": true
2810
2615
  },
2811
2616
  "performedBy": {
2812
- "type": "array",
2813
- "items": {
2814
- "$ref": "#/components/schemas/LocalizationDto"
2815
- }
2617
+ "type": "string",
2618
+ "nullable": true
2816
2619
  },
2817
2620
  "description": {
2818
2621
  "type": "array",
@@ -3159,7 +2962,7 @@
3159
2962
  "type": "string",
3160
2963
  "format": "uri"
3161
2964
  },
3162
- "mimeType": {
2965
+ "mediaType": {
3163
2966
  "type": "string",
3164
2967
  "nullable": true
3165
2968
  },
@@ -3187,20 +2990,27 @@
3187
2990
  "type": "string",
3188
2991
  "nullable": true
3189
2992
  },
3190
- "isBackChannel": {
3191
- "type": "boolean"
3192
- },
3193
- "isDeleteAction": {
2993
+ "isDeleteDialogAction": {
3194
2994
  "type": "boolean"
3195
2995
  },
3196
2996
  "priority": {
3197
2997
  "$ref": "#/components/schemas/DialogGuiActionPriority_Values"
3198
2998
  },
2999
+ "httpMethod": {
3000
+ "$ref": "#/components/schemas/HttpVerb_Values"
3001
+ },
3199
3002
  "title": {
3200
3003
  "type": "array",
3201
3004
  "items": {
3202
3005
  "$ref": "#/components/schemas/LocalizationDto"
3203
3006
  }
3007
+ },
3008
+ "prompt": {
3009
+ "type": "array",
3010
+ "nullable": true,
3011
+ "items": {
3012
+ "$ref": "#/components/schemas/LocalizationDto"
3013
+ }
3204
3014
  }
3205
3015
  }
3206
3016
  },
@@ -3308,11 +3118,8 @@
3308
3118
  "nullable": true
3309
3119
  },
3310
3120
  "performedBy": {
3311
- "type": "array",
3312
- "nullable": true,
3313
- "items": {
3314
- "$ref": "#/components/schemas/LocalizationDto"
3315
- }
3121
+ "type": "string",
3122
+ "nullable": true
3316
3123
  },
3317
3124
  "description": {
3318
3125
  "type": "array",
@@ -3504,7 +3311,7 @@
3504
3311
  "type": "string",
3505
3312
  "format": "uri"
3506
3313
  },
3507
- "mimeType": {
3314
+ "mediaType": {
3508
3315
  "type": "string",
3509
3316
  "nullable": true
3510
3317
  },
@@ -3528,11 +3335,16 @@
3528
3335
  "type": "string",
3529
3336
  "nullable": true
3530
3337
  },
3531
- "isBackChannel": {
3338
+ "isDeleteDialogAction": {
3532
3339
  "type": "boolean"
3533
3340
  },
3534
- "isDeleteAction": {
3535
- "type": "boolean"
3341
+ "httpMethod": {
3342
+ "nullable": true,
3343
+ "oneOf": [
3344
+ {
3345
+ "$ref": "#/components/schemas/HttpVerb_Values"
3346
+ }
3347
+ ]
3536
3348
  },
3537
3349
  "priority": {
3538
3350
  "$ref": "#/components/schemas/DialogGuiActionPriority_Values"
@@ -3542,6 +3354,13 @@
3542
3354
  "items": {
3543
3355
  "$ref": "#/components/schemas/LocalizationDto"
3544
3356
  }
3357
+ },
3358
+ "prompt": {
3359
+ "type": "array",
3360
+ "nullable": true,
3361
+ "items": {
3362
+ "$ref": "#/components/schemas/LocalizationDto"
3363
+ }
3545
3364
  }
3546
3365
  }
3547
3366
  },
@@ -3642,48 +3461,14 @@
3642
3461
  "nullable": true
3643
3462
  },
3644
3463
  "performedBy": {
3645
- "type": "array",
3646
- "items": {
3647
- "$ref": "#/components/schemas/LocalizationDto"
3648
- }
3649
- },
3650
- "description": {
3651
- "type": "array",
3652
- "items": {
3653
- "$ref": "#/components/schemas/LocalizationDto"
3654
- }
3655
- }
3656
- }
3657
- },
3658
- "UpdateDialogElementRequest": {
3659
- "type": "object",
3660
- "additionalProperties": false,
3661
- "properties": {
3662
- "type": {
3663
3464
  "type": "string",
3664
- "format": "uri",
3665
3465
  "nullable": true
3666
3466
  },
3667
- "authorizationAttribute": {
3668
- "type": "string",
3669
- "nullable": true
3670
- },
3671
- "relatedDialogElementId": {
3672
- "type": "string",
3673
- "format": "guid",
3674
- "nullable": true
3675
- },
3676
- "displayName": {
3467
+ "description": {
3677
3468
  "type": "array",
3678
3469
  "items": {
3679
3470
  "$ref": "#/components/schemas/LocalizationDto"
3680
3471
  }
3681
- },
3682
- "urls": {
3683
- "type": "array",
3684
- "items": {
3685
- "$ref": "#/components/schemas/UpdateDialogDialogElementUrlDto"
3686
- }
3687
3472
  }
3688
3473
  }
3689
3474
  },
@@ -3761,10 +3546,8 @@
3761
3546
  "nullable": true
3762
3547
  },
3763
3548
  "performedBy": {
3764
- "type": "array",
3765
- "items": {
3766
- "$ref": "#/components/schemas/LocalizationDto"
3767
- }
3549
+ "type": "string",
3550
+ "nullable": true
3768
3551
  },
3769
3552
  "description": {
3770
3553
  "type": "array",
@@ -3997,11 +3780,8 @@
3997
3780
  "nullable": true
3998
3781
  },
3999
3782
  "performedBy": {
4000
- "type": "array",
4001
- "nullable": true,
4002
- "items": {
4003
- "$ref": "#/components/schemas/LocalizationDto"
4004
- }
3783
+ "type": "string",
3784
+ "nullable": true
4005
3785
  },
4006
3786
  "description": {
4007
3787
  "type": "array",
@@ -4225,7 +4005,7 @@
4225
4005
  "type": "string",
4226
4006
  "format": "uri"
4227
4007
  },
4228
- "mimeType": {
4008
+ "mediaType": {
4229
4009
  "type": "string",
4230
4010
  "nullable": true
4231
4011
  },
@@ -4256,20 +4036,27 @@
4256
4036
  "isAuthorized": {
4257
4037
  "type": "boolean"
4258
4038
  },
4259
- "isBackChannel": {
4260
- "type": "boolean"
4261
- },
4262
- "isDeleteAction": {
4039
+ "isDeleteDialogAction": {
4263
4040
  "type": "boolean"
4264
4041
  },
4265
4042
  "priority": {
4266
4043
  "$ref": "#/components/schemas/DialogGuiActionPriority_Values"
4267
4044
  },
4045
+ "httpMethod": {
4046
+ "$ref": "#/components/schemas/HttpVerb_Values"
4047
+ },
4268
4048
  "title": {
4269
4049
  "type": "array",
4270
4050
  "items": {
4271
4051
  "$ref": "#/components/schemas/LocalizationDto"
4272
4052
  }
4053
+ },
4054
+ "prompt": {
4055
+ "type": "array",
4056
+ "nullable": true,
4057
+ "items": {
4058
+ "$ref": "#/components/schemas/LocalizationDto"
4059
+ }
4273
4060
  }
4274
4061
  }
4275
4062
  },
@@ -4380,11 +4167,8 @@
4380
4167
  "nullable": true
4381
4168
  },
4382
4169
  "performedBy": {
4383
- "type": "array",
4384
- "nullable": true,
4385
- "items": {
4386
- "$ref": "#/components/schemas/LocalizationDto"
4387
- }
4170
+ "type": "string",
4171
+ "nullable": true
4388
4172
  },
4389
4173
  "description": {
4390
4174
  "type": "array",
@@ -4474,4 +4258,4 @@
4474
4258
  }
4475
4259
  }
4476
4260
  }
4477
- }
4261
+ }