Socket
Socket
Sign inDemoInstall

@git-stack/core

Package Overview
Dependencies
Maintainers
5
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@git-stack/core - npm Package Compare versions

Comparing version 0.10.1-alpha.39 to 0.10.3-alpha.0

90

CHANGELOG.md

@@ -6,92 +6,4 @@ # Change Log

## [0.10.1-alpha.39](https://github.com/cdmbase/git-stack/compare/v0.10.1-alpha.38...v0.10.1-alpha.39) (2020-05-13)
## [0.10.3-alpha.0](https://github.com/cdmbase/git-stack/compare/v0.0.1-alpha.27...v0.10.3-alpha.0) (2020-12-08)
**Note:** Version bump only for package @git-stack/core
## [0.10.1-alpha.38](https://github.com/cdmbase/git-stack/compare/v0.10.1-alpha.37...v0.10.1-alpha.38) (2020-05-13)
**Note:** Version bump only for package @git-stack/core
## [0.10.1-alpha.36](https://github.com/cdmbase/git-stack/compare/v0.10.1-alpha.35...v0.10.1-alpha.36) (2020-05-07)
**Note:** Version bump only for package @git-stack/core
## [0.10.1-alpha.35](https://github.com/cdmbase/git-stack/compare/v0.10.1-alpha.34...v0.10.1-alpha.35) (2020-05-05)
**Note:** Version bump only for package @git-stack/core
## [0.10.1-alpha.32](https://github.com/cdmbase/git-stack/compare/v0.10.1-alpha.31...v0.10.1-alpha.32) (2020-05-04)
**Note:** Version bump only for package @git-stack/core
## [0.10.1-alpha.30](https://github.com/cdmbase/fullstack-pro/compare/v0.10.1-alpha.29...v0.10.1-alpha.30) (2020-05-04)
**Note:** Version bump only for package @git-stack/core
## [0.10.1-alpha.28](https://github.com/cdmbase/fullstack-pro/compare/v0.10.1-alpha.27...v0.10.1-alpha.28) (2020-04-07)
**Note:** Version bump only for package @git-stack/core
## [0.10.1-alpha.27](https://github.com/cdmbase/fullstack-pro/compare/v0.10.1-alpha.26...v0.10.1-alpha.27) (2020-04-06)
**Note:** Version bump only for package @git-stack/core
## [0.10.1-alpha.13](https://github.com/cdmbase/fullstack-pro/compare/v0.10.1-alpha.12...v0.10.1-alpha.13) (2020-03-21)
**Note:** Version bump only for package @git-stack/core
## [0.10.1-alpha.6](https://github.com/cdmbase/fullstack-pro/compare/v0.10.1-alpha.5...v0.10.1-alpha.6) (2020-03-19)
**Note:** Version bump only for package @git-stack/core
## [0.10.1-alpha.1](https://github.com/cdmbase/fullstack-pro/compare/v0.10.1-alpha.0...v0.10.1-alpha.1) (2020-01-30)
**Note:** Version bump only for package @git-stack/core
## 0.10.1-alpha.0 (2020-01-30)
**Note:** Version bump only for package @git-stack/core

107

lib/index.js

@@ -370,2 +370,7 @@ module.exports =

;
/**
* A configuration settings can have one of the following possible scopes.
* Configuration scopes determine when a settings is available to the user through the Settings editor and
* whether the setting is applicable. If no scope is declared, the default is `window`.
*/
var ConfigurationScope;

