@digdir/dialogporten-schema 1.72.1-67e26b5 → 1.72.1-6cf8ebf
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 +9 -1
- package/src/index.js +8 -0
- package/swagger.verified.json +41 -1
package/package.json
CHANGED
package/schema.verified.graphql
CHANGED
|
@@ -152,6 +152,10 @@ type Dialog {
|
|
|
152
152
|
dialogToken: String
|
|
153
153
|
status: DialogStatus!
|
|
154
154
|
hasUnopenedContent: Boolean!
|
|
155
|
+
"The number of transmissions sent by the service owner"
|
|
156
|
+
fromServiceOwnerTransmissionsCount: Int!
|
|
157
|
+
"The number of transmissions sent by a party representative"
|
|
158
|
+
fromPartyTransmissionsCount: Int!
|
|
155
159
|
"Indicates if this dialog is intended for API consumption only and should not be shown in frontends aimed at humans"
|
|
156
160
|
isApiOnly: Boolean!
|
|
157
161
|
content: Content!
|
|
@@ -252,6 +256,10 @@ type SearchDialog {
|
|
|
252
256
|
hasUnopenedContent: Boolean!
|
|
253
257
|
"Indicates if this dialog is intended for API consumption only and should not be shown in frontends aimed at humans"
|
|
254
258
|
isApiOnly: Boolean!
|
|
259
|
+
"The number of transmissions sent by the service owner"
|
|
260
|
+
fromServiceOwnerTransmissionsCount: Int!
|
|
261
|
+
"The number of transmissions sent by a party representative"
|
|
262
|
+
fromPartyTransmissionsCount: Int!
|
|
255
263
|
latestActivity: Activity
|
|
256
264
|
content: SearchContent!
|
|
257
265
|
seenSinceLastUpdate: [SeenLog!]!
|
|
@@ -532,4 +540,4 @@ scalar DateTime @specifiedBy(url: "https:\/\/www.graphql-scalars.com\/date-time"
|
|
|
532
540
|
|
|
533
541
|
scalar URL @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc3986")
|
|
534
542
|
|
|
535
|
-
scalar UUID @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc4122")
|
|
543
|
+
scalar UUID @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc4122")
|
package/src/index.js
CHANGED
|
@@ -152,6 +152,10 @@ type Dialog {
|
|
|
152
152
|
dialogToken: String
|
|
153
153
|
status: DialogStatus!
|
|
154
154
|
hasUnopenedContent: Boolean!
|
|
155
|
+
"The number of transmissions sent by the service owner"
|
|
156
|
+
fromServiceOwnerTransmissionsCount: Int!
|
|
157
|
+
"The number of transmissions sent by a party representative"
|
|
158
|
+
fromPartyTransmissionsCount: Int!
|
|
155
159
|
"Indicates if this dialog is intended for API consumption only and should not be shown in frontends aimed at humans"
|
|
156
160
|
isApiOnly: Boolean!
|
|
157
161
|
content: Content!
|
|
@@ -252,6 +256,10 @@ type SearchDialog {
|
|
|
252
256
|
hasUnopenedContent: Boolean!
|
|
253
257
|
"Indicates if this dialog is intended for API consumption only and should not be shown in frontends aimed at humans"
|
|
254
258
|
isApiOnly: Boolean!
|
|
259
|
+
"The number of transmissions sent by the service owner"
|
|
260
|
+
fromServiceOwnerTransmissionsCount: Int!
|
|
261
|
+
"The number of transmissions sent by a party representative"
|
|
262
|
+
fromPartyTransmissionsCount: Int!
|
|
255
263
|
latestActivity: Activity
|
|
256
264
|
content: SearchContent!
|
|
257
265
|
seenSinceLastUpdate: [SeenLog!]!
|
package/swagger.verified.json
CHANGED
|
@@ -618,6 +618,16 @@
|
|
|
618
618
|
"nullable": true,
|
|
619
619
|
"type": "string"
|
|
620
620
|
},
|
|
621
|
+
"fromPartyTransmissionsCount": {
|
|
622
|
+
"description": "The number of transmissions sent by a party representative ",
|
|
623
|
+
"format": "int32",
|
|
624
|
+
"type": "integer"
|
|
625
|
+
},
|
|
626
|
+
"fromServiceOwnerTransmissionsCount": {
|
|
627
|
+
"description": "The number of transmissions sent by a service owner ",
|
|
628
|
+
"format": "int32",
|
|
629
|
+
"type": "integer"
|
|
630
|
+
},
|
|
621
631
|
"guiActions": {
|
|
622
632
|
"description": "The GUI actions associated with the dialog. Should be used in browser-based interactive frontends.",
|
|
623
633
|
"items": {
|
|
@@ -1536,6 +1546,16 @@
|
|
|
1536
1546
|
"nullable": true,
|
|
1537
1547
|
"type": "string"
|
|
1538
1548
|
},
|
|
1549
|
+
"fromPartyTransmissionsCount": {
|
|
1550
|
+
"description": "The number of transmissions sent by a party representative ",
|
|
1551
|
+
"format": "int32",
|
|
1552
|
+
"type": "integer"
|
|
1553
|
+
},
|
|
1554
|
+
"fromServiceOwnerTransmissionsCount": {
|
|
1555
|
+
"description": "The number of transmissions sent by the service owner ",
|
|
1556
|
+
"format": "int32",
|
|
1557
|
+
"type": "integer"
|
|
1558
|
+
},
|
|
1539
1559
|
"guiAttachmentCount": {
|
|
1540
1560
|
"description": "The number of attachments in the dialog made available for browser-based frontends.",
|
|
1541
1561
|
"format": "int32",
|
|
@@ -3767,6 +3787,16 @@
|
|
|
3767
3787
|
"nullable": true,
|
|
3768
3788
|
"type": "string"
|
|
3769
3789
|
},
|
|
3790
|
+
"fromPartyTransmissionsCount": {
|
|
3791
|
+
"description": "The number of transmissions sent by a party representative",
|
|
3792
|
+
"format": "int32",
|
|
3793
|
+
"type": "integer"
|
|
3794
|
+
},
|
|
3795
|
+
"fromServiceOwnerTransmissionsCount": {
|
|
3796
|
+
"description": "The number of transmissions sent by the service owner",
|
|
3797
|
+
"format": "int32",
|
|
3798
|
+
"type": "integer"
|
|
3799
|
+
},
|
|
3770
3800
|
"guiActions": {
|
|
3771
3801
|
"description": "The GUI actions associated with the dialog. Should be used in browser-based interactive frontends.",
|
|
3772
3802
|
"items": {
|
|
@@ -4804,6 +4834,16 @@
|
|
|
4804
4834
|
"nullable": true,
|
|
4805
4835
|
"type": "string"
|
|
4806
4836
|
},
|
|
4837
|
+
"fromPartyTransmissionsCount": {
|
|
4838
|
+
"description": "The number of transmissions sent by a party representative",
|
|
4839
|
+
"format": "int32",
|
|
4840
|
+
"type": "integer"
|
|
4841
|
+
},
|
|
4842
|
+
"fromServiceOwnerTransmissionsCount": {
|
|
4843
|
+
"description": "The number of transmissions sent by a service owner",
|
|
4844
|
+
"format": "int32",
|
|
4845
|
+
"type": "integer"
|
|
4846
|
+
},
|
|
4807
4847
|
"guiAttachmentCount": {
|
|
4808
4848
|
"description": "The number of attachments in the dialog made available for browser-based frontends.",
|
|
4809
4849
|
"format": "int32",
|
|
@@ -8520,4 +8560,4 @@
|
|
|
8520
8560
|
}
|
|
8521
8561
|
}
|
|
8522
8562
|
}
|
|
8523
|
-
}
|
|
8563
|
+
}
|