@digdir/dialogporten-schema 1.23.0 → 1.23.2
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 +1 -1
- package/src/index.js +1 -1
- package/swagger.verified.json +198 -82
package/package.json
CHANGED
package/schema.verified.graphql
CHANGED
|
@@ -21,7 +21,6 @@ type Activity {
|
|
|
21
21
|
createdAt: DateTime
|
|
22
22
|
extendedType: URL
|
|
23
23
|
type: ActivityType!
|
|
24
|
-
relatedActivityId: UUID
|
|
25
24
|
transmissionId: UUID
|
|
26
25
|
performedBy: Actor!
|
|
27
26
|
description: [Localization!]!
|
|
@@ -253,6 +252,7 @@ type Transmission {
|
|
|
253
252
|
type TransmissionContent {
|
|
254
253
|
title: ContentValue!
|
|
255
254
|
summary: ContentValue!
|
|
255
|
+
contentReference: ContentValue
|
|
256
256
|
}
|
|
257
257
|
|
|
258
258
|
input SearchDialogInput {
|
package/src/index.js
CHANGED
|
@@ -21,7 +21,6 @@ type Activity {
|
|
|
21
21
|
createdAt: DateTime
|
|
22
22
|
extendedType: URL
|
|
23
23
|
type: ActivityType!
|
|
24
|
-
relatedActivityId: UUID
|
|
25
24
|
transmissionId: UUID
|
|
26
25
|
performedBy: Actor!
|
|
27
26
|
description: [Localization!]!
|
|
@@ -253,6 +252,7 @@ type Transmission {
|
|
|
253
252
|
type TransmissionContent {
|
|
254
253
|
title: ContentValue!
|
|
255
254
|
summary: ContentValue!
|
|
255
|
+
contentReference: ContentValue
|
|
256
256
|
}
|
|
257
257
|
|
|
258
258
|
input SearchDialogInput {
|
package/swagger.verified.json
CHANGED
|
@@ -120,12 +120,6 @@
|
|
|
120
120
|
}
|
|
121
121
|
]
|
|
122
122
|
},
|
|
123
|
-
"relatedActivityId": {
|
|
124
|
-
"description": "The related activity identifier, if applicable. Must be present in the request body.",
|
|
125
|
-
"format": "guid",
|
|
126
|
-
"nullable": true,
|
|
127
|
-
"type": "string"
|
|
128
|
-
},
|
|
129
123
|
"transmissionId": {
|
|
130
124
|
"description": "If the activity is related to a particular transmission, this field will contain the transmission identifier.\nMust be present in the request body.",
|
|
131
125
|
"format": "guid",
|
|
@@ -314,7 +308,7 @@
|
|
|
314
308
|
]
|
|
315
309
|
},
|
|
316
310
|
"mainContentReference": {
|
|
317
|
-
"description": "Front-channel embedded content. Used to dynamically embed content in the frontend from an external URL.\nSupported media types: application/vnd.dialogporten.frontchannelembed\u002Bjson;type=markdown",
|
|
311
|
+
"description": "Front-channel embedded content. Used to dynamically embed content in the frontend from an external URL. Must be HTTPS.\nSupported media types: application/vnd.dialogporten.frontchannelembed\u002Bjson;type=markdown",
|
|
318
312
|
"nullable": true,
|
|
319
313
|
"oneOf": [
|
|
320
314
|
{
|
|
@@ -387,12 +381,6 @@
|
|
|
387
381
|
}
|
|
388
382
|
]
|
|
389
383
|
},
|
|
390
|
-
"relatedActivityId": {
|
|
391
|
-
"description": "The related activity identifier, if applicable. Must be present in the request body.",
|
|
392
|
-
"format": "guid",
|
|
393
|
-
"nullable": true,
|
|
394
|
-
"type": "string"
|
|
395
|
-
},
|
|
396
384
|
"transmissionId": {
|
|
397
385
|
"description": "If the activity is related to a particular transmission, this field will contain the transmission identifier.\nMust be present in the request body.",
|
|
398
386
|
"format": "guid",
|
|
@@ -618,6 +606,15 @@
|
|
|
618
606
|
"CreateDialogDialogTransmissionContentDto": {
|
|
619
607
|
"additionalProperties": false,
|
|
620
608
|
"properties": {
|
|
609
|
+
"contentReference": {
|
|
610
|
+
"description": "Front-channel embedded content. Used to dynamically embed content in the frontend from an external URL. Must be HTTPS.\nAllowed media types: application/vnd.dialogporten.frontchannelembed\u002Bjson;type=markdown",
|
|
611
|
+
"nullable": true,
|
|
612
|
+
"oneOf": [
|
|
613
|
+
{
|
|
614
|
+
"$ref": "#/components/schemas/ContentValueDto"
|
|
615
|
+
}
|
|
616
|
+
]
|
|
617
|
+
},
|
|
621
618
|
"summary": {
|
|
622
619
|
"description": "The transmission summary.",
|
|
623
620
|
"oneOf": [
|
|
@@ -965,11 +962,6 @@
|
|
|
965
962
|
"performedBy": {
|
|
966
963
|
"$ref": "#/components/schemas/GetDialogActivityPerformedByActorDto"
|
|
967
964
|
},
|
|
968
|
-
"relatedActivityId": {
|
|
969
|
-
"format": "guid",
|
|
970
|
-
"nullable": true,
|
|
971
|
-
"type": "string"
|
|
972
|
-
},
|
|
973
965
|
"transmissionId": {
|
|
974
966
|
"format": "guid",
|
|
975
967
|
"nullable": true,
|
|
@@ -1012,11 +1004,6 @@
|
|
|
1012
1004
|
"performedBy": {
|
|
1013
1005
|
"$ref": "#/components/schemas/GetDialogActivityPerformedByActorDtoSO"
|
|
1014
1006
|
},
|
|
1015
|
-
"relatedActivityId": {
|
|
1016
|
-
"format": "guid",
|
|
1017
|
-
"nullable": true,
|
|
1018
|
-
"type": "string"
|
|
1019
|
-
},
|
|
1020
1007
|
"transmissionId": {
|
|
1021
1008
|
"format": "guid",
|
|
1022
1009
|
"nullable": true,
|
|
@@ -1150,7 +1137,7 @@
|
|
|
1150
1137
|
]
|
|
1151
1138
|
},
|
|
1152
1139
|
"mainContentReference": {
|
|
1153
|
-
"description": "Front-channel embedded content. Used to dynamically embed content in the frontend from an external URL.",
|
|
1140
|
+
"description": "Front-channel embedded content. Used to dynamically embed content in the frontend from an external URL. Must be HTTPS.\nAllowed media types: application/vnd.dialogporten.frontchannelembed\u002Bjson;type=markdown",
|
|
1154
1141
|
"nullable": true,
|
|
1155
1142
|
"oneOf": [
|
|
1156
1143
|
{
|
|
@@ -1221,12 +1208,6 @@
|
|
|
1221
1208
|
}
|
|
1222
1209
|
]
|
|
1223
1210
|
},
|
|
1224
|
-
"relatedActivityId": {
|
|
1225
|
-
"description": "The related activity identifier, if applicable. Must be present in the current dialog.",
|
|
1226
|
-
"format": "guid",
|
|
1227
|
-
"nullable": true,
|
|
1228
|
-
"type": "string"
|
|
1229
|
-
},
|
|
1230
1211
|
"transmissionId": {
|
|
1231
1212
|
"description": "If the activity is related to a particular transmission, this field will contain the transmission identifier.",
|
|
1232
1213
|
"format": "guid",
|
|
@@ -1279,12 +1260,6 @@
|
|
|
1279
1260
|
}
|
|
1280
1261
|
]
|
|
1281
1262
|
},
|
|
1282
|
-
"relatedActivityId": {
|
|
1283
|
-
"description": "The related activity identifier, if applicable. Must be present in the current dialog.",
|
|
1284
|
-
"format": "guid",
|
|
1285
|
-
"nullable": true,
|
|
1286
|
-
"type": "string"
|
|
1287
|
-
},
|
|
1288
1263
|
"transmissionId": {
|
|
1289
1264
|
"description": "If the activity is related to a particular transmission, this field will contain the transmission identifier.",
|
|
1290
1265
|
"format": "guid",
|
|
@@ -1977,6 +1952,15 @@
|
|
|
1977
1952
|
"GetDialogDialogTransmissionContentDto": {
|
|
1978
1953
|
"additionalProperties": false,
|
|
1979
1954
|
"properties": {
|
|
1955
|
+
"contentReference": {
|
|
1956
|
+
"description": "Front-channel embedded content. Used to dynamically embed content in the frontend from an external URL.\nAllowed media types: application/vnd.dialogporten.frontchannelembed\u002Bjson;type=markdown",
|
|
1957
|
+
"nullable": true,
|
|
1958
|
+
"oneOf": [
|
|
1959
|
+
{
|
|
1960
|
+
"$ref": "#/components/schemas/ContentValueDto"
|
|
1961
|
+
}
|
|
1962
|
+
]
|
|
1963
|
+
},
|
|
1980
1964
|
"summary": {
|
|
1981
1965
|
"description": "The transmission summary.",
|
|
1982
1966
|
"oneOf": [
|
|
@@ -1999,6 +1983,15 @@
|
|
|
1999
1983
|
"GetDialogDialogTransmissionContentDtoSO": {
|
|
2000
1984
|
"additionalProperties": false,
|
|
2001
1985
|
"properties": {
|
|
1986
|
+
"contentReference": {
|
|
1987
|
+
"description": "Front-channel embedded content. Used to dynamically embed content in the frontend from an external URL. Must be HTTPS.\nAllowed media types: application/vnd.dialogporten.frontchannelembed\u002Bjson;type=markdown",
|
|
1988
|
+
"nullable": true,
|
|
1989
|
+
"oneOf": [
|
|
1990
|
+
{
|
|
1991
|
+
"$ref": "#/components/schemas/ContentValueDto"
|
|
1992
|
+
}
|
|
1993
|
+
]
|
|
1994
|
+
},
|
|
2002
1995
|
"summary": {
|
|
2003
1996
|
"description": "The transmission summary.",
|
|
2004
1997
|
"oneOf": [
|
|
@@ -2457,12 +2450,12 @@
|
|
|
2457
2450
|
"type": "string"
|
|
2458
2451
|
},
|
|
2459
2452
|
"precedingProcess": {
|
|
2460
|
-
"description": "Optional preceding process identifier to indicate the business process that preceded the process indicated in the \u0022Process\u0022 field. Cannot be set without also \u0022Process\u0022 being set.
|
|
2453
|
+
"description": "Optional preceding process identifier to indicate the business process that preceded the process indicated in the \u0022Process\u0022 field. Cannot be set without also \u0022Process\u0022 being set.",
|
|
2461
2454
|
"nullable": true,
|
|
2462
2455
|
"type": "string"
|
|
2463
2456
|
},
|
|
2464
2457
|
"process": {
|
|
2465
|
-
"description": "Optional process identifier used to indicate a business process this dialog belongs to
|
|
2458
|
+
"description": "Optional process identifier used to indicate a business process this dialog belongs to",
|
|
2466
2459
|
"nullable": true,
|
|
2467
2460
|
"type": "string"
|
|
2468
2461
|
},
|
|
@@ -2742,6 +2735,15 @@
|
|
|
2742
2735
|
"GetDialogTransmissionContentDto": {
|
|
2743
2736
|
"additionalProperties": false,
|
|
2744
2737
|
"properties": {
|
|
2738
|
+
"contentReference": {
|
|
2739
|
+
"description": "Front-channel embedded content. Used to dynamically embed content in the frontend from an external URL.\nAllowed media types: application/vnd.dialogporten.frontchannelembed\u002Bjson;type=markdown",
|
|
2740
|
+
"nullable": true,
|
|
2741
|
+
"oneOf": [
|
|
2742
|
+
{
|
|
2743
|
+
"$ref": "#/components/schemas/ContentValueDto"
|
|
2744
|
+
}
|
|
2745
|
+
]
|
|
2746
|
+
},
|
|
2745
2747
|
"summary": {
|
|
2746
2748
|
"description": "The summary of the content.",
|
|
2747
2749
|
"oneOf": [
|
|
@@ -2764,6 +2766,15 @@
|
|
|
2764
2766
|
"GetDialogTransmissionContentDtoSO": {
|
|
2765
2767
|
"additionalProperties": false,
|
|
2766
2768
|
"properties": {
|
|
2769
|
+
"contentReference": {
|
|
2770
|
+
"description": "Front-channel embedded content. Used to dynamically embed content in the frontend from an external URL.\nAllowed media types: application/vnd.dialogporten.frontchannelembed\u002Bjson;type=markdown",
|
|
2771
|
+
"nullable": true,
|
|
2772
|
+
"oneOf": [
|
|
2773
|
+
{
|
|
2774
|
+
"$ref": "#/components/schemas/ContentValueDto"
|
|
2775
|
+
}
|
|
2776
|
+
]
|
|
2777
|
+
},
|
|
2767
2778
|
"summary": {
|
|
2768
2779
|
"description": "The summary of the content.",
|
|
2769
2780
|
"oneOf": [
|
|
@@ -3293,11 +3304,6 @@
|
|
|
3293
3304
|
"format": "guid",
|
|
3294
3305
|
"type": "string"
|
|
3295
3306
|
},
|
|
3296
|
-
"relatedActivityId": {
|
|
3297
|
-
"format": "guid",
|
|
3298
|
-
"nullable": true,
|
|
3299
|
-
"type": "string"
|
|
3300
|
-
},
|
|
3301
3307
|
"seenByEndUserIdHash": {
|
|
3302
3308
|
"nullable": true,
|
|
3303
3309
|
"type": "string"
|
|
@@ -3334,11 +3340,6 @@
|
|
|
3334
3340
|
"format": "guid",
|
|
3335
3341
|
"type": "string"
|
|
3336
3342
|
},
|
|
3337
|
-
"relatedActivityId": {
|
|
3338
|
-
"format": "guid",
|
|
3339
|
-
"nullable": true,
|
|
3340
|
-
"type": "string"
|
|
3341
|
-
},
|
|
3342
3343
|
"transmissionId": {
|
|
3343
3344
|
"format": "guid",
|
|
3344
3345
|
"nullable": true,
|
|
@@ -3465,12 +3466,6 @@
|
|
|
3465
3466
|
}
|
|
3466
3467
|
]
|
|
3467
3468
|
},
|
|
3468
|
-
"relatedActivityId": {
|
|
3469
|
-
"description": "The related activity identifier, if applicable. Must be present in the current dialog.",
|
|
3470
|
-
"format": "guid",
|
|
3471
|
-
"nullable": true,
|
|
3472
|
-
"type": "string"
|
|
3473
|
-
},
|
|
3474
3469
|
"transmissionId": {
|
|
3475
3470
|
"description": "If the activity is related to a particular transmission, this field will contain the transmission identifier.",
|
|
3476
3471
|
"format": "guid",
|
|
@@ -3523,12 +3518,6 @@
|
|
|
3523
3518
|
}
|
|
3524
3519
|
]
|
|
3525
3520
|
},
|
|
3526
|
-
"relatedActivityId": {
|
|
3527
|
-
"description": "The related activity identifier, if applicable. Must be present in the current dialog.",
|
|
3528
|
-
"format": "guid",
|
|
3529
|
-
"nullable": true,
|
|
3530
|
-
"type": "string"
|
|
3531
|
-
},
|
|
3532
3521
|
"transmissionId": {
|
|
3533
3522
|
"description": "If the activity is related to a particular transmission, this field will contain the transmission identifier.",
|
|
3534
3523
|
"format": "guid",
|
|
@@ -3998,16 +3987,19 @@
|
|
|
3998
3987
|
"additionalProperties": false,
|
|
3999
3988
|
"properties": {
|
|
4000
3989
|
"displayName": {
|
|
3990
|
+
"description": "The display name of the attachment that should be used in GUIs.",
|
|
4001
3991
|
"items": {
|
|
4002
3992
|
"$ref": "#/components/schemas/LocalizationDto"
|
|
4003
3993
|
},
|
|
4004
3994
|
"type": "array"
|
|
4005
3995
|
},
|
|
4006
3996
|
"id": {
|
|
3997
|
+
"description": "The unique identifier for the attachment in UUIDv7 format.",
|
|
4007
3998
|
"format": "guid",
|
|
4008
3999
|
"type": "string"
|
|
4009
4000
|
},
|
|
4010
4001
|
"urls": {
|
|
4002
|
+
"description": "The URLs associated with the attachment, each referring to a different representation of the attachment.",
|
|
4011
4003
|
"items": {
|
|
4012
4004
|
"$ref": "#/components/schemas/SearchDialogTransmissionAttachmentUrlDto"
|
|
4013
4005
|
},
|
|
@@ -4020,16 +4012,19 @@
|
|
|
4020
4012
|
"additionalProperties": false,
|
|
4021
4013
|
"properties": {
|
|
4022
4014
|
"displayName": {
|
|
4015
|
+
"description": "The display name of the attachment that should be used in GUIs.",
|
|
4023
4016
|
"items": {
|
|
4024
4017
|
"$ref": "#/components/schemas/LocalizationDto"
|
|
4025
4018
|
},
|
|
4026
4019
|
"type": "array"
|
|
4027
4020
|
},
|
|
4028
4021
|
"id": {
|
|
4022
|
+
"description": "The unique identifier for the attachment in UUIDv7 format.",
|
|
4029
4023
|
"format": "guid",
|
|
4030
4024
|
"type": "string"
|
|
4031
4025
|
},
|
|
4032
4026
|
"urls": {
|
|
4027
|
+
"description": "The URLs associated with the attachment, each referring to a different representation of the attachment.",
|
|
4033
4028
|
"items": {
|
|
4034
4029
|
"$ref": "#/components/schemas/SearchDialogTransmissionAttachmentUrlDtoSO"
|
|
4035
4030
|
},
|
|
@@ -4042,17 +4037,27 @@
|
|
|
4042
4037
|
"additionalProperties": false,
|
|
4043
4038
|
"properties": {
|
|
4044
4039
|
"consumerType": {
|
|
4045
|
-
"
|
|
4040
|
+
"description": "The type of consumer the URL is intended for.",
|
|
4041
|
+
"oneOf": [
|
|
4042
|
+
{
|
|
4043
|
+
"$ref": "#/components/schemas/AttachmentUrlConsumerType_Values"
|
|
4044
|
+
}
|
|
4045
|
+
]
|
|
4046
4046
|
},
|
|
4047
4047
|
"id": {
|
|
4048
|
+
"description": "The unique identifier for the attachment URL in UUIDv7 format.",
|
|
4048
4049
|
"format": "guid",
|
|
4049
4050
|
"type": "string"
|
|
4050
4051
|
},
|
|
4051
4052
|
"mediaType": {
|
|
4053
|
+
"description": "The media type of the attachment.",
|
|
4054
|
+
"example": "application/pdf\napplication/zip",
|
|
4052
4055
|
"nullable": true,
|
|
4053
4056
|
"type": "string"
|
|
4054
4057
|
},
|
|
4055
4058
|
"url": {
|
|
4059
|
+
"description": "The fully qualified URL of the attachment. Will be set to \u0022urn:dialogporten:unauthorized\u0022 if the user is\nnot authorized to access the transmission.",
|
|
4060
|
+
"example": "https://someendpoint.com/someattachment.pdf\nurn:dialogporten:unauthorized",
|
|
4056
4061
|
"format": "uri",
|
|
4057
4062
|
"type": "string"
|
|
4058
4063
|
}
|
|
@@ -4063,17 +4068,27 @@
|
|
|
4063
4068
|
"additionalProperties": false,
|
|
4064
4069
|
"properties": {
|
|
4065
4070
|
"consumerType": {
|
|
4066
|
-
"
|
|
4071
|
+
"description": "The type of consumer the URL is intended for.",
|
|
4072
|
+
"oneOf": [
|
|
4073
|
+
{
|
|
4074
|
+
"$ref": "#/components/schemas/AttachmentUrlConsumerType_Values"
|
|
4075
|
+
}
|
|
4076
|
+
]
|
|
4067
4077
|
},
|
|
4068
4078
|
"id": {
|
|
4079
|
+
"description": "The unique identifier for the attachment URL in UUIDv7 format.",
|
|
4069
4080
|
"format": "guid",
|
|
4070
4081
|
"type": "string"
|
|
4071
4082
|
},
|
|
4072
4083
|
"mediaType": {
|
|
4084
|
+
"description": "The media type of the attachment.",
|
|
4085
|
+
"example": "application/pdf\napplication/zip",
|
|
4073
4086
|
"nullable": true,
|
|
4074
4087
|
"type": "string"
|
|
4075
4088
|
},
|
|
4076
4089
|
"url": {
|
|
4090
|
+
"description": "The fully qualified URL of the attachment. Will be set to \u0022urn:dialogporten:unauthorized\u0022 if the user is\nnot authorized to access the transmission.",
|
|
4091
|
+
"example": "https://someendpoint.com/someattachment.pdf\nurn:dialogporten:unauthorized",
|
|
4077
4092
|
"format": "uri",
|
|
4078
4093
|
"type": "string"
|
|
4079
4094
|
}
|
|
@@ -4083,11 +4098,30 @@
|
|
|
4083
4098
|
"SearchDialogTransmissionContentDto": {
|
|
4084
4099
|
"additionalProperties": false,
|
|
4085
4100
|
"properties": {
|
|
4101
|
+
"contentReference": {
|
|
4102
|
+
"description": "Front-channel embedded content. Used to dynamically embed content in the frontend from an external URL.\nAllowed media types: application/vnd.dialogporten.frontchannelembed\u002Bjson;type=markdown",
|
|
4103
|
+
"nullable": true,
|
|
4104
|
+
"oneOf": [
|
|
4105
|
+
{
|
|
4106
|
+
"$ref": "#/components/schemas/ContentValueDto"
|
|
4107
|
+
}
|
|
4108
|
+
]
|
|
4109
|
+
},
|
|
4086
4110
|
"summary": {
|
|
4087
|
-
"
|
|
4111
|
+
"description": "The summary of the content.",
|
|
4112
|
+
"oneOf": [
|
|
4113
|
+
{
|
|
4114
|
+
"$ref": "#/components/schemas/ContentValueDto"
|
|
4115
|
+
}
|
|
4116
|
+
]
|
|
4088
4117
|
},
|
|
4089
4118
|
"title": {
|
|
4090
|
-
"
|
|
4119
|
+
"description": "The title of the content.",
|
|
4120
|
+
"oneOf": [
|
|
4121
|
+
{
|
|
4122
|
+
"$ref": "#/components/schemas/ContentValueDto"
|
|
4123
|
+
}
|
|
4124
|
+
]
|
|
4091
4125
|
}
|
|
4092
4126
|
},
|
|
4093
4127
|
"type": "object"
|
|
@@ -4095,11 +4129,30 @@
|
|
|
4095
4129
|
"SearchDialogTransmissionContentDtoSO": {
|
|
4096
4130
|
"additionalProperties": false,
|
|
4097
4131
|
"properties": {
|
|
4132
|
+
"contentReference": {
|
|
4133
|
+
"description": "Front-channel embedded content. Used to dynamically embed content in the frontend from an external URL.",
|
|
4134
|
+
"nullable": true,
|
|
4135
|
+
"oneOf": [
|
|
4136
|
+
{
|
|
4137
|
+
"$ref": "#/components/schemas/ContentValueDto"
|
|
4138
|
+
}
|
|
4139
|
+
]
|
|
4140
|
+
},
|
|
4098
4141
|
"summary": {
|
|
4099
|
-
"
|
|
4142
|
+
"description": "The summary of the content.",
|
|
4143
|
+
"oneOf": [
|
|
4144
|
+
{
|
|
4145
|
+
"$ref": "#/components/schemas/ContentValueDto"
|
|
4146
|
+
}
|
|
4147
|
+
]
|
|
4100
4148
|
},
|
|
4101
4149
|
"title": {
|
|
4102
|
-
"
|
|
4150
|
+
"description": "The title of the content.",
|
|
4151
|
+
"oneOf": [
|
|
4152
|
+
{
|
|
4153
|
+
"$ref": "#/components/schemas/ContentValueDto"
|
|
4154
|
+
}
|
|
4155
|
+
]
|
|
4103
4156
|
}
|
|
4104
4157
|
},
|
|
4105
4158
|
"type": "object"
|
|
@@ -4108,49 +4161,72 @@
|
|
|
4108
4161
|
"additionalProperties": false,
|
|
4109
4162
|
"properties": {
|
|
4110
4163
|
"attachments": {
|
|
4164
|
+
"description": "The attachments associated with the transmission.",
|
|
4111
4165
|
"items": {
|
|
4112
4166
|
"$ref": "#/components/schemas/SearchDialogTransmissionAttachmentDto"
|
|
4113
4167
|
},
|
|
4114
4168
|
"type": "array"
|
|
4115
4169
|
},
|
|
4116
4170
|
"authorizationAttribute": {
|
|
4171
|
+
"description": "The authorization attribute associated with the transmission.",
|
|
4117
4172
|
"nullable": true,
|
|
4118
4173
|
"type": "string"
|
|
4119
4174
|
},
|
|
4120
4175
|
"content": {
|
|
4121
|
-
"
|
|
4176
|
+
"description": "The content of the transmission.",
|
|
4177
|
+
"oneOf": [
|
|
4178
|
+
{
|
|
4179
|
+
"$ref": "#/components/schemas/SearchDialogTransmissionContentDto"
|
|
4180
|
+
}
|
|
4181
|
+
]
|
|
4122
4182
|
},
|
|
4123
4183
|
"createdAt": {
|
|
4184
|
+
"description": "The date and time when the transmission was created.",
|
|
4124
4185
|
"format": "date-time",
|
|
4125
4186
|
"type": "string"
|
|
4126
4187
|
},
|
|
4127
4188
|
"deletedAt": {
|
|
4189
|
+
"description": "The date and time when the transmission was deleted, if applicable.",
|
|
4128
4190
|
"format": "date-time",
|
|
4129
4191
|
"nullable": true,
|
|
4130
4192
|
"type": "string"
|
|
4131
4193
|
},
|
|
4132
4194
|
"extendedType": {
|
|
4195
|
+
"description": "The extended type URI for the transmission.",
|
|
4133
4196
|
"format": "uri",
|
|
4134
4197
|
"nullable": true,
|
|
4135
4198
|
"type": "string"
|
|
4136
4199
|
},
|
|
4137
4200
|
"id": {
|
|
4201
|
+
"description": "The unique identifier for the transmission in UUIDv7 format.",
|
|
4138
4202
|
"format": "guid",
|
|
4139
4203
|
"type": "string"
|
|
4140
4204
|
},
|
|
4141
4205
|
"isAuthorized": {
|
|
4206
|
+
"description": "Flag indicating if the authenticated user is authorized for this transmission. If not, embedded content and\nthe attachments will not be available",
|
|
4142
4207
|
"type": "boolean"
|
|
4143
4208
|
},
|
|
4144
4209
|
"relatedTransmissionId": {
|
|
4210
|
+
"description": "The unique identifier for the related transmission, if any.",
|
|
4145
4211
|
"format": "guid",
|
|
4146
4212
|
"nullable": true,
|
|
4147
4213
|
"type": "string"
|
|
4148
4214
|
},
|
|
4149
4215
|
"sender": {
|
|
4150
|
-
"
|
|
4216
|
+
"description": "The sender actor information for the transmission.",
|
|
4217
|
+
"oneOf": [
|
|
4218
|
+
{
|
|
4219
|
+
"$ref": "#/components/schemas/SearchDialogTransmissionSenderActorDto"
|
|
4220
|
+
}
|
|
4221
|
+
]
|
|
4151
4222
|
},
|
|
4152
4223
|
"type": {
|
|
4153
|
-
"
|
|
4224
|
+
"description": "The type of the transmission.",
|
|
4225
|
+
"oneOf": [
|
|
4226
|
+
{
|
|
4227
|
+
"$ref": "#/components/schemas/DialogTransmissionType_Values"
|
|
4228
|
+
}
|
|
4229
|
+
]
|
|
4154
4230
|
}
|
|
4155
4231
|
},
|
|
4156
4232
|
"type": "object"
|
|
@@ -4159,46 +4235,68 @@
|
|
|
4159
4235
|
"additionalProperties": false,
|
|
4160
4236
|
"properties": {
|
|
4161
4237
|
"attachments": {
|
|
4238
|
+
"description": "The attachments associated with the transmission.",
|
|
4162
4239
|
"items": {
|
|
4163
4240
|
"$ref": "#/components/schemas/SearchDialogTransmissionAttachmentDtoSO"
|
|
4164
4241
|
},
|
|
4165
4242
|
"type": "array"
|
|
4166
4243
|
},
|
|
4167
4244
|
"authorizationAttribute": {
|
|
4245
|
+
"description": "The authorization attribute associated with the transmission.",
|
|
4168
4246
|
"nullable": true,
|
|
4169
4247
|
"type": "string"
|
|
4170
4248
|
},
|
|
4171
4249
|
"content": {
|
|
4172
|
-
"
|
|
4250
|
+
"description": "The content of the transmission.",
|
|
4251
|
+
"oneOf": [
|
|
4252
|
+
{
|
|
4253
|
+
"$ref": "#/components/schemas/SearchDialogTransmissionContentDtoSO"
|
|
4254
|
+
}
|
|
4255
|
+
]
|
|
4173
4256
|
},
|
|
4174
4257
|
"createdAt": {
|
|
4258
|
+
"description": "The date and time when the transmission was created.",
|
|
4175
4259
|
"format": "date-time",
|
|
4176
4260
|
"type": "string"
|
|
4177
4261
|
},
|
|
4178
4262
|
"deletedAt": {
|
|
4263
|
+
"description": "The date and time when the transmission was deleted, if applicable.",
|
|
4179
4264
|
"format": "date-time",
|
|
4180
4265
|
"nullable": true,
|
|
4181
4266
|
"type": "string"
|
|
4182
4267
|
},
|
|
4183
4268
|
"extendedType": {
|
|
4269
|
+
"description": "The extended type URI for the transmission.",
|
|
4184
4270
|
"format": "uri",
|
|
4185
4271
|
"nullable": true,
|
|
4186
4272
|
"type": "string"
|
|
4187
4273
|
},
|
|
4188
4274
|
"id": {
|
|
4275
|
+
"description": "The unique identifier for the transmission in UUIDv7 format.",
|
|
4189
4276
|
"format": "guid",
|
|
4190
4277
|
"type": "string"
|
|
4191
4278
|
},
|
|
4192
4279
|
"relatedTransmissionId": {
|
|
4280
|
+
"description": "The unique identifier for the related transmission, if any.",
|
|
4193
4281
|
"format": "guid",
|
|
4194
4282
|
"nullable": true,
|
|
4195
4283
|
"type": "string"
|
|
4196
4284
|
},
|
|
4197
4285
|
"sender": {
|
|
4198
|
-
"
|
|
4286
|
+
"description": "The sender actor information for the transmission.",
|
|
4287
|
+
"oneOf": [
|
|
4288
|
+
{
|
|
4289
|
+
"$ref": "#/components/schemas/SearchDialogTransmissionSenderActorDtoSO"
|
|
4290
|
+
}
|
|
4291
|
+
]
|
|
4199
4292
|
},
|
|
4200
4293
|
"type": {
|
|
4201
|
-
"
|
|
4294
|
+
"description": "The type of the transmission.",
|
|
4295
|
+
"oneOf": [
|
|
4296
|
+
{
|
|
4297
|
+
"$ref": "#/components/schemas/DialogTransmissionType_Values"
|
|
4298
|
+
}
|
|
4299
|
+
]
|
|
4202
4300
|
}
|
|
4203
4301
|
},
|
|
4204
4302
|
"type": "object"
|
|
@@ -4207,15 +4305,23 @@
|
|
|
4207
4305
|
"additionalProperties": false,
|
|
4208
4306
|
"properties": {
|
|
4209
4307
|
"actorId": {
|
|
4308
|
+
"description": "The identifier of the actor.",
|
|
4210
4309
|
"type": "string"
|
|
4211
4310
|
},
|
|
4212
4311
|
"actorName": {
|
|
4312
|
+
"description": "The name of the actor.",
|
|
4213
4313
|
"type": "string"
|
|
4214
4314
|
},
|
|
4215
4315
|
"actorType": {
|
|
4216
|
-
"
|
|
4316
|
+
"description": "The type of the actor.",
|
|
4317
|
+
"oneOf": [
|
|
4318
|
+
{
|
|
4319
|
+
"$ref": "#/components/schemas/ActorType_Values"
|
|
4320
|
+
}
|
|
4321
|
+
]
|
|
4217
4322
|
},
|
|
4218
4323
|
"id": {
|
|
4324
|
+
"description": "The unique identifier for the sender actor in UUIDv7 format.",
|
|
4219
4325
|
"format": "guid",
|
|
4220
4326
|
"type": "string"
|
|
4221
4327
|
}
|
|
@@ -4226,15 +4332,23 @@
|
|
|
4226
4332
|
"additionalProperties": false,
|
|
4227
4333
|
"properties": {
|
|
4228
4334
|
"actorId": {
|
|
4335
|
+
"description": "The identifier of the actor.",
|
|
4229
4336
|
"type": "string"
|
|
4230
4337
|
},
|
|
4231
4338
|
"actorName": {
|
|
4339
|
+
"description": "The name of the actor.",
|
|
4232
4340
|
"type": "string"
|
|
4233
4341
|
},
|
|
4234
4342
|
"actorType": {
|
|
4235
|
-
"
|
|
4343
|
+
"description": "The type of the actor.",
|
|
4344
|
+
"oneOf": [
|
|
4345
|
+
{
|
|
4346
|
+
"$ref": "#/components/schemas/ActorType_Values"
|
|
4347
|
+
}
|
|
4348
|
+
]
|
|
4236
4349
|
},
|
|
4237
4350
|
"id": {
|
|
4351
|
+
"description": "The unique identifier for the sender actor in UUIDv7 format.",
|
|
4238
4352
|
"format": "guid",
|
|
4239
4353
|
"type": "string"
|
|
4240
4354
|
}
|
|
@@ -4328,7 +4442,7 @@
|
|
|
4328
4442
|
]
|
|
4329
4443
|
},
|
|
4330
4444
|
"mainContentReference": {
|
|
4331
|
-
"description": "Front-channel embedded content. Used to dynamically embed content in the frontend from an external URL.",
|
|
4445
|
+
"description": "Front-channel embedded content. Used to dynamically embed content in the frontend from an external URL. Must be HTTPS.",
|
|
4332
4446
|
"nullable": true,
|
|
4333
4447
|
"oneOf": [
|
|
4334
4448
|
{
|
|
@@ -4401,12 +4515,6 @@
|
|
|
4401
4515
|
}
|
|
4402
4516
|
]
|
|
4403
4517
|
},
|
|
4404
|
-
"relatedActivityId": {
|
|
4405
|
-
"description": "The related activity identifier, if applicable. Must be present in the request body.",
|
|
4406
|
-
"format": "guid",
|
|
4407
|
-
"nullable": true,
|
|
4408
|
-
"type": "string"
|
|
4409
|
-
},
|
|
4410
4518
|
"transmissionId": {
|
|
4411
4519
|
"description": "If the activity is related to a particular transmission, this field will contain the transmission identifier.\nMust be present in the request body.",
|
|
4412
4520
|
"format": "guid",
|
|
@@ -4667,6 +4775,15 @@
|
|
|
4667
4775
|
"UpdateDialogDialogTransmissionContentDto": {
|
|
4668
4776
|
"additionalProperties": false,
|
|
4669
4777
|
"properties": {
|
|
4778
|
+
"contentReference": {
|
|
4779
|
+
"description": "Front-channel embedded content. Used to dynamically embed content in the frontend from an external URL. Must be HTTPS.\nAllowed media types: application/vnd.dialogporten.frontchannelembed\u002Bjson;type=markdown",
|
|
4780
|
+
"nullable": true,
|
|
4781
|
+
"oneOf": [
|
|
4782
|
+
{
|
|
4783
|
+
"$ref": "#/components/schemas/ContentValueDto"
|
|
4784
|
+
}
|
|
4785
|
+
]
|
|
4786
|
+
},
|
|
4670
4787
|
"summary": {
|
|
4671
4788
|
"description": "The transmission summary.",
|
|
4672
4789
|
"oneOf": [
|
|
@@ -6439,7 +6556,6 @@
|
|
|
6439
6556
|
"ActorName": null,
|
|
6440
6557
|
"ActorType": 2
|
|
6441
6558
|
},
|
|
6442
|
-
"RelatedActivityId": null,
|
|
6443
6559
|
"TransmissionId": null,
|
|
6444
6560
|
"Type": 3
|
|
6445
6561
|
}
|