@@ -405,2 +410,15 @@ (function (ConfigurationScope) {

;
var DevToolsOptionsMode;
(function (DevToolsOptionsMode) {
DevToolsOptionsMode["right"] = "right";
DevToolsOptionsMode["botton"] = "botton";
DevToolsOptionsMode["undocked"] = "undocked";
DevToolsOptionsMode["detach"] = "detach";
})(DevToolsOptionsMode = exports.DevToolsOptionsMode || (exports.DevToolsOptionsMode = {}));
;
var EnvironmentServiceAction;
(function (EnvironmentServiceAction) {
EnvironmentServiceAction["environment"] = "environment";
})(EnvironmentServiceAction = exports.EnvironmentServiceAction || (exports.EnvironmentServiceAction = {}));
;
var ExtensionKind;

@@ -453,5 +471,5 @@ (function (ExtensionKind) {

/**
* A model is in conflict mode when changes cannot be saved because the
* A model is in conflict mode when changes cannot be saved because the
* underlying file has changed. Models in conflict mode are always dirty.
*/
*/
FileModelState["CONFLICT"] = "CONFLICT";

@@ -461,5 +479,5 @@ /** A model is in orphan state when the underlying file has been deleted. */

/**
* Any error that happens during a save that is not causing the CONFLICT state.
* Any error that happens during a save that is not causing the CONFLICT state.
* Models in error mode are always dirty.
*/
*/
FileModelState["ERROR"] = "ERROR";

@@ -515,2 +533,8 @@ /** Loading */

;
var GraphqlCallType;
(function (GraphqlCallType) {
GraphqlCallType["mutation"] = "mutation";
GraphqlCallType["query"] = "query";
})(GraphqlCallType = exports.GraphqlCallType || (exports.GraphqlCallType = {}));
;
var HotExitConfiguration;

@@ -571,9 +595,41 @@ (function (HotExitConfiguration) {

(function (MoleculerServiceName) {
MoleculerServiceName["ConfigurationClientService"] = "ConfigurationClientService";
MoleculerServiceName["ConfigurationService"] = "ConfigurationService";
MoleculerServiceName["ConfigurationClientService"] = "ConfigurationClientService";
MoleculerServiceName["EnvironmentService"] = "EnvironmentService";
MoleculerServiceName["LifecycleService"] = "LifecycleService";
MoleculerServiceName["WorkbenchLifecycleEmitter"] = "WorkbenchLifecycleEmitter";
MoleculerServiceName["WorkbenchLifecycleListener"] = "WorkbenchLifecycleListener";
MoleculerServiceName["WorkspaceClientContextService"] = "WorkspaceClientContextService";
MoleculerServiceName["WorkspaceContextService"] = "WorkspaceContextService";
MoleculerServiceName["WorkspaceClientContextService"] = "WorkspaceClientContextService";
MoleculerServiceName["WorkspaceEventually"] = "WorkspaceEventually";
/** Following services will help to wait other services */
MoleculerServiceName["WorkspaceReady"] = "WorkspaceReady";
MoleculerServiceName["WorkspaceRestore"] = "WorkspaceRestore";
MoleculerServiceName["WorkspaceStarted"] = "WorkspaceStarted";
MoleculerServiceName["dummy"] = "dummy";
})(MoleculerServiceName = exports.MoleculerServiceName || (exports.MoleculerServiceName = {}));
;
var NotificationChangeType;
(function (NotificationChangeType) {
NotificationChangeType["ADD"] = "ADD";
NotificationChangeType["CHANGE"] = "CHANGE";
NotificationChangeType["REMOVE"] = "REMOVE";
})(NotificationChangeType = exports.NotificationChangeType || (exports.NotificationChangeType = {}));
;
var NotificationSeverity;
(function (NotificationSeverity) {
NotificationSeverity["Ignore"] = "Ignore";
NotificationSeverity["Info"] = "Info";
NotificationSeverity["Warning"] = "Warning";
NotificationSeverity["Error"] = "Error";
})(NotificationSeverity = exports.NotificationSeverity || (exports.NotificationSeverity = {}));
;
var NotificationViewItemLabelKind;
(function (NotificationViewItemLabelKind) {
NotificationViewItemLabelKind["SEVERITY"] = "SEVERITY";
NotificationViewItemLabelKind["MESSAGE"] = "MESSAGE";
NotificationViewItemLabelKind["ACTIONS"] = "ACTIONS";
NotificationViewItemLabelKind["PROGRESS"] = "PROGRESS";
})(NotificationViewItemLabelKind = exports.NotificationViewItemLabelKind || (exports.NotificationViewItemLabelKind = {}));
;
var OpenContext;

@@ -595,2 +651,14 @@ (function (OpenContext) {

;
var OpenDialogOptionsProperties;
(function (OpenDialogOptionsProperties) {
OpenDialogOptionsProperties["openFile"] = "openFile";
OpenDialogOptionsProperties["openDirectory"] = "openDirectory";
OpenDialogOptionsProperties["multiSelections"] = "multiSelections";
OpenDialogOptionsProperties["showHiddenFiles"] = "showHiddenFiles";
OpenDialogOptionsProperties["createDirectory"] = "createDirectory";
OpenDialogOptionsProperties["promptToCreate"] = "promptToCreate";
OpenDialogOptionsProperties["noResolveAliases"] = "noResolveAliases";
OpenDialogOptionsProperties["treatPackageAsDirectory"] = "treatPackageAsDirectory";
})(OpenDialogOptionsProperties = exports.OpenDialogOptionsProperties || (exports.OpenDialogOptionsProperties = {}));
;
var RawServiceState;

@@ -622,2 +690,9 @@ (function (RawServiceState) {

;
var RunActionInWindowRequestFrom;
(function (RunActionInWindowRequestFrom) {
RunActionInWindowRequestFrom["menu"] = "menu";
RunActionInWindowRequestFrom["touchbar"] = "touchbar";
RunActionInWindowRequestFrom["mouse"] = "mouse";
})(RunActionInWindowRequestFrom = exports.RunActionInWindowRequestFrom || (exports.RunActionInWindowRequestFrom = {}));
;
var SaveReason;

@@ -665,2 +740,10 @@ (function (SaveReason) {

;
var StorageScope;
(function (StorageScope) {
/** The stored data will be scoped to all workspaces of this domain. */
StorageScope["GLOBAL"] = "GLOBAL";
/** The stored data will be scoped to the current workspace. */
StorageScope["WORKSPACE"] = "WORKSPACE";
})(StorageScope = exports.StorageScope || (exports.StorageScope = {}));
;
var TextFileOperationResult;

@@ -1001,5 +1084,5 @@ (function (TextFileOperationResult) {

`;
exports.headContentDocument = graphql_tag_1.default `
query headContent($resource: String!) {
headContent(resource: $resource) {
exports.gitContentDocument = graphql_tag_1.default `
query gitContent($resource: String!) {
gitContent(resource: $resource) {
status

@@ -1044,5 +1127,5 @@ path

`;
exports.headContentDataDocument = graphql_tag_1.default `
subscription headContentData($resource: String!) {
headContentData(resource: $resource) {
exports.gitContentDataDocument = graphql_tag_1.default `
subscription gitContentData($resource: String!) {
gitContentData(resource: $resource) {
stdout

@@ -1049,0 +1132,0 @@ path

{
"name": "@git-stack/core",
"version": "0.10.1-alpha.39",
"version": "0.10.3-alpha.0",
"description": "GraphQL for sample",

@@ -60,3 +60,3 @@ "main": "lib/index.js",

},
"gitHead": "5914f33ae4d9918bdbbd65305aa28aefd446f319"
"gitHead": "c3db3ab69a5d006427d45e76306bd43fd665b6e0"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc