@adminide-stack/extension-api 7.2.8-alpha.0 → 7.2.8-alpha.9
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.
@@ -2589,11 +2589,11 @@ export type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs
|
|
2589
2589
|
export type IResolversInterfaceTypes<_RefType extends Record<string, unknown>> = {
|
2590
2590
|
Hover: never;
|
2591
2591
|
IResourceUtilizationSettings: never;
|
2592
|
-
ITextDocumentIdentifier:
|
2593
|
-
Location:
|
2592
|
+
ITextDocumentIdentifier: ITextDocumentIdentifier | ITextDocumentItem;
|
2593
|
+
Location: IProvideTextDocumentLocationSignature;
|
2594
2594
|
MarkupContent: never;
|
2595
|
-
Node:
|
2596
|
-
TextDocumentPositionParams:
|
2595
|
+
Node: IRegistryExtension;
|
2596
|
+
TextDocumentPositionParams: IProvideTextDocumentLocationSignature;
|
2597
2597
|
};
|
2598
2598
|
/** Mapping between all available schema types and the resolvers types */
|
2599
2599
|
export type IResolversTypes = {
|
@@ -3719,7 +3719,7 @@ export type ISnippetResolvers<ContextType = MyContext, ParentType extends IResol
|
|
3719
3719
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
3720
3720
|
};
|
3721
3721
|
export type ISubscriptionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Subscription'] = IResolversParentTypes['Subscription']> = {
|
3722
|
-
dummy?: SubscriptionResolver<Maybe<IResolversTypes['Int']>,
|
3722
|
+
dummy?: SubscriptionResolver<Maybe<IResolversTypes['Int']>, 'dummy', ParentType, ContextType>;
|
3723
3723
|
};
|
3724
3724
|
export type ITextDocumentIdentifierResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TextDocumentIdentifier'] = IResolversParentTypes['TextDocumentIdentifier']> = {
|
3725
3725
|
languageId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -97,7 +97,40 @@ var ISortEnum;
|
|
97
97
|
ISortEnum["Asc"] = "ASC";
|
98
98
|
ISortEnum["Desc"] = "DESC";
|
99
99
|
})(ISortEnum || (ISortEnum = {}));
|
100
|
-
const CopyDocument = {
|
100
|
+
const CopyDocument = {
|
101
|
+
kind: 'Document',
|
102
|
+
definitions: [
|
103
|
+
{
|
104
|
+
kind: 'OperationDefinition',
|
105
|
+
operation: 'mutation',
|
106
|
+
name: { kind: 'Name', value: 'Copy' },
|
107
|
+
variableDefinitions: [
|
108
|
+
{
|
109
|
+
kind: 'VariableDefinition',
|
110
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'value' } },
|
111
|
+
type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } },
|
112
|
+
},
|
113
|
+
],
|
114
|
+
selectionSet: {
|
115
|
+
kind: 'SelectionSet',
|
116
|
+
selections: [
|
117
|
+
{
|
118
|
+
kind: 'Field',
|
119
|
+
name: { kind: 'Name', value: 'copy' },
|
120
|
+
arguments: [
|
121
|
+
{
|
122
|
+
kind: 'Argument',
|
123
|
+
name: { kind: 'Name', value: 'value' },
|
124
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'value' } },
|
125
|
+
},
|
126
|
+
],
|
127
|
+
directives: [{ kind: 'Directive', name: { kind: 'Name', value: 'client' } }],
|
128
|
+
},
|
129
|
+
],
|
130
|
+
},
|
131
|
+
},
|
132
|
+
],
|
133
|
+
};
|
101
134
|
/**
|
102
135
|
* __useCopyMutation__
|
103
136
|
*
|
@@ -119,7 +152,40 @@ function useCopyMutation(baseOptions) {
|
|
119
152
|
const options = { ...defaultOptions, ...baseOptions };
|
120
153
|
return Apollo.useMutation(CopyDocument, options);
|
121
154
|
}
|
122
|
-
const RunMenuActionDocument = {
|
155
|
+
const RunMenuActionDocument = {
|
156
|
+
kind: 'Document',
|
157
|
+
definitions: [
|
158
|
+
{
|
159
|
+
kind: 'OperationDefinition',
|
160
|
+
operation: 'mutation',
|
161
|
+
name: { kind: 'Name', value: 'RunMenuAction' },
|
162
|
+
variableDefinitions: [
|
163
|
+
{
|
164
|
+
kind: 'VariableDefinition',
|
165
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'argument' } },
|
166
|
+
type: { kind: 'NamedType', name: { kind: 'Name', value: 'ContributionActionRunInput' } },
|
167
|
+
},
|
168
|
+
],
|
169
|
+
selectionSet: {
|
170
|
+
kind: 'SelectionSet',
|
171
|
+
selections: [
|
172
|
+
{
|
173
|
+
kind: 'Field',
|
174
|
+
name: { kind: 'Name', value: 'runMenuAction' },
|
175
|
+
arguments: [
|
176
|
+
{
|
177
|
+
kind: 'Argument',
|
178
|
+
name: { kind: 'Name', value: 'argument' },
|
179
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'argument' } },
|
180
|
+
},
|
181
|
+
],
|
182
|
+
directives: [{ kind: 'Directive', name: { kind: 'Name', value: 'client' } }],
|
183
|
+
},
|
184
|
+
],
|
185
|
+
},
|
186
|
+
},
|
187
|
+
],
|
188
|
+
};
|
123
189
|
/**
|
124
190
|
* __useRunMenuActionMutation__
|
125
191
|
*
|
@@ -141,7 +207,26 @@ function useRunMenuActionMutation(baseOptions) {
|
|
141
207
|
const options = { ...defaultOptions, ...baseOptions };
|
142
208
|
return Apollo.useMutation(RunMenuActionDocument, options);
|
143
209
|
}
|
144
|
-
const HideContextMenuDocument = {
|
210
|
+
const HideContextMenuDocument = {
|
211
|
+
kind: 'Document',
|
212
|
+
definitions: [
|
213
|
+
{
|
214
|
+
kind: 'OperationDefinition',
|
215
|
+
operation: 'mutation',
|
216
|
+
name: { kind: 'Name', value: 'HideContextMenu' },
|
217
|
+
selectionSet: {
|
218
|
+
kind: 'SelectionSet',
|
219
|
+
selections: [
|
220
|
+
{
|
221
|
+
kind: 'Field',
|
222
|
+
name: { kind: 'Name', value: 'hideContextMenu' },
|
223
|
+
directives: [{ kind: 'Directive', name: { kind: 'Name', value: 'client' } }],
|
224
|
+
},
|
225
|
+
],
|
226
|
+
},
|
227
|
+
},
|
228
|
+
],
|
229
|
+
};
|
145
230
|
/**
|
146
231
|
* __useHideContextMenuMutation__
|
147
232
|
*
|
@@ -162,7 +247,40 @@ function useHideContextMenuMutation(baseOptions) {
|
|
162
247
|
const options = { ...defaultOptions, ...baseOptions };
|
163
248
|
return Apollo.useMutation(HideContextMenuDocument, options);
|
164
249
|
}
|
165
|
-
const ShowContextMenuDocument = {
|
250
|
+
const ShowContextMenuDocument = {
|
251
|
+
kind: 'Document',
|
252
|
+
definitions: [
|
253
|
+
{
|
254
|
+
kind: 'OperationDefinition',
|
255
|
+
operation: 'mutation',
|
256
|
+
name: { kind: 'Name', value: 'ShowContextMenu' },
|
257
|
+
variableDefinitions: [
|
258
|
+
{
|
259
|
+
kind: 'VariableDefinition',
|
260
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'delegate' } },
|
261
|
+
type: { kind: 'NamedType', name: { kind: 'Name', value: 'ContextMenuInput' } },
|
262
|
+
},
|
263
|
+
],
|
264
|
+
selectionSet: {
|
265
|
+
kind: 'SelectionSet',
|
266
|
+
selections: [
|
267
|
+
{
|
268
|
+
kind: 'Field',
|
269
|
+
name: { kind: 'Name', value: 'showContextMenu' },
|
270
|
+
arguments: [
|
271
|
+
{
|
272
|
+
kind: 'Argument',
|
273
|
+
name: { kind: 'Name', value: 'delegate' },
|
274
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'delegate' } },
|
275
|
+
},
|
276
|
+
],
|
277
|
+
directives: [{ kind: 'Directive', name: { kind: 'Name', value: 'client' } }],
|
278
|
+
},
|
279
|
+
],
|
280
|
+
},
|
281
|
+
},
|
282
|
+
],
|
283
|
+
};
|
166
284
|
/**
|
167
285
|
* __useShowContextMenuMutation__
|
168
286
|
*
|
@@ -184,7 +302,46 @@ function useShowContextMenuMutation(baseOptions) {
|
|
184
302
|
const options = { ...defaultOptions, ...baseOptions };
|
185
303
|
return Apollo.useMutation(ShowContextMenuDocument, options);
|
186
304
|
}
|
187
|
-
const InstallDocument = {
|
305
|
+
const InstallDocument = {
|
306
|
+
kind: 'Document',
|
307
|
+
definitions: [
|
308
|
+
{
|
309
|
+
kind: 'OperationDefinition',
|
310
|
+
operation: 'mutation',
|
311
|
+
name: { kind: 'Name', value: 'install' },
|
312
|
+
variableDefinitions: [
|
313
|
+
{
|
314
|
+
kind: 'VariableDefinition',
|
315
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'vsix' } },
|
316
|
+
type: { kind: 'NonNullType', type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } } },
|
317
|
+
},
|
318
|
+
],
|
319
|
+
selectionSet: {
|
320
|
+
kind: 'SelectionSet',
|
321
|
+
selections: [
|
322
|
+
{
|
323
|
+
kind: 'Field',
|
324
|
+
name: { kind: 'Name', value: 'install' },
|
325
|
+
arguments: [
|
326
|
+
{
|
327
|
+
kind: 'Argument',
|
328
|
+
name: { kind: 'Name', value: 'vsix' },
|
329
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'vsix' } },
|
330
|
+
},
|
331
|
+
],
|
332
|
+
selectionSet: {
|
333
|
+
kind: 'SelectionSet',
|
334
|
+
selections: [
|
335
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
336
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'uuid' } },
|
337
|
+
],
|
338
|
+
},
|
339
|
+
},
|
340
|
+
],
|
341
|
+
},
|
342
|
+
},
|
343
|
+
],
|
344
|
+
};
|
188
345
|
/**
|
189
346
|
* __useInstallMutation__
|
190
347
|
*
|
@@ -206,7 +363,40 @@ function useInstallMutation(baseOptions) {
|
|
206
363
|
const options = { ...defaultOptions, ...baseOptions };
|
207
364
|
return Apollo.useMutation(InstallDocument, options);
|
208
365
|
}
|
209
|
-
const ProviderDefinitionDocument = {
|
366
|
+
const ProviderDefinitionDocument = {
|
367
|
+
kind: 'Document',
|
368
|
+
definitions: [
|
369
|
+
{
|
370
|
+
kind: 'OperationDefinition',
|
371
|
+
operation: 'mutation',
|
372
|
+
name: { kind: 'Name', value: 'providerDefinition' },
|
373
|
+
variableDefinitions: [
|
374
|
+
{
|
375
|
+
kind: 'VariableDefinition',
|
376
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'params' } },
|
377
|
+
type: { kind: 'NamedType', name: { kind: 'Name', value: 'TextDocumentPositionParamsInput' } },
|
378
|
+
},
|
379
|
+
],
|
380
|
+
selectionSet: {
|
381
|
+
kind: 'SelectionSet',
|
382
|
+
selections: [
|
383
|
+
{
|
384
|
+
kind: 'Field',
|
385
|
+
name: { kind: 'Name', value: 'hoverProviderDefinition' },
|
386
|
+
arguments: [
|
387
|
+
{
|
388
|
+
kind: 'Argument',
|
389
|
+
name: { kind: 'Name', value: 'params' },
|
390
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'params' } },
|
391
|
+
},
|
392
|
+
],
|
393
|
+
directives: [{ kind: 'Directive', name: { kind: 'Name', value: 'client' } }],
|
394
|
+
},
|
395
|
+
],
|
396
|
+
},
|
397
|
+
},
|
398
|
+
],
|
399
|
+
};
|
210
400
|
/**
|
211
401
|
* __useProviderDefinitionMutation__
|
212
402
|
*
|
@@ -228,7 +418,39 @@ function useProviderDefinitionMutation(baseOptions) {
|
|
228
418
|
const options = { ...defaultOptions, ...baseOptions };
|
229
419
|
return Apollo.useMutation(ProviderDefinitionDocument, options);
|
230
420
|
}
|
231
|
-
const RemoveDocument = {
|
421
|
+
const RemoveDocument = {
|
422
|
+
kind: 'Document',
|
423
|
+
definitions: [
|
424
|
+
{
|
425
|
+
kind: 'OperationDefinition',
|
426
|
+
operation: 'mutation',
|
427
|
+
name: { kind: 'Name', value: 'remove' },
|
428
|
+
variableDefinitions: [
|
429
|
+
{
|
430
|
+
kind: 'VariableDefinition',
|
431
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'id' } },
|
432
|
+
type: { kind: 'NonNullType', type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } } },
|
433
|
+
},
|
434
|
+
],
|
435
|
+
selectionSet: {
|
436
|
+
kind: 'SelectionSet',
|
437
|
+
selections: [
|
438
|
+
{
|
439
|
+
kind: 'Field',
|
440
|
+
name: { kind: 'Name', value: 'removeExtension' },
|
441
|
+
arguments: [
|
442
|
+
{
|
443
|
+
kind: 'Argument',
|
444
|
+
name: { kind: 'Name', value: 'id' },
|
445
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'id' } },
|
446
|
+
},
|
447
|
+
],
|
448
|
+
},
|
449
|
+
],
|
450
|
+
},
|
451
|
+
},
|
452
|
+
],
|
453
|
+
};
|
232
454
|
/**
|
233
455
|
* __useRemoveMutation__
|
234
456
|
*
|
@@ -250,7 +472,70 @@ function useRemoveMutation(baseOptions) {
|
|
250
472
|
const options = { ...defaultOptions, ...baseOptions };
|
251
473
|
return Apollo.useMutation(RemoveDocument, options);
|
252
474
|
}
|
253
|
-
const ContextMenuDocument = {
|
475
|
+
const ContextMenuDocument = {
|
476
|
+
kind: 'Document',
|
477
|
+
definitions: [
|
478
|
+
{
|
479
|
+
kind: 'OperationDefinition',
|
480
|
+
operation: 'query',
|
481
|
+
name: { kind: 'Name', value: 'ContextMenu' },
|
482
|
+
selectionSet: {
|
483
|
+
kind: 'SelectionSet',
|
484
|
+
selections: [
|
485
|
+
{
|
486
|
+
kind: 'Field',
|
487
|
+
name: { kind: 'Name', value: 'contextMenu' },
|
488
|
+
directives: [{ kind: 'Directive', name: { kind: 'Name', value: 'client' } }],
|
489
|
+
selectionSet: {
|
490
|
+
kind: 'SelectionSet',
|
491
|
+
selections: [
|
492
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
493
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'isShow' } },
|
494
|
+
{
|
495
|
+
kind: 'Field',
|
496
|
+
name: { kind: 'Name', value: 'anchor' },
|
497
|
+
selectionSet: {
|
498
|
+
kind: 'SelectionSet',
|
499
|
+
selections: [
|
500
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'x' } },
|
501
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'y' } },
|
502
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'height' } },
|
503
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'width' } },
|
504
|
+
],
|
505
|
+
},
|
506
|
+
},
|
507
|
+
{
|
508
|
+
kind: 'Field',
|
509
|
+
name: { kind: 'Name', value: 'menuItems' },
|
510
|
+
selectionSet: {
|
511
|
+
kind: 'SelectionSet',
|
512
|
+
selections: [
|
513
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
514
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'label' } },
|
515
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'enabled' } },
|
516
|
+
{
|
517
|
+
kind: 'Field',
|
518
|
+
name: { kind: 'Name', value: 'run' },
|
519
|
+
selectionSet: {
|
520
|
+
kind: 'SelectionSet',
|
521
|
+
selections: [
|
522
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'type' } },
|
523
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'document' } },
|
524
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'variables' } },
|
525
|
+
],
|
526
|
+
},
|
527
|
+
},
|
528
|
+
],
|
529
|
+
},
|
530
|
+
},
|
531
|
+
],
|
532
|
+
},
|
533
|
+
},
|
534
|
+
],
|
535
|
+
},
|
536
|
+
},
|
537
|
+
],
|
538
|
+
};
|
254
539
|
/**
|
255
540
|
* __useContextMenuQuery__
|
256
541
|
*
|
@@ -278,7 +563,88 @@ function useContextMenuSuspenseQuery(baseOptions) {
|
|
278
563
|
const options = { ...defaultOptions, ...baseOptions };
|
279
564
|
return Apollo.useSuspenseQuery(ContextMenuDocument, options);
|
280
565
|
}
|
281
|
-
const GalleryExtensionDocument = {
|
566
|
+
const GalleryExtensionDocument = {
|
567
|
+
kind: 'Document',
|
568
|
+
definitions: [
|
569
|
+
{
|
570
|
+
kind: 'OperationDefinition',
|
571
|
+
operation: 'query',
|
572
|
+
name: { kind: 'Name', value: 'galleryExtension' },
|
573
|
+
variableDefinitions: [
|
574
|
+
{
|
575
|
+
kind: 'VariableDefinition',
|
576
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'extensionID' } },
|
577
|
+
type: { kind: 'NonNullType', type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } } },
|
578
|
+
},
|
579
|
+
],
|
580
|
+
selectionSet: {
|
581
|
+
kind: 'SelectionSet',
|
582
|
+
selections: [
|
583
|
+
{
|
584
|
+
kind: 'Field',
|
585
|
+
name: { kind: 'Name', value: 'galleryExtension' },
|
586
|
+
arguments: [
|
587
|
+
{
|
588
|
+
kind: 'Argument',
|
589
|
+
name: { kind: 'Name', value: 'extensionID' },
|
590
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'extensionID' } },
|
591
|
+
},
|
592
|
+
],
|
593
|
+
selectionSet: {
|
594
|
+
kind: 'SelectionSet',
|
595
|
+
selections: [
|
596
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
597
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
598
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'icon' } },
|
599
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'version' } },
|
600
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'description' } },
|
601
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'publisher' } },
|
602
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'installCount' } },
|
603
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'publisherDisplayName' } },
|
604
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'rating' } },
|
605
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ratingCount' } },
|
606
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'displayName' } },
|
607
|
+
{
|
608
|
+
kind: 'Field',
|
609
|
+
name: { kind: 'Name', value: 'assets' },
|
610
|
+
selectionSet: {
|
611
|
+
kind: 'SelectionSet',
|
612
|
+
selections: [
|
613
|
+
{
|
614
|
+
kind: 'Field',
|
615
|
+
name: { kind: 'Name', value: 'download' },
|
616
|
+
selectionSet: {
|
617
|
+
kind: 'SelectionSet',
|
618
|
+
selections: [
|
619
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'uri' } },
|
620
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'fallbackUri' } },
|
621
|
+
],
|
622
|
+
},
|
623
|
+
},
|
624
|
+
],
|
625
|
+
},
|
626
|
+
},
|
627
|
+
{
|
628
|
+
kind: 'Field',
|
629
|
+
name: { kind: 'Name', value: 'resources' },
|
630
|
+
selectionSet: {
|
631
|
+
kind: 'SelectionSet',
|
632
|
+
selections: [
|
633
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'icon' } },
|
634
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'readme' } },
|
635
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'manifest' } },
|
636
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'changelog' } },
|
637
|
+
],
|
638
|
+
},
|
639
|
+
},
|
640
|
+
],
|
641
|
+
},
|
642
|
+
},
|
643
|
+
],
|
644
|
+
},
|
645
|
+
},
|
646
|
+
],
|
647
|
+
};
|
282
648
|
/**
|
283
649
|
* __useGalleryExtensionQuery__
|
284
650
|
*
|
@@ -307,7 +673,92 @@ function useGalleryExtensionSuspenseQuery(baseOptions) {
|
|
307
673
|
const options = { ...defaultOptions, ...baseOptions };
|
308
674
|
return Apollo.useSuspenseQuery(GalleryExtensionDocument, options);
|
309
675
|
}
|
310
|
-
const ExtensionsByLimitDocument = {
|
676
|
+
const ExtensionsByLimitDocument = {
|
677
|
+
kind: 'Document',
|
678
|
+
definitions: [
|
679
|
+
{
|
680
|
+
kind: 'OperationDefinition',
|
681
|
+
operation: 'query',
|
682
|
+
name: { kind: 'Name', value: 'ExtensionsByLimit' },
|
683
|
+
variableDefinitions: [
|
684
|
+
{
|
685
|
+
kind: 'VariableDefinition',
|
686
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'first' } },
|
687
|
+
type: { kind: 'NonNullType', type: { kind: 'NamedType', name: { kind: 'Name', value: 'Int' } } },
|
688
|
+
},
|
689
|
+
{
|
690
|
+
kind: 'VariableDefinition',
|
691
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'prioritizeExtensionIDs' } },
|
692
|
+
type: {
|
693
|
+
kind: 'NonNullType',
|
694
|
+
type: {
|
695
|
+
kind: 'ListType',
|
696
|
+
type: {
|
697
|
+
kind: 'NonNullType',
|
698
|
+
type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } },
|
699
|
+
},
|
700
|
+
},
|
701
|
+
},
|
702
|
+
},
|
703
|
+
],
|
704
|
+
selectionSet: {
|
705
|
+
kind: 'SelectionSet',
|
706
|
+
selections: [
|
707
|
+
{
|
708
|
+
kind: 'Field',
|
709
|
+
name: { kind: 'Name', value: 'extensions' },
|
710
|
+
arguments: [
|
711
|
+
{
|
712
|
+
kind: 'Argument',
|
713
|
+
name: { kind: 'Name', value: 'first' },
|
714
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'first' } },
|
715
|
+
},
|
716
|
+
{
|
717
|
+
kind: 'Argument',
|
718
|
+
name: { kind: 'Name', value: 'prioritizeExtensionIDs' },
|
719
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'prioritizeExtensionIDs' } },
|
720
|
+
},
|
721
|
+
],
|
722
|
+
selectionSet: {
|
723
|
+
kind: 'SelectionSet',
|
724
|
+
selections: [
|
725
|
+
{
|
726
|
+
kind: 'Field',
|
727
|
+
name: { kind: 'Name', value: 'nodes' },
|
728
|
+
selectionSet: {
|
729
|
+
kind: 'SelectionSet',
|
730
|
+
selections: [
|
731
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
732
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'url' } },
|
733
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'extensionID' } },
|
734
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'viewerCanAdminister' } },
|
735
|
+
{
|
736
|
+
kind: 'Field',
|
737
|
+
name: { kind: 'Name', value: 'manifest' },
|
738
|
+
selectionSet: {
|
739
|
+
kind: 'SelectionSet',
|
740
|
+
selections: [
|
741
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'bundleURL' } },
|
742
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'raw' } },
|
743
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
744
|
+
{
|
745
|
+
kind: 'Field',
|
746
|
+
name: { kind: 'Name', value: 'activationEvents' },
|
747
|
+
},
|
748
|
+
],
|
749
|
+
},
|
750
|
+
},
|
751
|
+
],
|
752
|
+
},
|
753
|
+
},
|
754
|
+
],
|
755
|
+
},
|
756
|
+
},
|
757
|
+
],
|
758
|
+
},
|
759
|
+
},
|
760
|
+
],
|
761
|
+
};
|
311
762
|
/**
|
312
763
|
* __useExtensionsByLimitQuery__
|
313
764
|
*
|
@@ -337,7 +788,91 @@ function useExtensionsByLimitSuspenseQuery(baseOptions) {
|
|
337
788
|
const options = { ...defaultOptions, ...baseOptions };
|
338
789
|
return Apollo.useSuspenseQuery(ExtensionsByLimitDocument, options);
|
339
790
|
}
|
340
|
-
const GalleryDocument = {
|
791
|
+
const GalleryDocument = {
|
792
|
+
kind: 'Document',
|
793
|
+
definitions: [
|
794
|
+
{
|
795
|
+
kind: 'OperationDefinition',
|
796
|
+
operation: 'query',
|
797
|
+
name: { kind: 'Name', value: 'gallery' },
|
798
|
+
variableDefinitions: [
|
799
|
+
{
|
800
|
+
kind: 'VariableDefinition',
|
801
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'query' } },
|
802
|
+
type: { kind: 'NamedType', name: { kind: 'Name', value: 'GalleryQueryInput' } },
|
803
|
+
},
|
804
|
+
],
|
805
|
+
selectionSet: {
|
806
|
+
kind: 'SelectionSet',
|
807
|
+
selections: [
|
808
|
+
{
|
809
|
+
kind: 'Field',
|
810
|
+
name: { kind: 'Name', value: 'gallery' },
|
811
|
+
arguments: [
|
812
|
+
{
|
813
|
+
kind: 'Argument',
|
814
|
+
name: { kind: 'Name', value: 'query' },
|
815
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'query' } },
|
816
|
+
},
|
817
|
+
],
|
818
|
+
selectionSet: {
|
819
|
+
kind: 'SelectionSet',
|
820
|
+
selections: [
|
821
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'page' } },
|
822
|
+
{
|
823
|
+
kind: 'Field',
|
824
|
+
name: { kind: 'Name', value: 'firstPage' },
|
825
|
+
selectionSet: {
|
826
|
+
kind: 'SelectionSet',
|
827
|
+
selections: [
|
828
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
829
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
830
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'icon' } },
|
831
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'version' } },
|
832
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'description' } },
|
833
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'publisher' } },
|
834
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'installCount' } },
|
835
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'publisherDisplayName' } },
|
836
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'rating' } },
|
837
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ratingCount' } },
|
838
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'displayName' } },
|
839
|
+
{
|
840
|
+
kind: 'Field',
|
841
|
+
name: { kind: 'Name', value: 'assets' },
|
842
|
+
selectionSet: {
|
843
|
+
kind: 'SelectionSet',
|
844
|
+
selections: [
|
845
|
+
{
|
846
|
+
kind: 'Field',
|
847
|
+
name: { kind: 'Name', value: 'download' },
|
848
|
+
selectionSet: {
|
849
|
+
kind: 'SelectionSet',
|
850
|
+
selections: [
|
851
|
+
{
|
852
|
+
kind: 'Field',
|
853
|
+
name: { kind: 'Name', value: 'uri' },
|
854
|
+
},
|
855
|
+
{
|
856
|
+
kind: 'Field',
|
857
|
+
name: { kind: 'Name', value: 'fallbackUri' },
|
858
|
+
},
|
859
|
+
],
|
860
|
+
},
|
861
|
+
},
|
862
|
+
],
|
863
|
+
},
|
864
|
+
},
|
865
|
+
],
|
866
|
+
},
|
867
|
+
},
|
868
|
+
],
|
869
|
+
},
|
870
|
+
},
|
871
|
+
],
|
872
|
+
},
|
873
|
+
},
|
874
|
+
],
|
875
|
+
};
|
341
876
|
/**
|
342
877
|
* __useGalleryQuery__
|
343
878
|
*
|
@@ -366,7 +901,80 @@ function useGallerySuspenseQuery(baseOptions) {
|
|
366
901
|
const options = { ...defaultOptions, ...baseOptions };
|
367
902
|
return Apollo.useSuspenseQuery(GalleryDocument, options);
|
368
903
|
}
|
369
|
-
const InstalledExtensionsDocument = {
|
904
|
+
const InstalledExtensionsDocument = {
|
905
|
+
kind: 'Document',
|
906
|
+
definitions: [
|
907
|
+
{
|
908
|
+
kind: 'OperationDefinition',
|
909
|
+
operation: 'query',
|
910
|
+
name: { kind: 'Name', value: 'installedExtensions' },
|
911
|
+
selectionSet: {
|
912
|
+
kind: 'SelectionSet',
|
913
|
+
selections: [
|
914
|
+
{
|
915
|
+
kind: 'Field',
|
916
|
+
name: { kind: 'Name', value: 'installed' },
|
917
|
+
selectionSet: {
|
918
|
+
kind: 'SelectionSet',
|
919
|
+
selections: [
|
920
|
+
{
|
921
|
+
kind: 'Field',
|
922
|
+
name: { kind: 'Name', value: 'identifier' },
|
923
|
+
selectionSet: {
|
924
|
+
kind: 'SelectionSet',
|
925
|
+
selections: [
|
926
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
927
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'uuid' } },
|
928
|
+
],
|
929
|
+
},
|
930
|
+
},
|
931
|
+
{
|
932
|
+
kind: 'Field',
|
933
|
+
name: { kind: 'Name', value: 'galleryIdentifier' },
|
934
|
+
selectionSet: {
|
935
|
+
kind: 'SelectionSet',
|
936
|
+
selections: [
|
937
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
938
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'uuid' } },
|
939
|
+
],
|
940
|
+
},
|
941
|
+
},
|
942
|
+
{
|
943
|
+
kind: 'Field',
|
944
|
+
name: { kind: 'Name', value: 'extension' },
|
945
|
+
selectionSet: {
|
946
|
+
kind: 'SelectionSet',
|
947
|
+
selections: [
|
948
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
949
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
950
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'icon' } },
|
951
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'displayName' } },
|
952
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'installCount' } },
|
953
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'description' } },
|
954
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'version' } },
|
955
|
+
{
|
956
|
+
kind: 'Field',
|
957
|
+
name: { kind: 'Name', value: 'identifier' },
|
958
|
+
selectionSet: {
|
959
|
+
kind: 'SelectionSet',
|
960
|
+
selections: [
|
961
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
962
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'uuid' } },
|
963
|
+
],
|
964
|
+
},
|
965
|
+
},
|
966
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'publisherDisplayName' } },
|
967
|
+
],
|
968
|
+
},
|
969
|
+
},
|
970
|
+
],
|
971
|
+
},
|
972
|
+
},
|
973
|
+
],
|
974
|
+
},
|
975
|
+
},
|
976
|
+
],
|
977
|
+
};
|
370
978
|
/**
|
371
979
|
* __useInstalledExtensionsQuery__
|
372
980
|
*
|
@@ -394,7 +1002,187 @@ function useInstalledExtensionsSuspenseQuery(baseOptions) {
|
|
394
1002
|
const options = { ...defaultOptions, ...baseOptions };
|
395
1003
|
return Apollo.useSuspenseQuery(InstalledExtensionsDocument, options);
|
396
1004
|
}
|
397
|
-
const NotificationsDocument = {
|
1005
|
+
const NotificationsDocument = {
|
1006
|
+
kind: 'Document',
|
1007
|
+
definitions: [
|
1008
|
+
{
|
1009
|
+
kind: 'OperationDefinition',
|
1010
|
+
operation: 'query',
|
1011
|
+
name: { kind: 'Name', value: 'Notifications' },
|
1012
|
+
selectionSet: {
|
1013
|
+
kind: 'SelectionSet',
|
1014
|
+
selections: [
|
1015
|
+
{
|
1016
|
+
kind: 'Field',
|
1017
|
+
name: { kind: 'Name', value: 'notifications' },
|
1018
|
+
directives: [{ kind: 'Directive', name: { kind: 'Name', value: 'client' } }],
|
1019
|
+
selectionSet: {
|
1020
|
+
kind: 'SelectionSet',
|
1021
|
+
selections: [
|
1022
|
+
{
|
1023
|
+
kind: 'Field',
|
1024
|
+
name: { kind: 'Name', value: 'notifications' },
|
1025
|
+
selectionSet: {
|
1026
|
+
kind: 'SelectionSet',
|
1027
|
+
selections: [
|
1028
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'index' } },
|
1029
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'severity' } },
|
1030
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'message' } },
|
1031
|
+
{
|
1032
|
+
kind: 'Field',
|
1033
|
+
name: { kind: 'Name', value: 'actions' },
|
1034
|
+
selectionSet: {
|
1035
|
+
kind: 'SelectionSet',
|
1036
|
+
selections: [
|
1037
|
+
{
|
1038
|
+
kind: 'Field',
|
1039
|
+
name: { kind: 'Name', value: 'primary' },
|
1040
|
+
selectionSet: {
|
1041
|
+
kind: 'SelectionSet',
|
1042
|
+
selections: [
|
1043
|
+
{
|
1044
|
+
kind: 'Field',
|
1045
|
+
name: { kind: 'Name', value: 'id' },
|
1046
|
+
},
|
1047
|
+
{
|
1048
|
+
kind: 'Field',
|
1049
|
+
name: { kind: 'Name', value: 'label' },
|
1050
|
+
},
|
1051
|
+
{
|
1052
|
+
kind: 'Field',
|
1053
|
+
name: { kind: 'Name', value: 'tooltip' },
|
1054
|
+
},
|
1055
|
+
{
|
1056
|
+
kind: 'Field',
|
1057
|
+
name: { kind: 'Name', value: 'class' },
|
1058
|
+
},
|
1059
|
+
{
|
1060
|
+
kind: 'Field',
|
1061
|
+
name: { kind: 'Name', value: 'enabled' },
|
1062
|
+
},
|
1063
|
+
{
|
1064
|
+
kind: 'Field',
|
1065
|
+
name: { kind: 'Name', value: 'checked' },
|
1066
|
+
},
|
1067
|
+
{
|
1068
|
+
kind: 'Field',
|
1069
|
+
name: { kind: 'Name', value: 'radio' },
|
1070
|
+
},
|
1071
|
+
{
|
1072
|
+
kind: 'Field',
|
1073
|
+
name: { kind: 'Name', value: 'run' },
|
1074
|
+
selectionSet: {
|
1075
|
+
kind: 'SelectionSet',
|
1076
|
+
selections: [
|
1077
|
+
{
|
1078
|
+
kind: 'Field',
|
1079
|
+
name: {
|
1080
|
+
kind: 'Name',
|
1081
|
+
value: 'type',
|
1082
|
+
},
|
1083
|
+
},
|
1084
|
+
{
|
1085
|
+
kind: 'Field',
|
1086
|
+
name: {
|
1087
|
+
kind: 'Name',
|
1088
|
+
value: 'document',
|
1089
|
+
},
|
1090
|
+
},
|
1091
|
+
{
|
1092
|
+
kind: 'Field',
|
1093
|
+
name: {
|
1094
|
+
kind: 'Name',
|
1095
|
+
value: 'variables',
|
1096
|
+
},
|
1097
|
+
},
|
1098
|
+
],
|
1099
|
+
},
|
1100
|
+
},
|
1101
|
+
],
|
1102
|
+
},
|
1103
|
+
},
|
1104
|
+
{
|
1105
|
+
kind: 'Field',
|
1106
|
+
name: { kind: 'Name', value: 'secondary' },
|
1107
|
+
selectionSet: {
|
1108
|
+
kind: 'SelectionSet',
|
1109
|
+
selections: [
|
1110
|
+
{
|
1111
|
+
kind: 'Field',
|
1112
|
+
name: { kind: 'Name', value: 'id' },
|
1113
|
+
},
|
1114
|
+
{
|
1115
|
+
kind: 'Field',
|
1116
|
+
name: { kind: 'Name', value: 'label' },
|
1117
|
+
},
|
1118
|
+
{
|
1119
|
+
kind: 'Field',
|
1120
|
+
name: { kind: 'Name', value: 'tooltip' },
|
1121
|
+
},
|
1122
|
+
{
|
1123
|
+
kind: 'Field',
|
1124
|
+
name: { kind: 'Name', value: 'class' },
|
1125
|
+
},
|
1126
|
+
{
|
1127
|
+
kind: 'Field',
|
1128
|
+
name: { kind: 'Name', value: 'enabled' },
|
1129
|
+
},
|
1130
|
+
{
|
1131
|
+
kind: 'Field',
|
1132
|
+
name: { kind: 'Name', value: 'checked' },
|
1133
|
+
},
|
1134
|
+
{
|
1135
|
+
kind: 'Field',
|
1136
|
+
name: { kind: 'Name', value: 'radio' },
|
1137
|
+
},
|
1138
|
+
{
|
1139
|
+
kind: 'Field',
|
1140
|
+
name: { kind: 'Name', value: 'run' },
|
1141
|
+
selectionSet: {
|
1142
|
+
kind: 'SelectionSet',
|
1143
|
+
selections: [
|
1144
|
+
{
|
1145
|
+
kind: 'Field',
|
1146
|
+
name: {
|
1147
|
+
kind: 'Name',
|
1148
|
+
value: 'type',
|
1149
|
+
},
|
1150
|
+
},
|
1151
|
+
{
|
1152
|
+
kind: 'Field',
|
1153
|
+
name: {
|
1154
|
+
kind: 'Name',
|
1155
|
+
value: 'document',
|
1156
|
+
},
|
1157
|
+
},
|
1158
|
+
{
|
1159
|
+
kind: 'Field',
|
1160
|
+
name: {
|
1161
|
+
kind: 'Name',
|
1162
|
+
value: 'variables',
|
1163
|
+
},
|
1164
|
+
},
|
1165
|
+
],
|
1166
|
+
},
|
1167
|
+
},
|
1168
|
+
],
|
1169
|
+
},
|
1170
|
+
},
|
1171
|
+
],
|
1172
|
+
},
|
1173
|
+
},
|
1174
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'sticky' } },
|
1175
|
+
],
|
1176
|
+
},
|
1177
|
+
},
|
1178
|
+
],
|
1179
|
+
},
|
1180
|
+
},
|
1181
|
+
],
|
1182
|
+
},
|
1183
|
+
},
|
1184
|
+
],
|
1185
|
+
};
|
398
1186
|
/**
|
399
1187
|
* __useNotificationsQuery__
|
400
1188
|
*
|
@@ -422,7 +1210,40 @@ function useNotificationsSuspenseQuery(baseOptions) {
|
|
422
1210
|
const options = { ...defaultOptions, ...baseOptions };
|
423
1211
|
return Apollo.useSuspenseQuery(NotificationsDocument, options);
|
424
1212
|
}
|
425
|
-
const ShowNotificationDocument = {
|
1213
|
+
const ShowNotificationDocument = {
|
1214
|
+
kind: 'Document',
|
1215
|
+
definitions: [
|
1216
|
+
{
|
1217
|
+
kind: 'OperationDefinition',
|
1218
|
+
operation: 'query',
|
1219
|
+
name: { kind: 'Name', value: 'showNotification' },
|
1220
|
+
variableDefinitions: [
|
1221
|
+
{
|
1222
|
+
kind: 'VariableDefinition',
|
1223
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'notification' } },
|
1224
|
+
type: { kind: 'NamedType', name: { kind: 'Name', value: 'NotificationInput' } },
|
1225
|
+
},
|
1226
|
+
],
|
1227
|
+
selectionSet: {
|
1228
|
+
kind: 'SelectionSet',
|
1229
|
+
selections: [
|
1230
|
+
{
|
1231
|
+
kind: 'Field',
|
1232
|
+
name: { kind: 'Name', value: 'showNotification' },
|
1233
|
+
arguments: [
|
1234
|
+
{
|
1235
|
+
kind: 'Argument',
|
1236
|
+
name: { kind: 'Name', value: 'notification' },
|
1237
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'notification' } },
|
1238
|
+
},
|
1239
|
+
],
|
1240
|
+
directives: [{ kind: 'Directive', name: { kind: 'Name', value: 'client' } }],
|
1241
|
+
},
|
1242
|
+
],
|
1243
|
+
},
|
1244
|
+
},
|
1245
|
+
],
|
1246
|
+
};
|
426
1247
|
/**
|
427
1248
|
* __useShowNotificationQuery__
|
428
1249
|
*
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@adminide-stack/extension-api",
|
3
|
-
"version": "7.2.8-alpha.
|
3
|
+
"version": "7.2.8-alpha.9",
|
4
4
|
"description": "Workbench core for higher packages to depend on",
|
5
5
|
"license": "ISC",
|
6
6
|
"author": "CDMBase LLC",
|
@@ -37,7 +37,7 @@
|
|
37
37
|
}
|
38
38
|
},
|
39
39
|
"dependencies": {
|
40
|
-
"@adminide-stack/core": "7.2.8-alpha.
|
40
|
+
"@adminide-stack/core": "7.2.8-alpha.9",
|
41
41
|
"@workbench-stack/core": "3.6.0",
|
42
42
|
"abort-controller": "^2.0.0",
|
43
43
|
"abortable-rx": "^1.0.9",
|
@@ -60,5 +60,5 @@
|
|
60
60
|
"typescript": {
|
61
61
|
"definition": "lib/index.d.ts"
|
62
62
|
},
|
63
|
-
"gitHead": "
|
63
|
+
"gitHead": "665b4ef39a72aa2befd710b1364732a641302621"
|
64
64
|
}
|