@digdir/dialogporten-schema 1.99.0 → 1.100.1-038ac38
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 +8 -0
- package/src/index.js +8 -0
- package/swagger.verified.json +58 -1
package/package.json
CHANGED
package/schema.verified.graphql
CHANGED
|
@@ -128,6 +128,10 @@ type BulkSetSystemLabelConcurrencyError implements BulkSetSystemLabelError {
|
|
|
128
128
|
message: String!
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
+
type BulkSetSystemLabelConflictError implements BulkSetSystemLabelError {
|
|
132
|
+
message: String!
|
|
133
|
+
}
|
|
134
|
+
|
|
131
135
|
type BulkSetSystemLabelDomainError implements BulkSetSystemLabelError {
|
|
132
136
|
message: String!
|
|
133
137
|
}
|
|
@@ -414,6 +418,10 @@ type SetSystemLabelConcurrencyError implements SetSystemLabelError {
|
|
|
414
418
|
message: String!
|
|
415
419
|
}
|
|
416
420
|
|
|
421
|
+
type SetSystemLabelConflictError implements SetSystemLabelError {
|
|
422
|
+
message: String!
|
|
423
|
+
}
|
|
424
|
+
|
|
417
425
|
type SetSystemLabelDomainError implements SetSystemLabelError {
|
|
418
426
|
message: String!
|
|
419
427
|
}
|
package/src/index.js
CHANGED
|
@@ -128,6 +128,10 @@ type BulkSetSystemLabelConcurrencyError implements BulkSetSystemLabelError {
|
|
|
128
128
|
message: String!
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
+
type BulkSetSystemLabelConflictError implements BulkSetSystemLabelError {
|
|
132
|
+
message: String!
|
|
133
|
+
}
|
|
134
|
+
|
|
131
135
|
type BulkSetSystemLabelDomainError implements BulkSetSystemLabelError {
|
|
132
136
|
message: String!
|
|
133
137
|
}
|
|
@@ -414,6 +418,10 @@ type SetSystemLabelConcurrencyError implements SetSystemLabelError {
|
|
|
414
418
|
message: String!
|
|
415
419
|
}
|
|
416
420
|
|
|
421
|
+
type SetSystemLabelConflictError implements SetSystemLabelError {
|
|
422
|
+
message: String!
|
|
423
|
+
}
|
|
424
|
+
|
|
417
425
|
type SetSystemLabelDomainError implements SetSystemLabelError {
|
|
418
426
|
message: String!
|
|
419
427
|
}
|
package/swagger.verified.json
CHANGED
|
@@ -6746,6 +6746,9 @@
|
|
|
6746
6746
|
},
|
|
6747
6747
|
"description": "The given dialog ID was not found."
|
|
6748
6748
|
},
|
|
6749
|
+
"409": {
|
|
6750
|
+
"description": "Conflict occurred while processing the request."
|
|
6751
|
+
},
|
|
6749
6752
|
"410": {
|
|
6750
6753
|
"description": "Entity with the given key(s) is removed."
|
|
6751
6754
|
},
|
|
@@ -7191,6 +7194,9 @@
|
|
|
7191
7194
|
"403": {
|
|
7192
7195
|
"description": "Unauthorized to update the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
7193
7196
|
},
|
|
7197
|
+
"409": {
|
|
7198
|
+
"description": "Conflict occurred while processing the request."
|
|
7199
|
+
},
|
|
7194
7200
|
"412": {
|
|
7195
7201
|
"content": {
|
|
7196
7202
|
"application/problem\u002Bjson": {
|
|
@@ -7803,6 +7809,9 @@
|
|
|
7803
7809
|
},
|
|
7804
7810
|
"description": "The given dialog ID was not found."
|
|
7805
7811
|
},
|
|
7812
|
+
"409": {
|
|
7813
|
+
"description": "Conflict occurred while processing the request."
|
|
7814
|
+
},
|
|
7806
7815
|
"410": {
|
|
7807
7816
|
"description": "Entity with the given key(s) is removed."
|
|
7808
7817
|
},
|
|
@@ -7965,6 +7974,14 @@
|
|
|
7965
7974
|
},
|
|
7966
7975
|
"type": "array"
|
|
7967
7976
|
}
|
|
7977
|
+
},
|
|
7978
|
+
"application/json-patch\u002Bjson": {
|
|
7979
|
+
"schema": {
|
|
7980
|
+
"items": {
|
|
7981
|
+
"$ref": "#/components/schemas/JsonPatchOperations_Operation"
|
|
7982
|
+
},
|
|
7983
|
+
"type": "array"
|
|
7984
|
+
}
|
|
7968
7985
|
}
|
|
7969
7986
|
},
|
|
7970
7987
|
"required": true,
|
|
@@ -8010,6 +8027,16 @@
|
|
|
8010
8027
|
},
|
|
8011
8028
|
"description": "The given dialog ID was not found or is deleted"
|
|
8012
8029
|
},
|
|
8030
|
+
"409": {
|
|
8031
|
+
"content": {
|
|
8032
|
+
"application/json": {
|
|
8033
|
+
"schema": {
|
|
8034
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
8035
|
+
}
|
|
8036
|
+
}
|
|
8037
|
+
},
|
|
8038
|
+
"description": ""
|
|
8039
|
+
},
|
|
8013
8040
|
"410": {
|
|
8014
8041
|
"content": {
|
|
8015
8042
|
"application/json": {
|
|
@@ -8145,6 +8172,9 @@
|
|
|
8145
8172
|
},
|
|
8146
8173
|
"description": "The given dialog ID was not found."
|
|
8147
8174
|
},
|
|
8175
|
+
"409": {
|
|
8176
|
+
"description": "Conflict occurred while processing the request."
|
|
8177
|
+
},
|
|
8148
8178
|
"410": {
|
|
8149
8179
|
"description": "Entity with the given key(s) is removed."
|
|
8150
8180
|
},
|
|
@@ -8264,6 +8294,9 @@
|
|
|
8264
8294
|
},
|
|
8265
8295
|
"description": "The given dialog ID was not found."
|
|
8266
8296
|
},
|
|
8297
|
+
"409": {
|
|
8298
|
+
"description": "Conflict occurred while processing the request."
|
|
8299
|
+
},
|
|
8267
8300
|
"410": {
|
|
8268
8301
|
"description": "Entity with the given key(s) is removed."
|
|
8269
8302
|
},
|
|
@@ -8354,6 +8387,9 @@
|
|
|
8354
8387
|
},
|
|
8355
8388
|
"description": "The given dialog ID was not found."
|
|
8356
8389
|
},
|
|
8390
|
+
"409": {
|
|
8391
|
+
"description": "Conflict occurred while processing the request."
|
|
8392
|
+
},
|
|
8357
8393
|
"412": {
|
|
8358
8394
|
"content": {
|
|
8359
8395
|
"application/problem\u002Bjson": {
|
|
@@ -8441,6 +8477,9 @@
|
|
|
8441
8477
|
},
|
|
8442
8478
|
"description": "The given dialog ID was not found."
|
|
8443
8479
|
},
|
|
8480
|
+
"409": {
|
|
8481
|
+
"description": "Conflict occurred while processing the request."
|
|
8482
|
+
},
|
|
8444
8483
|
"412": {
|
|
8445
8484
|
"content": {
|
|
8446
8485
|
"application/problem\u002Bjson": {
|
|
@@ -8745,6 +8784,9 @@
|
|
|
8745
8784
|
},
|
|
8746
8785
|
"description": "The given dialog ID was not found."
|
|
8747
8786
|
},
|
|
8787
|
+
"409": {
|
|
8788
|
+
"description": "Conflict occurred while processing the request."
|
|
8789
|
+
},
|
|
8748
8790
|
"410": {
|
|
8749
8791
|
"description": "Entity with the given key(s) is removed."
|
|
8750
8792
|
},
|
|
@@ -9018,6 +9060,9 @@
|
|
|
9018
9060
|
"403": {
|
|
9019
9061
|
"description": "Forbidden"
|
|
9020
9062
|
},
|
|
9063
|
+
"409": {
|
|
9064
|
+
"description": "Conflict occurred while processing the request."
|
|
9065
|
+
},
|
|
9021
9066
|
"412": {
|
|
9022
9067
|
"content": {
|
|
9023
9068
|
"application/problem\u002Bjson": {
|
|
@@ -9122,6 +9167,9 @@
|
|
|
9122
9167
|
},
|
|
9123
9168
|
"description": "The given dialog or service owner label was not found."
|
|
9124
9169
|
},
|
|
9170
|
+
"409": {
|
|
9171
|
+
"description": "Conflict occurred while processing the request."
|
|
9172
|
+
},
|
|
9125
9173
|
"412": {
|
|
9126
9174
|
"content": {
|
|
9127
9175
|
"application/problem\u002Bjson": {
|
|
@@ -9249,6 +9297,9 @@
|
|
|
9249
9297
|
},
|
|
9250
9298
|
"description": "The given dialog ID was not found."
|
|
9251
9299
|
},
|
|
9300
|
+
"409": {
|
|
9301
|
+
"description": "Conflict occurred while processing the request."
|
|
9302
|
+
},
|
|
9252
9303
|
"410": {
|
|
9253
9304
|
"description": "Entity with the given key(s) is removed."
|
|
9254
9305
|
},
|
|
@@ -9639,6 +9690,9 @@
|
|
|
9639
9690
|
},
|
|
9640
9691
|
"description": "The given dialog ID was not found."
|
|
9641
9692
|
},
|
|
9693
|
+
"409": {
|
|
9694
|
+
"description": "Conflict occurred while processing the request."
|
|
9695
|
+
},
|
|
9642
9696
|
"410": {
|
|
9643
9697
|
"description": "Entity with the given key(s) is removed."
|
|
9644
9698
|
},
|
|
@@ -9944,6 +9998,9 @@
|
|
|
9944
9998
|
"403": {
|
|
9945
9999
|
"description": "Unauthorized to update the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
9946
10000
|
},
|
|
10001
|
+
"409": {
|
|
10002
|
+
"description": "Conflict occurred while processing the request."
|
|
10003
|
+
},
|
|
9947
10004
|
"412": {
|
|
9948
10005
|
"content": {
|
|
9949
10006
|
"application/problem\u002Bjson": {
|
|
@@ -9998,4 +10055,4 @@
|
|
|
9998
10055
|
}
|
|
9999
10056
|
}
|
|
10000
10057
|
}
|
|
10001
|
-
}
|
|
10058
|
+
}
|