@digdir/dialogporten-schema 1.70.0-deec550 → 1.71.0-c4a880c
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 +11 -5
- package/src/index.js +11 -5
- package/swagger.verified.json +208 -8
package/package.json
CHANGED
package/schema.verified.graphql
CHANGED
|
@@ -119,7 +119,7 @@ type BulkSetSystemLabelValidationError implements BulkSetSystemLabelError {
|
|
|
119
119
|
|
|
120
120
|
type Content {
|
|
121
121
|
title: ContentValue!
|
|
122
|
-
summary: ContentValue
|
|
122
|
+
summary: ContentValue
|
|
123
123
|
senderName: ContentValue
|
|
124
124
|
additionalInfo: ContentValue
|
|
125
125
|
extendedStatus: ContentValue
|
|
@@ -148,8 +148,10 @@ type Dialog {
|
|
|
148
148
|
expiresAt: DateTime
|
|
149
149
|
createdAt: DateTime!
|
|
150
150
|
updatedAt: DateTime!
|
|
151
|
+
contentUpdatedAt: DateTime!
|
|
151
152
|
dialogToken: String
|
|
152
153
|
status: DialogStatus!
|
|
154
|
+
hasUnopenedContent: Boolean!
|
|
153
155
|
"Indicates if this dialog is intended for API consumption only and should not be shown in frontends aimed at humans"
|
|
154
156
|
isApiOnly: Boolean!
|
|
155
157
|
content: Content!
|
|
@@ -158,6 +160,7 @@ type Dialog {
|
|
|
158
160
|
apiActions: [ApiAction!]!
|
|
159
161
|
activities: [Activity!]!
|
|
160
162
|
seenSinceLastUpdate: [SeenLog!]!
|
|
163
|
+
seenSinceLastContentUpdate: [SeenLog!]!
|
|
161
164
|
transmissions: [Transmission!]!
|
|
162
165
|
endUserContext: EndUserContext!
|
|
163
166
|
}
|
|
@@ -224,7 +227,7 @@ type Queries @authorize(policy: "enduser") {
|
|
|
224
227
|
|
|
225
228
|
type SearchContent {
|
|
226
229
|
title: ContentValue!
|
|
227
|
-
summary: ContentValue
|
|
230
|
+
summary: ContentValue
|
|
228
231
|
senderName: ContentValue
|
|
229
232
|
extendedStatus: ContentValue
|
|
230
233
|
}
|
|
@@ -249,6 +252,7 @@ type SearchDialog {
|
|
|
249
252
|
latestActivity: Activity
|
|
250
253
|
content: SearchContent!
|
|
251
254
|
seenSinceLastUpdate: [SeenLog!]!
|
|
255
|
+
seenSinceLastContentUpdate: [SeenLog!]!
|
|
252
256
|
endUserContext: EndUserContext!
|
|
253
257
|
}
|
|
254
258
|
|
|
@@ -269,6 +273,7 @@ type SearchDialogSortType {
|
|
|
269
273
|
createdAt: OrderDirection
|
|
270
274
|
updatedAt: OrderDirection
|
|
271
275
|
dueAt: OrderDirection
|
|
276
|
+
contentUpdatedAt: OrderDirection
|
|
272
277
|
}
|
|
273
278
|
|
|
274
279
|
type SearchDialogValidationError implements SearchDialogError {
|
|
@@ -320,7 +325,7 @@ type Transmission {
|
|
|
320
325
|
|
|
321
326
|
type TransmissionContent {
|
|
322
327
|
title: ContentValue!
|
|
323
|
-
summary: ContentValue
|
|
328
|
+
summary: ContentValue
|
|
324
329
|
contentReference: ContentValue
|
|
325
330
|
}
|
|
326
331
|
|
|
@@ -380,6 +385,7 @@ input SearchDialogSortTypeInput {
|
|
|
380
385
|
createdAt: OrderDirection
|
|
381
386
|
updatedAt: OrderDirection
|
|
382
387
|
dueAt: OrderDirection
|
|
388
|
+
contentUpdatedAt: OrderDirection
|
|
383
389
|
}
|
|
384
390
|
|
|
385
391
|
input SetSystemLabelInput {
|
|
@@ -450,8 +456,6 @@ enum DialogEventType {
|
|
|
450
456
|
}
|
|
451
457
|
|
|
452
458
|
enum DialogStatus {
|
|
453
|
-
"No explicit status. This is the default."
|
|
454
|
-
NOT_APPLICABLE
|
|
455
459
|
"Started. In a serial process, this is used to indicate that, for example, a form filling is ongoing."
|
|
456
460
|
IN_PROGRESS
|
|
457
461
|
"Used to indicate user-initiated dialogs not yet sent."
|
|
@@ -462,6 +466,8 @@ enum DialogStatus {
|
|
|
462
466
|
REQUIRES_ATTENTION
|
|
463
467
|
"The dialogue was completed. This typically means that the dialogue is moved to a GUI archive or similar."
|
|
464
468
|
COMPLETED
|
|
469
|
+
"No explicit status. This is the default."
|
|
470
|
+
NOT_APPLICABLE
|
|
465
471
|
}
|
|
466
472
|
|
|
467
473
|
enum GuiActionPriority {
|
package/src/index.js
CHANGED
|
@@ -119,7 +119,7 @@ type BulkSetSystemLabelValidationError implements BulkSetSystemLabelError {
|
|
|
119
119
|
|
|
120
120
|
type Content {
|
|
121
121
|
title: ContentValue!
|
|
122
|
-
summary: ContentValue
|
|
122
|
+
summary: ContentValue
|
|
123
123
|
senderName: ContentValue
|
|
124
124
|
additionalInfo: ContentValue
|
|
125
125
|
extendedStatus: ContentValue
|
|
@@ -148,8 +148,10 @@ type Dialog {
|
|
|
148
148
|
expiresAt: DateTime
|
|
149
149
|
createdAt: DateTime!
|
|
150
150
|
updatedAt: DateTime!
|
|
151
|
+
contentUpdatedAt: DateTime!
|
|
151
152
|
dialogToken: String
|
|
152
153
|
status: DialogStatus!
|
|
154
|
+
hasUnopenedContent: Boolean!
|
|
153
155
|
"Indicates if this dialog is intended for API consumption only and should not be shown in frontends aimed at humans"
|
|
154
156
|
isApiOnly: Boolean!
|
|
155
157
|
content: Content!
|
|
@@ -158,6 +160,7 @@ type Dialog {
|
|
|
158
160
|
apiActions: [ApiAction!]!
|
|
159
161
|
activities: [Activity!]!
|
|
160
162
|
seenSinceLastUpdate: [SeenLog!]!
|
|
163
|
+
seenSinceLastContentUpdate: [SeenLog!]!
|
|
161
164
|
transmissions: [Transmission!]!
|
|
162
165
|
endUserContext: EndUserContext!
|
|
163
166
|
}
|
|
@@ -224,7 +227,7 @@ type Queries @authorize(policy: "enduser") {
|
|
|
224
227
|
|
|
225
228
|
type SearchContent {
|
|
226
229
|
title: ContentValue!
|
|
227
|
-
summary: ContentValue
|
|
230
|
+
summary: ContentValue
|
|
228
231
|
senderName: ContentValue
|
|
229
232
|
extendedStatus: ContentValue
|
|
230
233
|
}
|
|
@@ -249,6 +252,7 @@ type SearchDialog {
|
|
|
249
252
|
latestActivity: Activity
|
|
250
253
|
content: SearchContent!
|
|
251
254
|
seenSinceLastUpdate: [SeenLog!]!
|
|
255
|
+
seenSinceLastContentUpdate: [SeenLog!]!
|
|
252
256
|
endUserContext: EndUserContext!
|
|
253
257
|
}
|
|
254
258
|
|
|
@@ -269,6 +273,7 @@ type SearchDialogSortType {
|
|
|
269
273
|
createdAt: OrderDirection
|
|
270
274
|
updatedAt: OrderDirection
|
|
271
275
|
dueAt: OrderDirection
|
|
276
|
+
contentUpdatedAt: OrderDirection
|
|
272
277
|
}
|
|
273
278
|
|
|
274
279
|
type SearchDialogValidationError implements SearchDialogError {
|
|
@@ -320,7 +325,7 @@ type Transmission {
|
|
|
320
325
|
|
|
321
326
|
type TransmissionContent {
|
|
322
327
|
title: ContentValue!
|
|
323
|
-
summary: ContentValue
|
|
328
|
+
summary: ContentValue
|
|
324
329
|
contentReference: ContentValue
|
|
325
330
|
}
|
|
326
331
|
|
|
@@ -380,6 +385,7 @@ input SearchDialogSortTypeInput {
|
|
|
380
385
|
createdAt: OrderDirection
|
|
381
386
|
updatedAt: OrderDirection
|
|
382
387
|
dueAt: OrderDirection
|
|
388
|
+
contentUpdatedAt: OrderDirection
|
|
383
389
|
}
|
|
384
390
|
|
|
385
391
|
input SetSystemLabelInput {
|
|
@@ -450,8 +456,6 @@ enum DialogEventType {
|
|
|
450
456
|
}
|
|
451
457
|
|
|
452
458
|
enum DialogStatus {
|
|
453
|
-
"No explicit status. This is the default."
|
|
454
|
-
NOT_APPLICABLE
|
|
455
459
|
"Started. In a serial process, this is used to indicate that, for example, a form filling is ongoing."
|
|
456
460
|
IN_PROGRESS
|
|
457
461
|
"Used to indicate user-initiated dialogs not yet sent."
|
|
@@ -462,6 +466,8 @@ enum DialogStatus {
|
|
|
462
466
|
REQUIRES_ATTENTION
|
|
463
467
|
"The dialogue was completed. This typically means that the dialogue is moved to a GUI archive or similar."
|
|
464
468
|
COMPLETED
|
|
469
|
+
"No explicit status. This is the default."
|
|
470
|
+
NOT_APPLICABLE
|
|
465
471
|
}
|
|
466
472
|
|
|
467
473
|
enum GuiActionPriority {
|
package/swagger.verified.json
CHANGED
|
@@ -43,21 +43,21 @@
|
|
|
43
43
|
"DialogsEntities_DialogStatus": {
|
|
44
44
|
"description": "",
|
|
45
45
|
"enum": [
|
|
46
|
-
"NotApplicable",
|
|
47
46
|
"InProgress",
|
|
48
47
|
"Draft",
|
|
49
|
-
"Awaiting",
|
|
50
48
|
"RequiresAttention",
|
|
51
|
-
"Completed"
|
|
49
|
+
"Completed",
|
|
50
|
+
"NotApplicable",
|
|
51
|
+
"Awaiting"
|
|
52
52
|
],
|
|
53
53
|
"type": "string",
|
|
54
54
|
"x-enumNames": [
|
|
55
|
-
"NotApplicable",
|
|
56
55
|
"InProgress",
|
|
57
56
|
"Draft",
|
|
58
|
-
"Awaiting",
|
|
59
57
|
"RequiresAttention",
|
|
60
|
-
"Completed"
|
|
58
|
+
"Completed",
|
|
59
|
+
"NotApplicable",
|
|
60
|
+
"Awaiting"
|
|
61
61
|
]
|
|
62
62
|
},
|
|
63
63
|
"DialogsEntitiesActions_DialogGuiActionPriority": {
|
|
@@ -516,6 +516,7 @@
|
|
|
516
516
|
},
|
|
517
517
|
"summary": {
|
|
518
518
|
"description": "A short summary of the dialog and its current state.",
|
|
519
|
+
"nullable": true,
|
|
519
520
|
"oneOf": [
|
|
520
521
|
{
|
|
521
522
|
"$ref": "#/components/schemas/V1CommonContent_ContentValue"
|
|
@@ -568,6 +569,12 @@
|
|
|
568
569
|
}
|
|
569
570
|
]
|
|
570
571
|
},
|
|
572
|
+
"contentUpdatedAt": {
|
|
573
|
+
"description": "The date and time when the dialog content was last updated.",
|
|
574
|
+
"example": "2022-12-31T23:59:59Z",
|
|
575
|
+
"format": "date-time",
|
|
576
|
+
"type": "string"
|
|
577
|
+
},
|
|
571
578
|
"createdAt": {
|
|
572
579
|
"description": "The date and time when the dialog was created.",
|
|
573
580
|
"example": "2022-12-31T23:59:59Z",
|
|
@@ -619,6 +626,10 @@
|
|
|
619
626
|
"nullable": true,
|
|
620
627
|
"type": "array"
|
|
621
628
|
},
|
|
629
|
+
"hasUnopenedContent": {
|
|
630
|
+
"description": "Indicates whether the dialog contains content that has not been viewed or opened by the user yet.",
|
|
631
|
+
"type": "boolean"
|
|
632
|
+
},
|
|
622
633
|
"id": {
|
|
623
634
|
"description": "The unique identifier for the dialog in UUIDv7 format.",
|
|
624
635
|
"example": "01913cd5-784f-7d3b-abef-4c77b1f0972d",
|
|
@@ -661,6 +672,14 @@
|
|
|
661
672
|
"format": "guid",
|
|
662
673
|
"type": "string"
|
|
663
674
|
},
|
|
675
|
+
"seenSinceLastContentUpdate": {
|
|
676
|
+
"description": "The list of seen log entries for the dialog newer than the dialog ContentUpdatedAt date.",
|
|
677
|
+
"items": {
|
|
678
|
+
"$ref": "#/components/schemas/V1EndUserDialogsQueriesGet_DialogSeenLog"
|
|
679
|
+
},
|
|
680
|
+
"nullable": true,
|
|
681
|
+
"type": "array"
|
|
682
|
+
},
|
|
664
683
|
"seenSinceLastUpdate": {
|
|
665
684
|
"description": "The list of seen log entries for the dialog newer than the dialog ChangedAt date.",
|
|
666
685
|
"items": {
|
|
@@ -686,6 +705,16 @@
|
|
|
686
705
|
}
|
|
687
706
|
]
|
|
688
707
|
},
|
|
708
|
+
"systemLabel": {
|
|
709
|
+
"deprecated": true,
|
|
710
|
+
"description": "System defined label used to categorize dialogs.\nThis is obsolete and will only show; Default, Bin or Archive.\nUse SystemLabels on EndUserContext instead.",
|
|
711
|
+
"oneOf": [
|
|
712
|
+
{
|
|
713
|
+
"$ref": "#/components/schemas/DialogEndUserContextsEntities_SystemLabel"
|
|
714
|
+
}
|
|
715
|
+
],
|
|
716
|
+
"x-deprecatedMessage": "Use EndUserContext.SystemLabels instead."
|
|
717
|
+
},
|
|
689
718
|
"transmissions": {
|
|
690
719
|
"description": "The immutable list of transmissions associated with the dialog.",
|
|
691
720
|
"items": {
|
|
@@ -1077,6 +1106,11 @@
|
|
|
1077
1106
|
"description": "Flag indicating if the authenticated user is authorized for this transmission. If not, embedded content and\nthe attachments will not be available.",
|
|
1078
1107
|
"type": "boolean"
|
|
1079
1108
|
},
|
|
1109
|
+
"isOpened": {
|
|
1110
|
+
"description": "Indicates whether the dialog transmission has been opened.",
|
|
1111
|
+
"nullable": true,
|
|
1112
|
+
"type": "boolean"
|
|
1113
|
+
},
|
|
1080
1114
|
"relatedTransmissionId": {
|
|
1081
1115
|
"description": "Reference to any other transmission that this transmission is related to.",
|
|
1082
1116
|
"format": "guid",
|
|
@@ -1169,6 +1203,7 @@
|
|
|
1169
1203
|
},
|
|
1170
1204
|
"summary": {
|
|
1171
1205
|
"description": "The transmission summary.",
|
|
1206
|
+
"nullable": true,
|
|
1172
1207
|
"oneOf": [
|
|
1173
1208
|
{
|
|
1174
1209
|
"$ref": "#/components/schemas/V1CommonContent_ContentValue"
|
|
@@ -1319,6 +1354,7 @@
|
|
|
1319
1354
|
},
|
|
1320
1355
|
"summary": {
|
|
1321
1356
|
"description": "The summary of the content.",
|
|
1357
|
+
"nullable": true,
|
|
1322
1358
|
"oneOf": [
|
|
1323
1359
|
{
|
|
1324
1360
|
"$ref": "#/components/schemas/V1CommonContent_ContentValue"
|
|
@@ -1434,6 +1470,7 @@
|
|
|
1434
1470
|
},
|
|
1435
1471
|
"summary": {
|
|
1436
1472
|
"description": "A short summary of the dialog and its current state.",
|
|
1473
|
+
"nullable": true,
|
|
1437
1474
|
"oneOf": [
|
|
1438
1475
|
{
|
|
1439
1476
|
"$ref": "#/components/schemas/V1CommonContent_ContentValue"
|
|
@@ -1462,6 +1499,12 @@
|
|
|
1462
1499
|
}
|
|
1463
1500
|
]
|
|
1464
1501
|
},
|
|
1502
|
+
"contentUpdatedAt": {
|
|
1503
|
+
"description": "The date and time when the dialog content was last updated.",
|
|
1504
|
+
"example": "2022-12-31T23:59:59Z",
|
|
1505
|
+
"format": "date-time",
|
|
1506
|
+
"type": "string"
|
|
1507
|
+
},
|
|
1465
1508
|
"createdAt": {
|
|
1466
1509
|
"description": "The date and time when the dialog was created.",
|
|
1467
1510
|
"example": "2022-12-31T23:59:59Z",
|
|
@@ -1499,6 +1542,10 @@
|
|
|
1499
1542
|
"nullable": true,
|
|
1500
1543
|
"type": "integer"
|
|
1501
1544
|
},
|
|
1545
|
+
"hasUnopenedContent": {
|
|
1546
|
+
"description": "Indicates whether the dialog contains content that has not been viewed or opened by the user yet.",
|
|
1547
|
+
"type": "boolean"
|
|
1548
|
+
},
|
|
1502
1549
|
"id": {
|
|
1503
1550
|
"description": "The unique identifier for the dialog in UUIDv7 format.",
|
|
1504
1551
|
"example": "01913cd5-784f-7d3b-abef-4c77b1f0972d",
|
|
@@ -1544,6 +1591,14 @@
|
|
|
1544
1591
|
"nullable": true,
|
|
1545
1592
|
"type": "integer"
|
|
1546
1593
|
},
|
|
1594
|
+
"seenSinceLastContentUpdate": {
|
|
1595
|
+
"description": "The list of seen log entries for the dialog newer than the dialog ContentUpdatedAt date.",
|
|
1596
|
+
"items": {
|
|
1597
|
+
"$ref": "#/components/schemas/V1EndUserDialogsQueriesSearch_DialogSeenLog"
|
|
1598
|
+
},
|
|
1599
|
+
"nullable": true,
|
|
1600
|
+
"type": "array"
|
|
1601
|
+
},
|
|
1547
1602
|
"seenSinceLastUpdate": {
|
|
1548
1603
|
"description": "The list of seen log entries for the dialog newer than the dialog ChangedAt date.",
|
|
1549
1604
|
"items": {
|
|
@@ -1569,6 +1624,16 @@
|
|
|
1569
1624
|
}
|
|
1570
1625
|
]
|
|
1571
1626
|
},
|
|
1627
|
+
"systemLabel": {
|
|
1628
|
+
"deprecated": true,
|
|
1629
|
+
"description": "System defined label used to categorize dialogs.\nThis is obsolete and will only show; Default, Bin or Archive.\nUse SystemLabels on EndUserContext instead.",
|
|
1630
|
+
"oneOf": [
|
|
1631
|
+
{
|
|
1632
|
+
"$ref": "#/components/schemas/DialogEndUserContextsEntities_SystemLabel"
|
|
1633
|
+
}
|
|
1634
|
+
],
|
|
1635
|
+
"x-deprecatedMessage": "Use EndUserContext.SystemLabels instead."
|
|
1636
|
+
},
|
|
1572
1637
|
"updatedAt": {
|
|
1573
1638
|
"description": "The date and time when the dialog was last updated.",
|
|
1574
1639
|
"example": "2022-12-31T23:59:59Z",
|
|
@@ -1810,6 +1875,7 @@
|
|
|
1810
1875
|
},
|
|
1811
1876
|
"summary": {
|
|
1812
1877
|
"description": "The summary of the content.",
|
|
1878
|
+
"nullable": true,
|
|
1813
1879
|
"oneOf": [
|
|
1814
1880
|
{
|
|
1815
1881
|
"$ref": "#/components/schemas/V1CommonContent_ContentValue"
|
|
@@ -2008,6 +2074,30 @@
|
|
|
2008
2074
|
},
|
|
2009
2075
|
"type": "object"
|
|
2010
2076
|
},
|
|
2077
|
+
"V1ServiceOwnerCommonDialogStatuses_DialogStatusInput": {
|
|
2078
|
+
"description": "",
|
|
2079
|
+
"enum": [
|
|
2080
|
+
"New",
|
|
2081
|
+
"InProgress",
|
|
2082
|
+
"Draft",
|
|
2083
|
+
"Sent",
|
|
2084
|
+
"RequiresAttention",
|
|
2085
|
+
"Completed",
|
|
2086
|
+
"NotApplicable",
|
|
2087
|
+
"Awaiting"
|
|
2088
|
+
],
|
|
2089
|
+
"type": "string",
|
|
2090
|
+
"x-enumNames": [
|
|
2091
|
+
"New",
|
|
2092
|
+
"InProgress",
|
|
2093
|
+
"Draft",
|
|
2094
|
+
"Sent",
|
|
2095
|
+
"RequiresAttention",
|
|
2096
|
+
"Completed",
|
|
2097
|
+
"NotApplicable",
|
|
2098
|
+
"Awaiting"
|
|
2099
|
+
]
|
|
2100
|
+
},
|
|
2011
2101
|
"V1ServiceOwnerDialogsCommandsCreate_Activity": {
|
|
2012
2102
|
"additionalProperties": false,
|
|
2013
2103
|
"properties": {
|
|
@@ -2265,6 +2355,7 @@
|
|
|
2265
2355
|
},
|
|
2266
2356
|
"summary": {
|
|
2267
2357
|
"description": "A short summary of the dialog and its current state.\nSupported media types: text/plain",
|
|
2358
|
+
"nullable": true,
|
|
2268
2359
|
"oneOf": [
|
|
2269
2360
|
{
|
|
2270
2361
|
"$ref": "#/components/schemas/V1CommonContent_ContentValue"
|
|
@@ -2420,7 +2511,7 @@
|
|
|
2420
2511
|
"description": "The aggregated status of the dialog.",
|
|
2421
2512
|
"oneOf": [
|
|
2422
2513
|
{
|
|
2423
|
-
"$ref": "#/components/schemas/
|
|
2514
|
+
"$ref": "#/components/schemas/V1ServiceOwnerCommonDialogStatuses_DialogStatusInput"
|
|
2424
2515
|
}
|
|
2425
2516
|
]
|
|
2426
2517
|
},
|
|
@@ -2709,6 +2800,7 @@
|
|
|
2709
2800
|
},
|
|
2710
2801
|
"summary": {
|
|
2711
2802
|
"description": "The transmission summary.",
|
|
2803
|
+
"nullable": true,
|
|
2712
2804
|
"oneOf": [
|
|
2713
2805
|
{
|
|
2714
2806
|
"$ref": "#/components/schemas/V1CommonContent_ContentValue"
|
|
@@ -3127,6 +3219,7 @@
|
|
|
3127
3219
|
},
|
|
3128
3220
|
"summary": {
|
|
3129
3221
|
"description": "A short summary of the dialog and its current state. Must be text/plain.",
|
|
3222
|
+
"nullable": true,
|
|
3130
3223
|
"oneOf": [
|
|
3131
3224
|
{
|
|
3132
3225
|
"$ref": "#/components/schemas/V1CommonContent_ContentValue"
|
|
@@ -3244,7 +3337,7 @@
|
|
|
3244
3337
|
"description": "The aggregated status of the dialog.",
|
|
3245
3338
|
"oneOf": [
|
|
3246
3339
|
{
|
|
3247
|
-
"$ref": "#/components/schemas/
|
|
3340
|
+
"$ref": "#/components/schemas/V1ServiceOwnerCommonDialogStatuses_DialogStatusInput"
|
|
3248
3341
|
}
|
|
3249
3342
|
]
|
|
3250
3343
|
},
|
|
@@ -3493,6 +3586,7 @@
|
|
|
3493
3586
|
},
|
|
3494
3587
|
"summary": {
|
|
3495
3588
|
"description": "The transmission summary.",
|
|
3589
|
+
"nullable": true,
|
|
3496
3590
|
"oneOf": [
|
|
3497
3591
|
{
|
|
3498
3592
|
"$ref": "#/components/schemas/V1CommonContent_ContentValue"
|
|
@@ -3569,6 +3663,7 @@
|
|
|
3569
3663
|
},
|
|
3570
3664
|
"summary": {
|
|
3571
3665
|
"description": "A short summary of the dialog and its current state.",
|
|
3666
|
+
"nullable": true,
|
|
3572
3667
|
"oneOf": [
|
|
3573
3668
|
{
|
|
3574
3669
|
"$ref": "#/components/schemas/V1CommonContent_ContentValue"
|
|
@@ -3622,6 +3717,12 @@
|
|
|
3622
3717
|
}
|
|
3623
3718
|
]
|
|
3624
3719
|
},
|
|
3720
|
+
"contentUpdatedAt": {
|
|
3721
|
+
"description": "The date and time when the dialog content was last updated.",
|
|
3722
|
+
"example": "2022-12-31T23:59:59Z",
|
|
3723
|
+
"format": "date-time",
|
|
3724
|
+
"type": "string"
|
|
3725
|
+
},
|
|
3625
3726
|
"createdAt": {
|
|
3626
3727
|
"description": "The date and time when the dialog was created.",
|
|
3627
3728
|
"example": "2022-12-31T23:59:59Z",
|
|
@@ -3674,6 +3775,10 @@
|
|
|
3674
3775
|
"nullable": true,
|
|
3675
3776
|
"type": "array"
|
|
3676
3777
|
},
|
|
3778
|
+
"hasUnopenedContent": {
|
|
3779
|
+
"description": "Indicates whether the dialog contains content that has not been viewed or opened by the user yet.",
|
|
3780
|
+
"type": "boolean"
|
|
3781
|
+
},
|
|
3677
3782
|
"id": {
|
|
3678
3783
|
"description": "The unique identifier for the dialog in UUIDv7 format.",
|
|
3679
3784
|
"example": "01913cd5-784f-7d3b-abef-4c77b1f0972d",
|
|
@@ -3729,6 +3834,14 @@
|
|
|
3729
3834
|
"nullable": true,
|
|
3730
3835
|
"type": "array"
|
|
3731
3836
|
},
|
|
3837
|
+
"seenSinceLastContentUpdate": {
|
|
3838
|
+
"description": "The list of seen log entries for the dialog newer than the dialog ContentUpdatedAt date.",
|
|
3839
|
+
"items": {
|
|
3840
|
+
"$ref": "#/components/schemas/V1ServiceOwnerDialogsQueriesGet_DialogSeenLog"
|
|
3841
|
+
},
|
|
3842
|
+
"nullable": true,
|
|
3843
|
+
"type": "array"
|
|
3844
|
+
},
|
|
3732
3845
|
"seenSinceLastUpdate": {
|
|
3733
3846
|
"description": "The list of seen log entries for the dialog newer than the dialog ChangedAt date.",
|
|
3734
3847
|
"items": {
|
|
@@ -3762,6 +3875,16 @@
|
|
|
3762
3875
|
}
|
|
3763
3876
|
]
|
|
3764
3877
|
},
|
|
3878
|
+
"systemLabel": {
|
|
3879
|
+
"deprecated": true,
|
|
3880
|
+
"description": "System defined label used to categorize dialogs.\nThis is obsolete and will only show; Default, Bin or Archive.\nUse SystemLabels on EndUserContext instead.",
|
|
3881
|
+
"oneOf": [
|
|
3882
|
+
{
|
|
3883
|
+
"$ref": "#/components/schemas/DialogEndUserContextsEntities_SystemLabel"
|
|
3884
|
+
}
|
|
3885
|
+
],
|
|
3886
|
+
"x-deprecatedMessage": "Use EndUserContext.SystemLabels instead."
|
|
3887
|
+
},
|
|
3765
3888
|
"transmissions": {
|
|
3766
3889
|
"description": "The immutable list of transmissions associated with the dialog.",
|
|
3767
3890
|
"items": {
|
|
@@ -4196,6 +4319,11 @@
|
|
|
4196
4319
|
"nullable": true,
|
|
4197
4320
|
"type": "boolean"
|
|
4198
4321
|
},
|
|
4322
|
+
"isOpened": {
|
|
4323
|
+
"description": "Indicates whether the dialog transmission has been opened.",
|
|
4324
|
+
"nullable": true,
|
|
4325
|
+
"type": "boolean"
|
|
4326
|
+
},
|
|
4199
4327
|
"relatedTransmissionId": {
|
|
4200
4328
|
"description": "Reference to any other transmission that this transmission is related to.",
|
|
4201
4329
|
"format": "guid",
|
|
@@ -4288,6 +4416,7 @@
|
|
|
4288
4416
|
},
|
|
4289
4417
|
"summary": {
|
|
4290
4418
|
"description": "The transmission summary.",
|
|
4419
|
+
"nullable": true,
|
|
4291
4420
|
"oneOf": [
|
|
4292
4421
|
{
|
|
4293
4422
|
"$ref": "#/components/schemas/V1CommonContent_ContentValue"
|
|
@@ -4451,6 +4580,7 @@
|
|
|
4451
4580
|
},
|
|
4452
4581
|
"summary": {
|
|
4453
4582
|
"description": "The summary of the content.",
|
|
4583
|
+
"nullable": true,
|
|
4454
4584
|
"oneOf": [
|
|
4455
4585
|
{
|
|
4456
4586
|
"$ref": "#/components/schemas/V1CommonContent_ContentValue"
|
|
@@ -4601,6 +4731,7 @@
|
|
|
4601
4731
|
},
|
|
4602
4732
|
"summary": {
|
|
4603
4733
|
"description": "A short summary of the dialog and its current state.",
|
|
4734
|
+
"nullable": true,
|
|
4604
4735
|
"oneOf": [
|
|
4605
4736
|
{
|
|
4606
4737
|
"$ref": "#/components/schemas/V1CommonContent_ContentValue"
|
|
@@ -4630,6 +4761,12 @@
|
|
|
4630
4761
|
}
|
|
4631
4762
|
]
|
|
4632
4763
|
},
|
|
4764
|
+
"contentUpdatedAt": {
|
|
4765
|
+
"description": "The date and time when the dialog content was last updated.",
|
|
4766
|
+
"example": "2022-12-31T23:59:59Z",
|
|
4767
|
+
"format": "date-time",
|
|
4768
|
+
"type": "string"
|
|
4769
|
+
},
|
|
4633
4770
|
"createdAt": {
|
|
4634
4771
|
"description": "The date and time when the dialog was created.",
|
|
4635
4772
|
"example": "2022-12-31T23:59:59Z",
|
|
@@ -4673,6 +4810,10 @@
|
|
|
4673
4810
|
"nullable": true,
|
|
4674
4811
|
"type": "integer"
|
|
4675
4812
|
},
|
|
4813
|
+
"hasUnopenedContent": {
|
|
4814
|
+
"description": "Indicates whether the dialog contains content that has not been viewed or opened by the user yet.",
|
|
4815
|
+
"type": "boolean"
|
|
4816
|
+
},
|
|
4676
4817
|
"id": {
|
|
4677
4818
|
"description": "The unique identifier for the dialog in UUIDv7 format.",
|
|
4678
4819
|
"example": "01913cd5-784f-7d3b-abef-4c77b1f0972d",
|
|
@@ -4724,6 +4865,14 @@
|
|
|
4724
4865
|
"format": "guid",
|
|
4725
4866
|
"type": "string"
|
|
4726
4867
|
},
|
|
4868
|
+
"seenSinceLastContentUpdate": {
|
|
4869
|
+
"description": "The list of seen log entries for the dialog newer than the dialog ContentUpdatedAt date.",
|
|
4870
|
+
"items": {
|
|
4871
|
+
"$ref": "#/components/schemas/V1ServiceOwnerDialogsQueriesSearch_DialogSeenLog"
|
|
4872
|
+
},
|
|
4873
|
+
"nullable": true,
|
|
4874
|
+
"type": "array"
|
|
4875
|
+
},
|
|
4727
4876
|
"seenSinceLastUpdate": {
|
|
4728
4877
|
"description": "The list of seen log entries for the dialog newer than the dialog ChangedAt date.",
|
|
4729
4878
|
"items": {
|
|
@@ -4757,6 +4906,16 @@
|
|
|
4757
4906
|
}
|
|
4758
4907
|
]
|
|
4759
4908
|
},
|
|
4909
|
+
"systemLabel": {
|
|
4910
|
+
"deprecated": true,
|
|
4911
|
+
"description": "System defined label used to categorize dialogs.\nThis is obsolete and will only show; Default, Bin or Archive.\nUse SystemLabels on EndUserContext instead.",
|
|
4912
|
+
"oneOf": [
|
|
4913
|
+
{
|
|
4914
|
+
"$ref": "#/components/schemas/DialogEndUserContextsEntities_SystemLabel"
|
|
4915
|
+
}
|
|
4916
|
+
],
|
|
4917
|
+
"x-deprecatedMessage": "Use EndUserContext.SystemLabels instead."
|
|
4918
|
+
},
|
|
4760
4919
|
"updatedAt": {
|
|
4761
4920
|
"description": "The date and time when the dialog was last updated.",
|
|
4762
4921
|
"example": "2022-12-31T23:59:59Z",
|
|
@@ -5033,6 +5192,7 @@
|
|
|
5033
5192
|
},
|
|
5034
5193
|
"summary": {
|
|
5035
5194
|
"description": "The summary of the content.",
|
|
5195
|
+
"nullable": true,
|
|
5036
5196
|
"oneOf": [
|
|
5037
5197
|
{
|
|
5038
5198
|
"$ref": "#/components/schemas/V1CommonContent_ContentValue"
|
|
@@ -5439,6 +5599,26 @@
|
|
|
5439
5599
|
"type": "string"
|
|
5440
5600
|
}
|
|
5441
5601
|
},
|
|
5602
|
+
{
|
|
5603
|
+
"description": "Only return dialogs with content updated after this date",
|
|
5604
|
+
"in": "query",
|
|
5605
|
+
"name": "contentUpdatedAfter",
|
|
5606
|
+
"schema": {
|
|
5607
|
+
"format": "date-time",
|
|
5608
|
+
"nullable": true,
|
|
5609
|
+
"type": "string"
|
|
5610
|
+
}
|
|
5611
|
+
},
|
|
5612
|
+
{
|
|
5613
|
+
"description": "Only return dialogs with content updated before this date",
|
|
5614
|
+
"in": "query",
|
|
5615
|
+
"name": "contentUpdatedBefore",
|
|
5616
|
+
"schema": {
|
|
5617
|
+
"format": "date-time",
|
|
5618
|
+
"nullable": true,
|
|
5619
|
+
"type": "string"
|
|
5620
|
+
}
|
|
5621
|
+
},
|
|
5442
5622
|
{
|
|
5443
5623
|
"description": "Only return dialogs with due date after this date",
|
|
5444
5624
|
"in": "query",
|
|
@@ -6419,6 +6599,26 @@
|
|
|
6419
6599
|
"type": "string"
|
|
6420
6600
|
}
|
|
6421
6601
|
},
|
|
6602
|
+
{
|
|
6603
|
+
"description": "Only return dialogs with content updated after this date",
|
|
6604
|
+
"in": "query",
|
|
6605
|
+
"name": "contentUpdatedAfter",
|
|
6606
|
+
"schema": {
|
|
6607
|
+
"format": "date-time",
|
|
6608
|
+
"nullable": true,
|
|
6609
|
+
"type": "string"
|
|
6610
|
+
}
|
|
6611
|
+
},
|
|
6612
|
+
{
|
|
6613
|
+
"description": "Only return dialogs with content updated before this date",
|
|
6614
|
+
"in": "query",
|
|
6615
|
+
"name": "contentUpdatedBefore",
|
|
6616
|
+
"schema": {
|
|
6617
|
+
"format": "date-time",
|
|
6618
|
+
"nullable": true,
|
|
6619
|
+
"type": "string"
|
|
6620
|
+
}
|
|
6621
|
+
},
|
|
6422
6622
|
{
|
|
6423
6623
|
"description": "Only return dialogs with due date after this date",
|
|
6424
6624
|
"in": "query",
|