@adminide-stack/extension-api 8.0.1-alpha.0 → 8.1.1-alpha.0
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.
@@ -29,6 +29,10 @@ var IGraphqlCallType;
|
|
29
29
|
IGraphqlCallType["Mutation"] = "mutation";
|
30
30
|
IGraphqlCallType["Query"] = "query";
|
31
31
|
})(IGraphqlCallType || (IGraphqlCallType = {}));
|
32
|
+
var IMailTemplateId;
|
33
|
+
(function (IMailTemplateId) {
|
34
|
+
IMailTemplateId["Dummy"] = "dummy";
|
35
|
+
})(IMailTemplateId || (IMailTemplateId = {}));
|
32
36
|
var IMarkupKind;
|
33
37
|
(function (IMarkupKind) {
|
34
38
|
IMarkupKind["Markdown"] = "markdown";
|
@@ -67,6 +71,10 @@ var IMenuId;
|
|
67
71
|
IMenuId["ViewItemContext"] = "ViewItemContext";
|
68
72
|
IMenuId["ViewTitle"] = "ViewTitle";
|
69
73
|
})(IMenuId || (IMenuId = {}));
|
74
|
+
var IMoleculerCronServiceName;
|
75
|
+
(function (IMoleculerCronServiceName) {
|
76
|
+
IMoleculerCronServiceName["Dummy"] = "dummy";
|
77
|
+
})(IMoleculerCronServiceName || (IMoleculerCronServiceName = {}));
|
70
78
|
/** All Moleculer Topic names are extended from this. */
|
71
79
|
var IMoleculerServiceName;
|
72
80
|
(function (IMoleculerServiceName) {
|
@@ -97,7 +105,40 @@ var ISortEnum;
|
|
97
105
|
ISortEnum["Asc"] = "ASC";
|
98
106
|
ISortEnum["Desc"] = "DESC";
|
99
107
|
})(ISortEnum || (ISortEnum = {}));
|
100
|
-
const CopyDocument = {
|
108
|
+
const CopyDocument = {
|
109
|
+
kind: 'Document',
|
110
|
+
definitions: [
|
111
|
+
{
|
112
|
+
kind: 'OperationDefinition',
|
113
|
+
operation: 'mutation',
|
114
|
+
name: { kind: 'Name', value: 'Copy' },
|
115
|
+
variableDefinitions: [
|
116
|
+
{
|
117
|
+
kind: 'VariableDefinition',
|
118
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'value' } },
|
119
|
+
type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } },
|
120
|
+
},
|
121
|
+
],
|
122
|
+
selectionSet: {
|
123
|
+
kind: 'SelectionSet',
|
124
|
+
selections: [
|
125
|
+
{
|
126
|
+
kind: 'Field',
|
127
|
+
name: { kind: 'Name', value: 'copy' },
|
128
|
+
arguments: [
|
129
|
+
{
|
130
|
+
kind: 'Argument',
|
131
|
+
name: { kind: 'Name', value: 'value' },
|
132
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'value' } },
|
133
|
+
},
|
134
|
+
],
|
135
|
+
directives: [{ kind: 'Directive', name: { kind: 'Name', value: 'client' } }],
|
136
|
+
},
|
137
|
+
],
|
138
|
+
},
|
139
|
+
},
|
140
|
+
],
|
141
|
+
};
|
101
142
|
/**
|
102
143
|
* __useCopyMutation__
|
103
144
|
*
|
@@ -119,7 +160,40 @@ function useCopyMutation(baseOptions) {
|
|
119
160
|
const options = { ...defaultOptions, ...baseOptions };
|
120
161
|
return Apollo.useMutation(CopyDocument, options);
|
121
162
|
}
|
122
|
-
const RunMenuActionDocument = {
|
163
|
+
const RunMenuActionDocument = {
|
164
|
+
kind: 'Document',
|
165
|
+
definitions: [
|
166
|
+
{
|
167
|
+
kind: 'OperationDefinition',
|
168
|
+
operation: 'mutation',
|
169
|
+
name: { kind: 'Name', value: 'RunMenuAction' },
|
170
|
+
variableDefinitions: [
|
171
|
+
{
|
172
|
+
kind: 'VariableDefinition',
|
173
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'argument' } },
|
174
|
+
type: { kind: 'NamedType', name: { kind: 'Name', value: 'ContributionActionRunInput' } },
|
175
|
+
},
|
176
|
+
],
|
177
|
+
selectionSet: {
|
178
|
+
kind: 'SelectionSet',
|
179
|
+
selections: [
|
180
|
+
{
|
181
|
+
kind: 'Field',
|
182
|
+
name: { kind: 'Name', value: 'runMenuAction' },
|
183
|
+
arguments: [
|
184
|
+
{
|
185
|
+
kind: 'Argument',
|
186
|
+
name: { kind: 'Name', value: 'argument' },
|
187
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'argument' } },
|
188
|
+
},
|
189
|
+
],
|
190
|
+
directives: [{ kind: 'Directive', name: { kind: 'Name', value: 'client' } }],
|
191
|
+
},
|
192
|
+
],
|
193
|
+
},
|
194
|
+
},
|
195
|
+
],
|
196
|
+
};
|
123
197
|
/**
|
124
198
|
* __useRunMenuActionMutation__
|
125
199
|
*
|
@@ -141,7 +215,26 @@ function useRunMenuActionMutation(baseOptions) {
|
|
141
215
|
const options = { ...defaultOptions, ...baseOptions };
|
142
216
|
return Apollo.useMutation(RunMenuActionDocument, options);
|
143
217
|
}
|
144
|
-
const HideContextMenuDocument = {
|
218
|
+
const HideContextMenuDocument = {
|
219
|
+
kind: 'Document',
|
220
|
+
definitions: [
|
221
|
+
{
|
222
|
+
kind: 'OperationDefinition',
|
223
|
+
operation: 'mutation',
|
224
|
+
name: { kind: 'Name', value: 'HideContextMenu' },
|
225
|
+
selectionSet: {
|
226
|
+
kind: 'SelectionSet',
|
227
|
+
selections: [
|
228
|
+
{
|
229
|
+
kind: 'Field',
|
230
|
+
name: { kind: 'Name', value: 'hideContextMenu' },
|
231
|
+
directives: [{ kind: 'Directive', name: { kind: 'Name', value: 'client' } }],
|
232
|
+
},
|
233
|
+
],
|
234
|
+
},
|
235
|
+
},
|
236
|
+
],
|
237
|
+
};
|
145
238
|
/**
|
146
239
|
* __useHideContextMenuMutation__
|
147
240
|
*
|
@@ -162,7 +255,40 @@ function useHideContextMenuMutation(baseOptions) {
|
|
162
255
|
const options = { ...defaultOptions, ...baseOptions };
|
163
256
|
return Apollo.useMutation(HideContextMenuDocument, options);
|
164
257
|
}
|
165
|
-
const ShowContextMenuDocument = {
|
258
|
+
const ShowContextMenuDocument = {
|
259
|
+
kind: 'Document',
|
260
|
+
definitions: [
|
261
|
+
{
|
262
|
+
kind: 'OperationDefinition',
|
263
|
+
operation: 'mutation',
|
264
|
+
name: { kind: 'Name', value: 'ShowContextMenu' },
|
265
|
+
variableDefinitions: [
|
266
|
+
{
|
267
|
+
kind: 'VariableDefinition',
|
268
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'delegate' } },
|
269
|
+
type: { kind: 'NamedType', name: { kind: 'Name', value: 'ContextMenuInput' } },
|
270
|
+
},
|
271
|
+
],
|
272
|
+
selectionSet: {
|
273
|
+
kind: 'SelectionSet',
|
274
|
+
selections: [
|
275
|
+
{
|
276
|
+
kind: 'Field',
|
277
|
+
name: { kind: 'Name', value: 'showContextMenu' },
|
278
|
+
arguments: [
|
279
|
+
{
|
280
|
+
kind: 'Argument',
|
281
|
+
name: { kind: 'Name', value: 'delegate' },
|
282
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'delegate' } },
|
283
|
+
},
|
284
|
+
],
|
285
|
+
directives: [{ kind: 'Directive', name: { kind: 'Name', value: 'client' } }],
|
286
|
+
},
|
287
|
+
],
|
288
|
+
},
|
289
|
+
},
|
290
|
+
],
|
291
|
+
};
|
166
292
|
/**
|
167
293
|
* __useShowContextMenuMutation__
|
168
294
|
*
|
@@ -184,7 +310,46 @@ function useShowContextMenuMutation(baseOptions) {
|
|
184
310
|
const options = { ...defaultOptions, ...baseOptions };
|
185
311
|
return Apollo.useMutation(ShowContextMenuDocument, options);
|
186
312
|
}
|
187
|
-
const InstallDocument = {
|
313
|
+
const InstallDocument = {
|
314
|
+
kind: 'Document',
|
315
|
+
definitions: [
|
316
|
+
{
|
317
|
+
kind: 'OperationDefinition',
|
318
|
+
operation: 'mutation',
|
319
|
+
name: { kind: 'Name', value: 'install' },
|
320
|
+
variableDefinitions: [
|
321
|
+
{
|
322
|
+
kind: 'VariableDefinition',
|
323
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'vsix' } },
|
324
|
+
type: { kind: 'NonNullType', type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } } },
|
325
|
+
},
|
326
|
+
],
|
327
|
+
selectionSet: {
|
328
|
+
kind: 'SelectionSet',
|
329
|
+
selections: [
|
330
|
+
{
|
331
|
+
kind: 'Field',
|
332
|
+
name: { kind: 'Name', value: 'install' },
|
333
|
+
arguments: [
|
334
|
+
{
|
335
|
+
kind: 'Argument',
|
336
|
+
name: { kind: 'Name', value: 'vsix' },
|
337
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'vsix' } },
|
338
|
+
},
|
339
|
+
],
|
340
|
+
selectionSet: {
|
341
|
+
kind: 'SelectionSet',
|
342
|
+
selections: [
|
343
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
344
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'uuid' } },
|
345
|
+
],
|
346
|
+
},
|
347
|
+
},
|
348
|
+
],
|
349
|
+
},
|
350
|
+
},
|
351
|
+
],
|
352
|
+
};
|
188
353
|
/**
|
189
354
|
* __useInstallMutation__
|
190
355
|
*
|
@@ -206,7 +371,40 @@ function useInstallMutation(baseOptions) {
|
|
206
371
|
const options = { ...defaultOptions, ...baseOptions };
|
207
372
|
return Apollo.useMutation(InstallDocument, options);
|
208
373
|
}
|
209
|
-
const ProviderDefinitionDocument = {
|
374
|
+
const ProviderDefinitionDocument = {
|
375
|
+
kind: 'Document',
|
376
|
+
definitions: [
|
377
|
+
{
|
378
|
+
kind: 'OperationDefinition',
|
379
|
+
operation: 'mutation',
|
380
|
+
name: { kind: 'Name', value: 'providerDefinition' },
|
381
|
+
variableDefinitions: [
|
382
|
+
{
|
383
|
+
kind: 'VariableDefinition',
|
384
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'params' } },
|
385
|
+
type: { kind: 'NamedType', name: { kind: 'Name', value: 'TextDocumentPositionParamsInput' } },
|
386
|
+
},
|
387
|
+
],
|
388
|
+
selectionSet: {
|
389
|
+
kind: 'SelectionSet',
|
390
|
+
selections: [
|
391
|
+
{
|
392
|
+
kind: 'Field',
|
393
|
+
name: { kind: 'Name', value: 'hoverProviderDefinition' },
|
394
|
+
arguments: [
|
395
|
+
{
|
396
|
+
kind: 'Argument',
|
397
|
+
name: { kind: 'Name', value: 'params' },
|
398
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'params' } },
|
399
|
+
},
|
400
|
+
],
|
401
|
+
directives: [{ kind: 'Directive', name: { kind: 'Name', value: 'client' } }],
|
402
|
+
},
|
403
|
+
],
|
404
|
+
},
|
405
|
+
},
|
406
|
+
],
|
407
|
+
};
|
210
408
|
/**
|
211
409
|
* __useProviderDefinitionMutation__
|
212
410
|
*
|
@@ -228,7 +426,39 @@ function useProviderDefinitionMutation(baseOptions) {
|
|
228
426
|
const options = { ...defaultOptions, ...baseOptions };
|
229
427
|
return Apollo.useMutation(ProviderDefinitionDocument, options);
|
230
428
|
}
|
231
|
-
const RemoveDocument = {
|
429
|
+
const RemoveDocument = {
|
430
|
+
kind: 'Document',
|
431
|
+
definitions: [
|
432
|
+
{
|
433
|
+
kind: 'OperationDefinition',
|
434
|
+
operation: 'mutation',
|
435
|
+
name: { kind: 'Name', value: 'remove' },
|
436
|
+
variableDefinitions: [
|
437
|
+
{
|
438
|
+
kind: 'VariableDefinition',
|
439
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'id' } },
|
440
|
+
type: { kind: 'NonNullType', type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } } },
|
441
|
+
},
|
442
|
+
],
|
443
|
+
selectionSet: {
|
444
|
+
kind: 'SelectionSet',
|
445
|
+
selections: [
|
446
|
+
{
|
447
|
+
kind: 'Field',
|
448
|
+
name: { kind: 'Name', value: 'removeExtension' },
|
449
|
+
arguments: [
|
450
|
+
{
|
451
|
+
kind: 'Argument',
|
452
|
+
name: { kind: 'Name', value: 'id' },
|
453
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'id' } },
|
454
|
+
},
|
455
|
+
],
|
456
|
+
},
|
457
|
+
],
|
458
|
+
},
|
459
|
+
},
|
460
|
+
],
|
461
|
+
};
|
232
462
|
/**
|
233
463
|
* __useRemoveMutation__
|
234
464
|
*
|
@@ -250,7 +480,70 @@ function useRemoveMutation(baseOptions) {
|
|
250
480
|
const options = { ...defaultOptions, ...baseOptions };
|
251
481
|
return Apollo.useMutation(RemoveDocument, options);
|
252
482
|
}
|
253
|
-
const ContextMenuDocument = {
|
483
|
+
const ContextMenuDocument = {
|
484
|
+
kind: 'Document',
|
485
|
+
definitions: [
|
486
|
+
{
|
487
|
+
kind: 'OperationDefinition',
|
488
|
+
operation: 'query',
|
489
|
+
name: { kind: 'Name', value: 'ContextMenu' },
|
490
|
+
selectionSet: {
|
491
|
+
kind: 'SelectionSet',
|
492
|
+
selections: [
|
493
|
+
{
|
494
|
+
kind: 'Field',
|
495
|
+
name: { kind: 'Name', value: 'contextMenu' },
|
496
|
+
directives: [{ kind: 'Directive', name: { kind: 'Name', value: 'client' } }],
|
497
|
+
selectionSet: {
|
498
|
+
kind: 'SelectionSet',
|
499
|
+
selections: [
|
500
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
501
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'isShow' } },
|
502
|
+
{
|
503
|
+
kind: 'Field',
|
504
|
+
name: { kind: 'Name', value: 'anchor' },
|
505
|
+
selectionSet: {
|
506
|
+
kind: 'SelectionSet',
|
507
|
+
selections: [
|
508
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'x' } },
|
509
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'y' } },
|
510
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'height' } },
|
511
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'width' } },
|
512
|
+
],
|
513
|
+
},
|
514
|
+
},
|
515
|
+
{
|
516
|
+
kind: 'Field',
|
517
|
+
name: { kind: 'Name', value: 'menuItems' },
|
518
|
+
selectionSet: {
|
519
|
+
kind: 'SelectionSet',
|
520
|
+
selections: [
|
521
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
522
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'label' } },
|
523
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'enabled' } },
|
524
|
+
{
|
525
|
+
kind: 'Field',
|
526
|
+
name: { kind: 'Name', value: 'run' },
|
527
|
+
selectionSet: {
|
528
|
+
kind: 'SelectionSet',
|
529
|
+
selections: [
|
530
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'type' } },
|
531
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'document' } },
|
532
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'variables' } },
|
533
|
+
],
|
534
|
+
},
|
535
|
+
},
|
536
|
+
],
|
537
|
+
},
|
538
|
+
},
|
539
|
+
],
|
540
|
+
},
|
541
|
+
},
|
542
|
+
],
|
543
|
+
},
|
544
|
+
},
|
545
|
+
],
|
546
|
+
};
|
254
547
|
/**
|
255
548
|
* __useContextMenuQuery__
|
256
549
|
*
|
@@ -278,7 +571,88 @@ function useContextMenuSuspenseQuery(baseOptions) {
|
|
278
571
|
const options = { ...defaultOptions, ...baseOptions };
|
279
572
|
return Apollo.useSuspenseQuery(ContextMenuDocument, options);
|
280
573
|
}
|
281
|
-
const GalleryExtensionDocument = {
|
574
|
+
const GalleryExtensionDocument = {
|
575
|
+
kind: 'Document',
|
576
|
+
definitions: [
|
577
|
+
{
|
578
|
+
kind: 'OperationDefinition',
|
579
|
+
operation: 'query',
|
580
|
+
name: { kind: 'Name', value: 'galleryExtension' },
|
581
|
+
variableDefinitions: [
|
582
|
+
{
|
583
|
+
kind: 'VariableDefinition',
|
584
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'extensionID' } },
|
585
|
+
type: { kind: 'NonNullType', type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } } },
|
586
|
+
},
|
587
|
+
],
|
588
|
+
selectionSet: {
|
589
|
+
kind: 'SelectionSet',
|
590
|
+
selections: [
|
591
|
+
{
|
592
|
+
kind: 'Field',
|
593
|
+
name: { kind: 'Name', value: 'galleryExtension' },
|
594
|
+
arguments: [
|
595
|
+
{
|
596
|
+
kind: 'Argument',
|
597
|
+
name: { kind: 'Name', value: 'extensionID' },
|
598
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'extensionID' } },
|
599
|
+
},
|
600
|
+
],
|
601
|
+
selectionSet: {
|
602
|
+
kind: 'SelectionSet',
|
603
|
+
selections: [
|
604
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
605
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
606
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'icon' } },
|
607
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'version' } },
|
608
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'description' } },
|
609
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'publisher' } },
|
610
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'installCount' } },
|
611
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'publisherDisplayName' } },
|
612
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'rating' } },
|
613
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ratingCount' } },
|
614
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'displayName' } },
|
615
|
+
{
|
616
|
+
kind: 'Field',
|
617
|
+
name: { kind: 'Name', value: 'assets' },
|
618
|
+
selectionSet: {
|
619
|
+
kind: 'SelectionSet',
|
620
|
+
selections: [
|
621
|
+
{
|
622
|
+
kind: 'Field',
|
623
|
+
name: { kind: 'Name', value: 'download' },
|
624
|
+
selectionSet: {
|
625
|
+
kind: 'SelectionSet',
|
626
|
+
selections: [
|
627
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'uri' } },
|
628
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'fallbackUri' } },
|
629
|
+
],
|
630
|
+
},
|
631
|
+
},
|
632
|
+
],
|
633
|
+
},
|
634
|
+
},
|
635
|
+
{
|
636
|
+
kind: 'Field',
|
637
|
+
name: { kind: 'Name', value: 'resources' },
|
638
|
+
selectionSet: {
|
639
|
+
kind: 'SelectionSet',
|
640
|
+
selections: [
|
641
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'icon' } },
|
642
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'readme' } },
|
643
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'manifest' } },
|
644
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'changelog' } },
|
645
|
+
],
|
646
|
+
},
|
647
|
+
},
|
648
|
+
],
|
649
|
+
},
|
650
|
+
},
|
651
|
+
],
|
652
|
+
},
|
653
|
+
},
|
654
|
+
],
|
655
|
+
};
|
282
656
|
/**
|
283
657
|
* __useGalleryExtensionQuery__
|
284
658
|
*
|
@@ -307,7 +681,92 @@ function useGalleryExtensionSuspenseQuery(baseOptions) {
|
|
307
681
|
const options = { ...defaultOptions, ...baseOptions };
|
308
682
|
return Apollo.useSuspenseQuery(GalleryExtensionDocument, options);
|
309
683
|
}
|
310
|
-
const ExtensionsByLimitDocument = {
|
684
|
+
const ExtensionsByLimitDocument = {
|
685
|
+
kind: 'Document',
|
686
|
+
definitions: [
|
687
|
+
{
|
688
|
+
kind: 'OperationDefinition',
|
689
|
+
operation: 'query',
|
690
|
+
name: { kind: 'Name', value: 'ExtensionsByLimit' },
|
691
|
+
variableDefinitions: [
|
692
|
+
{
|
693
|
+
kind: 'VariableDefinition',
|
694
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'first' } },
|
695
|
+
type: { kind: 'NonNullType', type: { kind: 'NamedType', name: { kind: 'Name', value: 'Int' } } },
|
696
|
+
},
|
697
|
+
{
|
698
|
+
kind: 'VariableDefinition',
|
699
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'prioritizeExtensionIDs' } },
|
700
|
+
type: {
|
701
|
+
kind: 'NonNullType',
|
702
|
+
type: {
|
703
|
+
kind: 'ListType',
|
704
|
+
type: {
|
705
|
+
kind: 'NonNullType',
|
706
|
+
type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } },
|
707
|
+
},
|
708
|
+
},
|
709
|
+
},
|
710
|
+
},
|
711
|
+
],
|
712
|
+
selectionSet: {
|
713
|
+
kind: 'SelectionSet',
|
714
|
+
selections: [
|
715
|
+
{
|
716
|
+
kind: 'Field',
|
717
|
+
name: { kind: 'Name', value: 'extensions' },
|
718
|
+
arguments: [
|
719
|
+
{
|
720
|
+
kind: 'Argument',
|
721
|
+
name: { kind: 'Name', value: 'first' },
|
722
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'first' } },
|
723
|
+
},
|
724
|
+
{
|
725
|
+
kind: 'Argument',
|
726
|
+
name: { kind: 'Name', value: 'prioritizeExtensionIDs' },
|
727
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'prioritizeExtensionIDs' } },
|
728
|
+
},
|
729
|
+
],
|
730
|
+
selectionSet: {
|
731
|
+
kind: 'SelectionSet',
|
732
|
+
selections: [
|
733
|
+
{
|
734
|
+
kind: 'Field',
|
735
|
+
name: { kind: 'Name', value: 'nodes' },
|
736
|
+
selectionSet: {
|
737
|
+
kind: 'SelectionSet',
|
738
|
+
selections: [
|
739
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
740
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'url' } },
|
741
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'extensionID' } },
|
742
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'viewerCanAdminister' } },
|
743
|
+
{
|
744
|
+
kind: 'Field',
|
745
|
+
name: { kind: 'Name', value: 'manifest' },
|
746
|
+
selectionSet: {
|
747
|
+
kind: 'SelectionSet',
|
748
|
+
selections: [
|
749
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'bundleURL' } },
|
750
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'raw' } },
|
751
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
752
|
+
{
|
753
|
+
kind: 'Field',
|
754
|
+
name: { kind: 'Name', value: 'activationEvents' },
|
755
|
+
},
|
756
|
+
],
|
757
|
+
},
|
758
|
+
},
|
759
|
+
],
|
760
|
+
},
|
761
|
+
},
|
762
|
+
],
|
763
|
+
},
|
764
|
+
},
|
765
|
+
],
|
766
|
+
},
|
767
|
+
},
|
768
|
+
],
|
769
|
+
};
|
311
770
|
/**
|
312
771
|
* __useExtensionsByLimitQuery__
|
313
772
|
*
|
@@ -337,7 +796,91 @@ function useExtensionsByLimitSuspenseQuery(baseOptions) {
|
|
337
796
|
const options = { ...defaultOptions, ...baseOptions };
|
338
797
|
return Apollo.useSuspenseQuery(ExtensionsByLimitDocument, options);
|
339
798
|
}
|
340
|
-
const GalleryDocument = {
|
799
|
+
const GalleryDocument = {
|
800
|
+
kind: 'Document',
|
801
|
+
definitions: [
|
802
|
+
{
|
803
|
+
kind: 'OperationDefinition',
|
804
|
+
operation: 'query',
|
805
|
+
name: { kind: 'Name', value: 'gallery' },
|
806
|
+
variableDefinitions: [
|
807
|
+
{
|
808
|
+
kind: 'VariableDefinition',
|
809
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'query' } },
|
810
|
+
type: { kind: 'NamedType', name: { kind: 'Name', value: 'GalleryQueryInput' } },
|
811
|
+
},
|
812
|
+
],
|
813
|
+
selectionSet: {
|
814
|
+
kind: 'SelectionSet',
|
815
|
+
selections: [
|
816
|
+
{
|
817
|
+
kind: 'Field',
|
818
|
+
name: { kind: 'Name', value: 'gallery' },
|
819
|
+
arguments: [
|
820
|
+
{
|
821
|
+
kind: 'Argument',
|
822
|
+
name: { kind: 'Name', value: 'query' },
|
823
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'query' } },
|
824
|
+
},
|
825
|
+
],
|
826
|
+
selectionSet: {
|
827
|
+
kind: 'SelectionSet',
|
828
|
+
selections: [
|
829
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'page' } },
|
830
|
+
{
|
831
|
+
kind: 'Field',
|
832
|
+
name: { kind: 'Name', value: 'firstPage' },
|
833
|
+
selectionSet: {
|
834
|
+
kind: 'SelectionSet',
|
835
|
+
selections: [
|
836
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
837
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
838
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'icon' } },
|
839
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'version' } },
|
840
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'description' } },
|
841
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'publisher' } },
|
842
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'installCount' } },
|
843
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'publisherDisplayName' } },
|
844
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'rating' } },
|
845
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ratingCount' } },
|
846
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'displayName' } },
|
847
|
+
{
|
848
|
+
kind: 'Field',
|
849
|
+
name: { kind: 'Name', value: 'assets' },
|
850
|
+
selectionSet: {
|
851
|
+
kind: 'SelectionSet',
|
852
|
+
selections: [
|
853
|
+
{
|
854
|
+
kind: 'Field',
|
855
|
+
name: { kind: 'Name', value: 'download' },
|
856
|
+
selectionSet: {
|
857
|
+
kind: 'SelectionSet',
|
858
|
+
selections: [
|
859
|
+
{
|
860
|
+
kind: 'Field',
|
861
|
+
name: { kind: 'Name', value: 'uri' },
|
862
|
+
},
|
863
|
+
{
|
864
|
+
kind: 'Field',
|
865
|
+
name: { kind: 'Name', value: 'fallbackUri' },
|
866
|
+
},
|
867
|
+
],
|
868
|
+
},
|
869
|
+
},
|
870
|
+
],
|
871
|
+
},
|
872
|
+
},
|
873
|
+
],
|
874
|
+
},
|
875
|
+
},
|
876
|
+
],
|
877
|
+
},
|
878
|
+
},
|
879
|
+
],
|
880
|
+
},
|
881
|
+
},
|
882
|
+
],
|
883
|
+
};
|
341
884
|
/**
|
342
885
|
* __useGalleryQuery__
|
343
886
|
*
|
@@ -366,7 +909,80 @@ function useGallerySuspenseQuery(baseOptions) {
|
|
366
909
|
const options = { ...defaultOptions, ...baseOptions };
|
367
910
|
return Apollo.useSuspenseQuery(GalleryDocument, options);
|
368
911
|
}
|
369
|
-
const InstalledExtensionsDocument = {
|
912
|
+
const InstalledExtensionsDocument = {
|
913
|
+
kind: 'Document',
|
914
|
+
definitions: [
|
915
|
+
{
|
916
|
+
kind: 'OperationDefinition',
|
917
|
+
operation: 'query',
|
918
|
+
name: { kind: 'Name', value: 'installedExtensions' },
|
919
|
+
selectionSet: {
|
920
|
+
kind: 'SelectionSet',
|
921
|
+
selections: [
|
922
|
+
{
|
923
|
+
kind: 'Field',
|
924
|
+
name: { kind: 'Name', value: 'installed' },
|
925
|
+
selectionSet: {
|
926
|
+
kind: 'SelectionSet',
|
927
|
+
selections: [
|
928
|
+
{
|
929
|
+
kind: 'Field',
|
930
|
+
name: { kind: 'Name', value: 'identifier' },
|
931
|
+
selectionSet: {
|
932
|
+
kind: 'SelectionSet',
|
933
|
+
selections: [
|
934
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
935
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'uuid' } },
|
936
|
+
],
|
937
|
+
},
|
938
|
+
},
|
939
|
+
{
|
940
|
+
kind: 'Field',
|
941
|
+
name: { kind: 'Name', value: 'galleryIdentifier' },
|
942
|
+
selectionSet: {
|
943
|
+
kind: 'SelectionSet',
|
944
|
+
selections: [
|
945
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
946
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'uuid' } },
|
947
|
+
],
|
948
|
+
},
|
949
|
+
},
|
950
|
+
{
|
951
|
+
kind: 'Field',
|
952
|
+
name: { kind: 'Name', value: 'extension' },
|
953
|
+
selectionSet: {
|
954
|
+
kind: 'SelectionSet',
|
955
|
+
selections: [
|
956
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
957
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
958
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'icon' } },
|
959
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'displayName' } },
|
960
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'installCount' } },
|
961
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'description' } },
|
962
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'version' } },
|
963
|
+
{
|
964
|
+
kind: 'Field',
|
965
|
+
name: { kind: 'Name', value: 'identifier' },
|
966
|
+
selectionSet: {
|
967
|
+
kind: 'SelectionSet',
|
968
|
+
selections: [
|
969
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
970
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'uuid' } },
|
971
|
+
],
|
972
|
+
},
|
973
|
+
},
|
974
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'publisherDisplayName' } },
|
975
|
+
],
|
976
|
+
},
|
977
|
+
},
|
978
|
+
],
|
979
|
+
},
|
980
|
+
},
|
981
|
+
],
|
982
|
+
},
|
983
|
+
},
|
984
|
+
],
|
985
|
+
};
|
370
986
|
/**
|
371
987
|
* __useInstalledExtensionsQuery__
|
372
988
|
*
|
@@ -394,7 +1010,187 @@ function useInstalledExtensionsSuspenseQuery(baseOptions) {
|
|
394
1010
|
const options = { ...defaultOptions, ...baseOptions };
|
395
1011
|
return Apollo.useSuspenseQuery(InstalledExtensionsDocument, options);
|
396
1012
|
}
|
397
|
-
const NotificationsDocument = {
|
1013
|
+
const NotificationsDocument = {
|
1014
|
+
kind: 'Document',
|
1015
|
+
definitions: [
|
1016
|
+
{
|
1017
|
+
kind: 'OperationDefinition',
|
1018
|
+
operation: 'query',
|
1019
|
+
name: { kind: 'Name', value: 'Notifications' },
|
1020
|
+
selectionSet: {
|
1021
|
+
kind: 'SelectionSet',
|
1022
|
+
selections: [
|
1023
|
+
{
|
1024
|
+
kind: 'Field',
|
1025
|
+
name: { kind: 'Name', value: 'notifications' },
|
1026
|
+
directives: [{ kind: 'Directive', name: { kind: 'Name', value: 'client' } }],
|
1027
|
+
selectionSet: {
|
1028
|
+
kind: 'SelectionSet',
|
1029
|
+
selections: [
|
1030
|
+
{
|
1031
|
+
kind: 'Field',
|
1032
|
+
name: { kind: 'Name', value: 'notifications' },
|
1033
|
+
selectionSet: {
|
1034
|
+
kind: 'SelectionSet',
|
1035
|
+
selections: [
|
1036
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'index' } },
|
1037
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'severity' } },
|
1038
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'message' } },
|
1039
|
+
{
|
1040
|
+
kind: 'Field',
|
1041
|
+
name: { kind: 'Name', value: 'actions' },
|
1042
|
+
selectionSet: {
|
1043
|
+
kind: 'SelectionSet',
|
1044
|
+
selections: [
|
1045
|
+
{
|
1046
|
+
kind: 'Field',
|
1047
|
+
name: { kind: 'Name', value: 'primary' },
|
1048
|
+
selectionSet: {
|
1049
|
+
kind: 'SelectionSet',
|
1050
|
+
selections: [
|
1051
|
+
{
|
1052
|
+
kind: 'Field',
|
1053
|
+
name: { kind: 'Name', value: 'id' },
|
1054
|
+
},
|
1055
|
+
{
|
1056
|
+
kind: 'Field',
|
1057
|
+
name: { kind: 'Name', value: 'label' },
|
1058
|
+
},
|
1059
|
+
{
|
1060
|
+
kind: 'Field',
|
1061
|
+
name: { kind: 'Name', value: 'tooltip' },
|
1062
|
+
},
|
1063
|
+
{
|
1064
|
+
kind: 'Field',
|
1065
|
+
name: { kind: 'Name', value: 'class' },
|
1066
|
+
},
|
1067
|
+
{
|
1068
|
+
kind: 'Field',
|
1069
|
+
name: { kind: 'Name', value: 'enabled' },
|
1070
|
+
},
|
1071
|
+
{
|
1072
|
+
kind: 'Field',
|
1073
|
+
name: { kind: 'Name', value: 'checked' },
|
1074
|
+
},
|
1075
|
+
{
|
1076
|
+
kind: 'Field',
|
1077
|
+
name: { kind: 'Name', value: 'radio' },
|
1078
|
+
},
|
1079
|
+
{
|
1080
|
+
kind: 'Field',
|
1081
|
+
name: { kind: 'Name', value: 'run' },
|
1082
|
+
selectionSet: {
|
1083
|
+
kind: 'SelectionSet',
|
1084
|
+
selections: [
|
1085
|
+
{
|
1086
|
+
kind: 'Field',
|
1087
|
+
name: {
|
1088
|
+
kind: 'Name',
|
1089
|
+
value: 'type',
|
1090
|
+
},
|
1091
|
+
},
|
1092
|
+
{
|
1093
|
+
kind: 'Field',
|
1094
|
+
name: {
|
1095
|
+
kind: 'Name',
|
1096
|
+
value: 'document',
|
1097
|
+
},
|
1098
|
+
},
|
1099
|
+
{
|
1100
|
+
kind: 'Field',
|
1101
|
+
name: {
|
1102
|
+
kind: 'Name',
|
1103
|
+
value: 'variables',
|
1104
|
+
},
|
1105
|
+
},
|
1106
|
+
],
|
1107
|
+
},
|
1108
|
+
},
|
1109
|
+
],
|
1110
|
+
},
|
1111
|
+
},
|
1112
|
+
{
|
1113
|
+
kind: 'Field',
|
1114
|
+
name: { kind: 'Name', value: 'secondary' },
|
1115
|
+
selectionSet: {
|
1116
|
+
kind: 'SelectionSet',
|
1117
|
+
selections: [
|
1118
|
+
{
|
1119
|
+
kind: 'Field',
|
1120
|
+
name: { kind: 'Name', value: 'id' },
|
1121
|
+
},
|
1122
|
+
{
|
1123
|
+
kind: 'Field',
|
1124
|
+
name: { kind: 'Name', value: 'label' },
|
1125
|
+
},
|
1126
|
+
{
|
1127
|
+
kind: 'Field',
|
1128
|
+
name: { kind: 'Name', value: 'tooltip' },
|
1129
|
+
},
|
1130
|
+
{
|
1131
|
+
kind: 'Field',
|
1132
|
+
name: { kind: 'Name', value: 'class' },
|
1133
|
+
},
|
1134
|
+
{
|
1135
|
+
kind: 'Field',
|
1136
|
+
name: { kind: 'Name', value: 'enabled' },
|
1137
|
+
},
|
1138
|
+
{
|
1139
|
+
kind: 'Field',
|
1140
|
+
name: { kind: 'Name', value: 'checked' },
|
1141
|
+
},
|
1142
|
+
{
|
1143
|
+
kind: 'Field',
|
1144
|
+
name: { kind: 'Name', value: 'radio' },
|
1145
|
+
},
|
1146
|
+
{
|
1147
|
+
kind: 'Field',
|
1148
|
+
name: { kind: 'Name', value: 'run' },
|
1149
|
+
selectionSet: {
|
1150
|
+
kind: 'SelectionSet',
|
1151
|
+
selections: [
|
1152
|
+
{
|
1153
|
+
kind: 'Field',
|
1154
|
+
name: {
|
1155
|
+
kind: 'Name',
|
1156
|
+
value: 'type',
|
1157
|
+
},
|
1158
|
+
},
|
1159
|
+
{
|
1160
|
+
kind: 'Field',
|
1161
|
+
name: {
|
1162
|
+
kind: 'Name',
|
1163
|
+
value: 'document',
|
1164
|
+
},
|
1165
|
+
},
|
1166
|
+
{
|
1167
|
+
kind: 'Field',
|
1168
|
+
name: {
|
1169
|
+
kind: 'Name',
|
1170
|
+
value: 'variables',
|
1171
|
+
},
|
1172
|
+
},
|
1173
|
+
],
|
1174
|
+
},
|
1175
|
+
},
|
1176
|
+
],
|
1177
|
+
},
|
1178
|
+
},
|
1179
|
+
],
|
1180
|
+
},
|
1181
|
+
},
|
1182
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'sticky' } },
|
1183
|
+
],
|
1184
|
+
},
|
1185
|
+
},
|
1186
|
+
],
|
1187
|
+
},
|
1188
|
+
},
|
1189
|
+
],
|
1190
|
+
},
|
1191
|
+
},
|
1192
|
+
],
|
1193
|
+
};
|
398
1194
|
/**
|
399
1195
|
* __useNotificationsQuery__
|
400
1196
|
*
|
@@ -422,7 +1218,40 @@ function useNotificationsSuspenseQuery(baseOptions) {
|
|
422
1218
|
const options = { ...defaultOptions, ...baseOptions };
|
423
1219
|
return Apollo.useSuspenseQuery(NotificationsDocument, options);
|
424
1220
|
}
|
425
|
-
const ShowNotificationDocument = {
|
1221
|
+
const ShowNotificationDocument = {
|
1222
|
+
kind: 'Document',
|
1223
|
+
definitions: [
|
1224
|
+
{
|
1225
|
+
kind: 'OperationDefinition',
|
1226
|
+
operation: 'query',
|
1227
|
+
name: { kind: 'Name', value: 'showNotification' },
|
1228
|
+
variableDefinitions: [
|
1229
|
+
{
|
1230
|
+
kind: 'VariableDefinition',
|
1231
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'notification' } },
|
1232
|
+
type: { kind: 'NamedType', name: { kind: 'Name', value: 'NotificationInput' } },
|
1233
|
+
},
|
1234
|
+
],
|
1235
|
+
selectionSet: {
|
1236
|
+
kind: 'SelectionSet',
|
1237
|
+
selections: [
|
1238
|
+
{
|
1239
|
+
kind: 'Field',
|
1240
|
+
name: { kind: 'Name', value: 'showNotification' },
|
1241
|
+
arguments: [
|
1242
|
+
{
|
1243
|
+
kind: 'Argument',
|
1244
|
+
name: { kind: 'Name', value: 'notification' },
|
1245
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'notification' } },
|
1246
|
+
},
|
1247
|
+
],
|
1248
|
+
directives: [{ kind: 'Directive', name: { kind: 'Name', value: 'client' } }],
|
1249
|
+
},
|
1250
|
+
],
|
1251
|
+
},
|
1252
|
+
},
|
1253
|
+
],
|
1254
|
+
};
|
426
1255
|
/**
|
427
1256
|
* __useShowNotificationQuery__
|
428
1257
|
*
|
@@ -450,4 +1279,4 @@ function useShowNotificationLazyQuery(baseOptions) {
|
|
450
1279
|
function useShowNotificationSuspenseQuery(baseOptions) {
|
451
1280
|
const options = { ...defaultOptions, ...baseOptions };
|
452
1281
|
return Apollo.useSuspenseQuery(ShowNotificationDocument, options);
|
453
|
-
}export{ContextMenuDocument,CopyDocument,ExtensionsByLimitDocument,GalleryDocument,GalleryExtensionDocument,HideContextMenuDocument,ICacheControlScope,IClientContainerService,IEnvironmentSync,IExtensionKind,IExtensionType,IGraphqlCallType,IMarkupKind,IMenuId,IMoleculerServiceName,INotificationChangeType,INotificationSeverity,INotificationViewItemLabelKind,ISortEnum,InstallDocument,InstalledExtensionsDocument,NotificationsDocument,ProviderDefinitionDocument,RemoveDocument,RunMenuActionDocument,ShowContextMenuDocument,ShowNotificationDocument,useContextMenuLazyQuery,useContextMenuQuery,useContextMenuSuspenseQuery,useCopyMutation,useExtensionsByLimitLazyQuery,useExtensionsByLimitQuery,useExtensionsByLimitSuspenseQuery,useGalleryExtensionLazyQuery,useGalleryExtensionQuery,useGalleryExtensionSuspenseQuery,useGalleryLazyQuery,useGalleryQuery,useGallerySuspenseQuery,useHideContextMenuMutation,useInstallMutation,useInstalledExtensionsLazyQuery,useInstalledExtensionsQuery,useInstalledExtensionsSuspenseQuery,useNotificationsLazyQuery,useNotificationsQuery,useNotificationsSuspenseQuery,useProviderDefinitionMutation,useRemoveMutation,useRunMenuActionMutation,useShowContextMenuMutation,useShowNotificationLazyQuery,useShowNotificationQuery,useShowNotificationSuspenseQuery};
|
1282
|
+
}export{ContextMenuDocument,CopyDocument,ExtensionsByLimitDocument,GalleryDocument,GalleryExtensionDocument,HideContextMenuDocument,ICacheControlScope,IClientContainerService,IEnvironmentSync,IExtensionKind,IExtensionType,IGraphqlCallType,IMailTemplateId,IMarkupKind,IMenuId,IMoleculerCronServiceName,IMoleculerServiceName,INotificationChangeType,INotificationSeverity,INotificationViewItemLabelKind,ISortEnum,InstallDocument,InstalledExtensionsDocument,NotificationsDocument,ProviderDefinitionDocument,RemoveDocument,RunMenuActionDocument,ShowContextMenuDocument,ShowNotificationDocument,useContextMenuLazyQuery,useContextMenuQuery,useContextMenuSuspenseQuery,useCopyMutation,useExtensionsByLimitLazyQuery,useExtensionsByLimitQuery,useExtensionsByLimitSuspenseQuery,useGalleryExtensionLazyQuery,useGalleryExtensionQuery,useGalleryExtensionSuspenseQuery,useGalleryLazyQuery,useGalleryQuery,useGallerySuspenseQuery,useHideContextMenuMutation,useInstallMutation,useInstalledExtensionsLazyQuery,useInstalledExtensionsQuery,useInstalledExtensionsSuspenseQuery,useNotificationsLazyQuery,useNotificationsQuery,useNotificationsSuspenseQuery,useProviderDefinitionMutation,useRemoveMutation,useRunMenuActionMutation,useShowContextMenuMutation,useShowNotificationLazyQuery,useShowNotificationQuery,useShowNotificationSuspenseQuery};
|