@@ -156,6 +156,9 @@ class NotificationDisabledCategory(str, Enum):
156
156
157
157
.. versionchanged:: 5.14
158
158
Added categories :attr:`.SECURITY` and :attr:`.TOPOLOGY`.
159
+
160
+ .. versionchanged:: 5.24
161
+ Added category :attr:`.SCHEMA`.
159
162
"""
160
163
161
164
HINT = "HINT"
@@ -167,6 +170,8 @@ class NotificationDisabledCategory(str, Enum):
167
170
SECURITY = "SECURITY"
168
171
#: Requires server version 5.13 or newer.
169
172
TOPOLOGY = "TOPOLOGY"
173
+ #: Requires server version 5.17 or newer.
174
+ SCHEMA = "SCHEMA"
170
175
171
176
172
177
class NotificationDisabledClassification (str , Enum ):
@@ -188,6 +193,9 @@ class NotificationDisabledClassification(str, Enum):
188
193
:ref:`session-notifications-disabled-classifications-ref`
189
194
190
195
.. versionadded:: 5.22
196
+
197
+ .. versionchanged:: 5.24
198
+ Added classification :attr:`.SCHEMA`.
191
199
"""
192
200
193
201
HINT = "HINT"
@@ -199,6 +207,8 @@ class NotificationDisabledClassification(str, Enum):
199
207
SECURITY = "SECURITY"
200
208
#: Requires server version 5.13 or newer.
201
209
TOPOLOGY = "TOPOLOGY"
210
+ #: Requires server version 5.17 or newer.
211
+ SCHEMA = "SCHEMA"
202
212
203
213
204
214
if t .TYPE_CHECKING :
@@ -214,6 +224,7 @@ class NotificationDisabledClassification(str, Enum):
214
224
"GENERIC" ,
215
225
"SECURITY" ,
216
226
"TOPOLOGY" ,
227
+ "SCHEMA" ,
217
228
],
218
229
]
219
230
__all__ .append ("T_NotificationDisabledCategory" )
@@ -239,6 +250,9 @@ class NotificationCategory(str, Enum):
239
250
240
251
.. versionchanged:: 5.14
241
252
Added categories :attr:`.SECURITY` and :attr:`.TOPOLOGY`.
253
+
254
+ .. versionchanged:: 5.24
255
+ Added category :attr:`.SCHEMA`.
242
256
"""
243
257
244
258
HINT = "HINT"
@@ -249,6 +263,7 @@ class NotificationCategory(str, Enum):
249
263
GENERIC = "GENERIC"
250
264
SECURITY = "SECURITY"
251
265
TOPOLOGY = "TOPOLOGY"
266
+ SCHEMA = "SCHEMA"
252
267
#: Used when the server provides a Category which the driver is unaware of.
253
268
#: This can happen when connecting to a server newer than the driver or
254
269
#: before notification categories were introduced.
@@ -270,6 +285,9 @@ class NotificationClassification(str, Enum):
270
285
.. seealso:: :attr:`.GqlStatusObject.classification`
271
286
272
287
.. versionadded:: 5.22
288
+
289
+ .. versionchanged:: 5.24
290
+ Added classification :attr:`.SCHEMA`.
273
291
"""
274
292
275
293
HINT = "HINT"
@@ -280,6 +298,7 @@ class NotificationClassification(str, Enum):
280
298
GENERIC = "GENERIC"
281
299
SECURITY = "SECURITY"
282
300
TOPOLOGY = "TOPOLOGY"
301
+ SCHEMA = "SCHEMA"
283
302
#: Used when the server provides a Category which the driver is unaware of.
284
303
#: This can happen when connecting to a server newer than the driver or
285
304
#: before notification categories were introduced.
0 commit comments