@adminide-stack/extension-api 9.0.6-alpha.3 → 9.0.6-alpha.40
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
|
}
|
@@ -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";
|
@@ -1279,4 +1274,4 @@ function useShowNotificationLazyQuery(baseOptions) {
|
|
1279
1274
|
function useShowNotificationSuspenseQuery(baseOptions) {
|
1280
1275
|
const options = { ...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.0.6-alpha.
|
3
|
+
"version": "9.0.6-alpha.40",
|
4
4
|
"description": "Workbench core for higher packages to depend on",
|
5
5
|
"license": "ISC",
|
6
6
|
"author": "CDMBase LLC",
|
@@ -37,11 +37,11 @@
|
|
37
37
|
}
|
38
38
|
},
|
39
39
|
"dependencies": {
|
40
|
-
"@adminide-stack/core": "9.0.6-alpha.
|
40
|
+
"@adminide-stack/core": "9.0.6-alpha.40",
|
41
41
|
"@workbench-stack/core": "3.6.0",
|
42
42
|
"abort-controller": "^2.0.0",
|
43
43
|
"abortable-rx": "^1.0.9",
|
44
|
-
"cdeops": "9.0.6-alpha.
|
44
|
+
"cdeops": "9.0.6-alpha.6",
|
45
45
|
"minimatch": "^9.0.0",
|
46
46
|
"queueing-subject": "0.3.4",
|
47
47
|
"utility-types": "^3.10.0",
|
@@ -60,5 +60,5 @@
|
|
60
60
|
"typescript": {
|
61
61
|
"definition": "lib/index.d.ts"
|
62
62
|
},
|
63
|
-
"gitHead": "
|
63
|
+
"gitHead": "98fb3bd1ce5dfcddf753b123098648ea05195c4c"
|
64
64
|
}
|