@adminide-stack/extension-api 9.0.6-alpha.6 → 9.1.1-alpha.19
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/lib/index.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export{graphQLContent}from'./interfaces/graphql.js';export{ContributableViewContainer,IContributableMenu}from'./interfaces/contributions/contribution.js';export{EMPTY_MODEL}from'./interfaces/model.js';export{match,score}from'./interfaces/text-document.js';export{ContextMenuDocument,CopyDocument,ExtensionsByLimitDocument,GalleryDocument,GalleryExtensionDocument,HideContextMenuDocument,
|
1
|
+
export{graphQLContent}from'./interfaces/graphql.js';export{ContributableViewContainer,IContributableMenu}from'./interfaces/contributions/contribution.js';export{EMPTY_MODEL}from'./interfaces/model.js';export{match,score}from'./interfaces/text-document.js';export{ContextMenuDocument,CopyDocument,ExtensionsByLimitDocument,GalleryDocument,GalleryExtensionDocument,HideContextMenuDocument,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}from'./interfaces/generated-models.js';export{WebviewContentPurpose}from'./interfaces/webview/webview.js';export{EditorPosition}from'./protocol/editor-missing-types.js';export{HostIdentifier,ProxyIdentifier,RequestType,TransportType,createExtHostContextProxyIdentifier,createMainContextProxyIdentifier,getStringIdentifierForProxy}from'./protocol/proxy-identifier.js';export{modes}from'./protocol/temporary-types.js';export{ClientContext}from'./protocol/client.protocol.js';export{ISuggestDataDtoField,ISuggestResultDtoField,IdObject,ObjectIdentifier,reviveWorkspaceEditDto}from'./protocol/common.protocol.js';export{editorGroupToViewColumn,viewColumnToEditorGroup}from'./protocol/shared/editor.js';export{ExtHostContext,MainContext}from'./protocol/server.protocol.js';export{ArgType,MessageBuffer,MessageIO,MessageType,RPCProtocol,RequestInitiator,ResponsiveState,safeStringify}from'./protocol/rpc-protocol.js';export{RPCLogger}from'./protocol/rpc-logger.js';export{createBarrier}from'./utils/helper.test.js';export{flattenAndCompact,generateContributionId,isPromise,isSubscribable,tryCatchPromise}from'./utils/util.js';export{asError,isErrorLike}from'./utils/errors.js';export{getScriptURLFromExtensionManifest}from'./utils/extensions.js';export{combineLatestOrDefault}from'./utils/rxjs/combineLatestOrDefault.js';import*as pathsUtil from'./utils/paths-util.js';export{pathsUtil as path };export{ConfigurationTarget,Disposable,LogLevel,RelativePattern}from'./core/types/ext-host-types.js';export{Expression,TemplateExpression,parse,parseTemplate}from'./core/expr/evaluator.js';export{Lexer,OPERATORS,OPERATOR_CHARS,TemplateLexer,TokenType}from'./core/expr/lexer.js';export{Parser,TemplateParser}from'./core/expr/parser.js';export{ConnectionError,ConnectionErrors,createConnection}from'./connections/jsonrpc2/connection.js';export{createWebWorkerMessageTransports}from'./connections/jsonrpc2/transports/webWorker.js';export{BrowserConsoleTracer,noopTracer}from'./connections/jsonrpc2/trace.js';export{createMessagePipe,createMessageTransports}from'./connections/jsonrpc2/test-helper.js';export{BrowserRemoteRPC}from'./connections/remote-rpc/browser-remote-rpc.js';export{createExtensionProxy,createProxy,createProxyAndHandleRequests,handleRequests,handleServerProxyRequest,handleServerProxyRequests}from'./connections/proxy/proxy.js';export{ClientTypes}from'./constants/types.js';export{COMMAND_ACTION_TYPES,CONTRIBUTION_ACTION_TYPES,EXTENSION_ACTION_TYPES,SETTINGS_ACTION_TYPES}from'./constants/action-types.js';export{middleware}from'./middlewares/extensionController.js';
|
@@ -136,10 +136,6 @@ export type IBundles = {
|
|
136
136
|
browser?: Maybe<Scalars['String']['output']>;
|
137
137
|
server?: Maybe<Scalars['String']['output']>;
|
138
138
|
};
|
139
|
-
export declare enum ICacheControlScope {
|
140
|
-
Private = "PRIVATE",
|
141
|
-
Public = "PUBLIC"
|
142
|
-
}
|
143
139
|
export declare enum IClientContainerService {
|
144
140
|
ExtensionController = "ExtensionController"
|
145
141
|
}
|
@@ -1241,7 +1237,7 @@ export type IMessageLinkInput = {
|
|
1241
1237
|
export declare enum IMoleculerCronServiceName {
|
1242
1238
|
Dummy = "dummy"
|
1243
1239
|
}
|
1244
|
-
/**
|
1240
|
+
/** All Moleculer Topic names are extended from this. */
|
1245
1241
|
export declare enum IMoleculerServiceName {
|
1246
1242
|
Dummy = "dummy"
|
1247
1243
|
}
|
@@ -2370,7 +2366,7 @@ export declare function useContextMenuQuery(baseOptions?: Apollo.QueryHookOption
|
|
2370
2366
|
export declare function useContextMenuLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IContextMenuQuery, IContextMenuQueryVariables>): Apollo.LazyQueryResultTuple<IContextMenuQuery, Exact<{
|
2371
2367
|
[key: string]: never;
|
2372
2368
|
}>>;
|
2373
|
-
export declare function useContextMenuSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IContextMenuQuery, IContextMenuQueryVariables>): Apollo.UseSuspenseQueryResult<IContextMenuQuery, Exact<{
|
2369
|
+
export declare function useContextMenuSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IContextMenuQuery, IContextMenuQueryVariables>): Apollo.UseSuspenseQueryResult<IContextMenuQuery, Exact<{
|
2374
2370
|
[key: string]: never;
|
2375
2371
|
}>>;
|
2376
2372
|
export type ContextMenuQueryHookResult = ReturnType<typeof useContextMenuQuery>;
|
@@ -2405,7 +2401,7 @@ export declare function useGalleryExtensionQuery(baseOptions: Apollo.QueryHookOp
|
|
2405
2401
|
export declare function useGalleryExtensionLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGalleryExtensionQuery, IGalleryExtensionQueryVariables>): Apollo.LazyQueryResultTuple<IGalleryExtensionQuery, Exact<{
|
2406
2402
|
extensionID: Scalars["String"]["input"];
|
2407
2403
|
}>>;
|
2408
|
-
export declare function useGalleryExtensionSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGalleryExtensionQuery, IGalleryExtensionQueryVariables>): Apollo.UseSuspenseQueryResult<IGalleryExtensionQuery, Exact<{
|
2404
|
+
export declare function useGalleryExtensionSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGalleryExtensionQuery, IGalleryExtensionQueryVariables>): Apollo.UseSuspenseQueryResult<IGalleryExtensionQuery, Exact<{
|
2409
2405
|
extensionID: Scalars["String"]["input"];
|
2410
2406
|
}>>;
|
2411
2407
|
export type GalleryExtensionQueryHookResult = ReturnType<typeof useGalleryExtensionQuery>;
|
@@ -2443,7 +2439,7 @@ export declare function useExtensionsByLimitLazyQuery(baseOptions?: Apollo.LazyQ
|
|
2443
2439
|
first: Scalars["Int"]["input"];
|
2444
2440
|
prioritizeExtensionIDs: Array<Scalars["String"]["input"]> | Scalars["String"]["input"];
|
2445
2441
|
}>>;
|
2446
|
-
export declare function useExtensionsByLimitSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IExtensionsByLimitQuery, IExtensionsByLimitQueryVariables>): Apollo.UseSuspenseQueryResult<IExtensionsByLimitQuery, Exact<{
|
2442
|
+
export declare function useExtensionsByLimitSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IExtensionsByLimitQuery, IExtensionsByLimitQueryVariables>): Apollo.UseSuspenseQueryResult<IExtensionsByLimitQuery, Exact<{
|
2447
2443
|
first: Scalars["Int"]["input"];
|
2448
2444
|
prioritizeExtensionIDs: Array<Scalars["String"]["input"]> | Scalars["String"]["input"];
|
2449
2445
|
}>>;
|
@@ -2474,7 +2470,7 @@ export declare function useGalleryQuery(baseOptions?: Apollo.QueryHookOptions<IG
|
|
2474
2470
|
export declare function useGalleryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGalleryQuery, IGalleryQueryVariables>): Apollo.LazyQueryResultTuple<IGalleryQuery, Exact<{
|
2475
2471
|
query?: InputMaybe<IGalleryQueryInput>;
|
2476
2472
|
}>>;
|
2477
|
-
export declare function useGallerySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGalleryQuery, IGalleryQueryVariables>): Apollo.UseSuspenseQueryResult<IGalleryQuery, Exact<{
|
2473
|
+
export declare function useGallerySuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGalleryQuery, IGalleryQueryVariables>): Apollo.UseSuspenseQueryResult<IGalleryQuery, Exact<{
|
2478
2474
|
query?: InputMaybe<IGalleryQueryInput>;
|
2479
2475
|
}>>;
|
2480
2476
|
export type GalleryQueryHookResult = ReturnType<typeof useGalleryQuery>;
|
@@ -2503,7 +2499,7 @@ export declare function useInstalledExtensionsQuery(baseOptions?: Apollo.QueryHo
|
|
2503
2499
|
export declare function useInstalledExtensionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IInstalledExtensionsQuery, IInstalledExtensionsQueryVariables>): Apollo.LazyQueryResultTuple<IInstalledExtensionsQuery, Exact<{
|
2504
2500
|
[key: string]: never;
|
2505
2501
|
}>>;
|
2506
|
-
export declare function useInstalledExtensionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IInstalledExtensionsQuery, IInstalledExtensionsQueryVariables>): Apollo.UseSuspenseQueryResult<IInstalledExtensionsQuery, Exact<{
|
2502
|
+
export declare function useInstalledExtensionsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IInstalledExtensionsQuery, IInstalledExtensionsQueryVariables>): Apollo.UseSuspenseQueryResult<IInstalledExtensionsQuery, Exact<{
|
2507
2503
|
[key: string]: never;
|
2508
2504
|
}>>;
|
2509
2505
|
export type InstalledExtensionsQueryHookResult = ReturnType<typeof useInstalledExtensionsQuery>;
|
@@ -2532,7 +2528,7 @@ export declare function useNotificationsQuery(baseOptions?: Apollo.QueryHookOpti
|
|
2532
2528
|
export declare function useNotificationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<INotificationsQuery, INotificationsQueryVariables>): Apollo.LazyQueryResultTuple<INotificationsQuery, Exact<{
|
2533
2529
|
[key: string]: never;
|
2534
2530
|
}>>;
|
2535
|
-
export declare function useNotificationsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<INotificationsQuery, INotificationsQueryVariables>): Apollo.UseSuspenseQueryResult<INotificationsQuery, Exact<{
|
2531
|
+
export declare function useNotificationsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<INotificationsQuery, INotificationsQueryVariables>): Apollo.UseSuspenseQueryResult<INotificationsQuery, Exact<{
|
2536
2532
|
[key: string]: never;
|
2537
2533
|
}>>;
|
2538
2534
|
export type NotificationsQueryHookResult = ReturnType<typeof useNotificationsQuery>;
|
@@ -2562,7 +2558,7 @@ export declare function useShowNotificationQuery(baseOptions?: Apollo.QueryHookO
|
|
2562
2558
|
export declare function useShowNotificationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IShowNotificationQuery, IShowNotificationQueryVariables>): Apollo.LazyQueryResultTuple<IShowNotificationQuery, Exact<{
|
2563
2559
|
notification?: InputMaybe<INotificationInput>;
|
2564
2560
|
}>>;
|
2565
|
-
export declare function useShowNotificationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IShowNotificationQuery, IShowNotificationQueryVariables>): Apollo.UseSuspenseQueryResult<IShowNotificationQuery, Exact<{
|
2561
|
+
export declare function useShowNotificationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IShowNotificationQuery, IShowNotificationQueryVariables>): Apollo.UseSuspenseQueryResult<IShowNotificationQuery, Exact<{
|
2566
2562
|
notification?: InputMaybe<INotificationInput>;
|
2567
2563
|
}>>;
|
2568
2564
|
export type ShowNotificationQueryHookResult = ReturnType<typeof useShowNotificationQuery>;
|
@@ -2617,7 +2613,6 @@ export type IResolversTypes = {
|
|
2617
2613
|
BaseExtension: ResolverTypeWrapper<IBaseExtension>;
|
2618
2614
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']['output']>;
|
2619
2615
|
Bundles: ResolverTypeWrapper<IBundles>;
|
2620
|
-
CacheControlScope: ICacheControlScope;
|
2621
2616
|
ClientContainerService: IClientContainerService;
|
2622
2617
|
CommandHandlerDescriptionType: ResolverTypeWrapper<ICommandHandlerDescriptionType>;
|
2623
2618
|
CommandType: ResolverTypeWrapper<ICommandType>;
|
@@ -2938,11 +2933,6 @@ export type IResolversParentTypes = {
|
|
2938
2933
|
URIInput: Scalars['URIInput']['output'];
|
2939
2934
|
ViewContainer: IViewContainer;
|
2940
2935
|
};
|
2941
|
-
export type ICacheControlDirectiveArgs = {
|
2942
|
-
maxAge?: Maybe<Scalars['Int']['input']>;
|
2943
|
-
scope?: Maybe<ICacheControlScope>;
|
2944
|
-
};
|
2945
|
-
export type ICacheControlDirectiveResolver<Result, Parent, ContextType = MyContext, Args = ICacheControlDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
2946
2936
|
export type IAdminIdeSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AdminIdeSettings'] = IResolversParentTypes['AdminIdeSettings']> = {
|
2947
2937
|
dummy?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
2948
2938
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -3901,6 +3891,3 @@ export type IResolvers<ContextType = MyContext> = {
|
|
3901
3891
|
URIInput?: GraphQLScalarType;
|
3902
3892
|
ViewContainer?: IViewContainerResolvers<ContextType>;
|
3903
3893
|
};
|
3904
|
-
export type IDirectiveResolvers<ContextType = MyContext> = {
|
3905
|
-
cacheControl?: ICacheControlDirectiveResolver<any, any, ContextType>;
|
3906
|
-
};
|
@@ -1,9 +1,4 @@
|
|
1
1
|
import*as Apollo from'@apollo/client';const defaultOptions = {};
|
2
|
-
var ICacheControlScope;
|
3
|
-
(function (ICacheControlScope) {
|
4
|
-
ICacheControlScope["Private"] = "PRIVATE";
|
5
|
-
ICacheControlScope["Public"] = "PUBLIC";
|
6
|
-
})(ICacheControlScope || (ICacheControlScope = {}));
|
7
2
|
var IClientContainerService;
|
8
3
|
(function (IClientContainerService) {
|
9
4
|
IClientContainerService["ExtensionController"] = "ExtensionController";
|
@@ -75,7 +70,7 @@ var IMoleculerCronServiceName;
|
|
75
70
|
(function (IMoleculerCronServiceName) {
|
76
71
|
IMoleculerCronServiceName["Dummy"] = "dummy";
|
77
72
|
})(IMoleculerCronServiceName || (IMoleculerCronServiceName = {}));
|
78
|
-
/**
|
73
|
+
/** All Moleculer Topic names are extended from this. */
|
79
74
|
var IMoleculerServiceName;
|
80
75
|
(function (IMoleculerServiceName) {
|
81
76
|
IMoleculerServiceName["Dummy"] = "dummy";
|
@@ -568,7 +563,7 @@ function useContextMenuLazyQuery(baseOptions) {
|
|
568
563
|
return Apollo.useLazyQuery(ContextMenuDocument, options);
|
569
564
|
}
|
570
565
|
function useContextMenuSuspenseQuery(baseOptions) {
|
571
|
-
const options = { ...defaultOptions, ...baseOptions };
|
566
|
+
const options = baseOptions === Apollo.skipToken ? baseOptions : { ...defaultOptions, ...baseOptions };
|
572
567
|
return Apollo.useSuspenseQuery(ContextMenuDocument, options);
|
573
568
|
}
|
574
569
|
const GalleryExtensionDocument = {
|
@@ -678,7 +673,7 @@ function useGalleryExtensionLazyQuery(baseOptions) {
|
|
678
673
|
return Apollo.useLazyQuery(GalleryExtensionDocument, options);
|
679
674
|
}
|
680
675
|
function useGalleryExtensionSuspenseQuery(baseOptions) {
|
681
|
-
const options = { ...defaultOptions, ...baseOptions };
|
676
|
+
const options = baseOptions === Apollo.skipToken ? baseOptions : { ...defaultOptions, ...baseOptions };
|
682
677
|
return Apollo.useSuspenseQuery(GalleryExtensionDocument, options);
|
683
678
|
}
|
684
679
|
const ExtensionsByLimitDocument = {
|
@@ -793,7 +788,7 @@ function useExtensionsByLimitLazyQuery(baseOptions) {
|
|
793
788
|
return Apollo.useLazyQuery(ExtensionsByLimitDocument, options);
|
794
789
|
}
|
795
790
|
function useExtensionsByLimitSuspenseQuery(baseOptions) {
|
796
|
-
const options = { ...defaultOptions, ...baseOptions };
|
791
|
+
const options = baseOptions === Apollo.skipToken ? baseOptions : { ...defaultOptions, ...baseOptions };
|
797
792
|
return Apollo.useSuspenseQuery(ExtensionsByLimitDocument, options);
|
798
793
|
}
|
799
794
|
const GalleryDocument = {
|
@@ -906,7 +901,7 @@ function useGalleryLazyQuery(baseOptions) {
|
|
906
901
|
return Apollo.useLazyQuery(GalleryDocument, options);
|
907
902
|
}
|
908
903
|
function useGallerySuspenseQuery(baseOptions) {
|
909
|
-
const options = { ...defaultOptions, ...baseOptions };
|
904
|
+
const options = baseOptions === Apollo.skipToken ? baseOptions : { ...defaultOptions, ...baseOptions };
|
910
905
|
return Apollo.useSuspenseQuery(GalleryDocument, options);
|
911
906
|
}
|
912
907
|
const InstalledExtensionsDocument = {
|
@@ -1007,7 +1002,7 @@ function useInstalledExtensionsLazyQuery(baseOptions) {
|
|
1007
1002
|
return Apollo.useLazyQuery(InstalledExtensionsDocument, options);
|
1008
1003
|
}
|
1009
1004
|
function useInstalledExtensionsSuspenseQuery(baseOptions) {
|
1010
|
-
const options = { ...defaultOptions, ...baseOptions };
|
1005
|
+
const options = baseOptions === Apollo.skipToken ? baseOptions : { ...defaultOptions, ...baseOptions };
|
1011
1006
|
return Apollo.useSuspenseQuery(InstalledExtensionsDocument, options);
|
1012
1007
|
}
|
1013
1008
|
const NotificationsDocument = {
|
@@ -1215,7 +1210,7 @@ function useNotificationsLazyQuery(baseOptions) {
|
|
1215
1210
|
return Apollo.useLazyQuery(NotificationsDocument, options);
|
1216
1211
|
}
|
1217
1212
|
function useNotificationsSuspenseQuery(baseOptions) {
|
1218
|
-
const options = { ...defaultOptions, ...baseOptions };
|
1213
|
+
const options = baseOptions === Apollo.skipToken ? baseOptions : { ...defaultOptions, ...baseOptions };
|
1219
1214
|
return Apollo.useSuspenseQuery(NotificationsDocument, options);
|
1220
1215
|
}
|
1221
1216
|
const ShowNotificationDocument = {
|
@@ -1277,6 +1272,6 @@ function useShowNotificationLazyQuery(baseOptions) {
|
|
1277
1272
|
return Apollo.useLazyQuery(ShowNotificationDocument, options);
|
1278
1273
|
}
|
1279
1274
|
function useShowNotificationSuspenseQuery(baseOptions) {
|
1280
|
-
const options = { ...defaultOptions, ...baseOptions };
|
1275
|
+
const options = baseOptions === Apollo.skipToken ? baseOptions : { ...defaultOptions, ...baseOptions };
|
1281
1276
|
return Apollo.useSuspenseQuery(ShowNotificationDocument, options);
|
1282
|
-
}export{ContextMenuDocument,CopyDocument,ExtensionsByLimitDocument,GalleryDocument,GalleryExtensionDocument,HideContextMenuDocument,
|
1277
|
+
}export{ContextMenuDocument,CopyDocument,ExtensionsByLimitDocument,GalleryDocument,GalleryExtensionDocument,HideContextMenuDocument,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};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@adminide-stack/extension-api",
|
3
|
-
"version": "9.
|
3
|
+
"version": "9.1.1-alpha.19",
|
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": "9.
|
40
|
+
"@adminide-stack/core": "9.1.1-alpha.19",
|
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": "55fb6efabcc1709cae151445bc98aabd8a1e9e00"
|
64
64
|
}
|