Socket
Socket
Sign inDemoInstall

@files-stack/graphql-gql

Package Overview
Dependencies
Maintainers
1
Versions
162
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@files-stack/graphql-gql - npm Package Compare versions

Comparing version 0.0.11 to 0.0.12

24

lib/index.js

@@ -107,3 +107,2 @@ module.exports =

__export(__webpack_require__(15));
__export(__webpack_require__(18));

@@ -510,27 +509,4 @@

/***/ }),
/* 18 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var FileChangeType;
(function (FileChangeType) {
FileChangeType["UPDATED"] = "UPDATED";
FileChangeType["ADDED"] = "ADDED";
FileChangeType["DELETED"] = "DELETED";
})(FileChangeType = exports.FileChangeType || (exports.FileChangeType = {}));
var FileOperation;
(function (FileOperation) {
FileOperation[FileOperation["CREATE"] = 0] = "CREATE";
FileOperation[FileOperation["DELETE"] = 1] = "DELETE";
FileOperation[FileOperation["MOVE"] = 2] = "MOVE";
FileOperation[FileOperation["COPY"] = 3] = "COPY";
FileOperation[FileOperation["IMPORT"] = 4] = "IMPORT";
})(FileOperation = exports.FileOperation || (exports.FileOperation = {}));
/***/ })
/******/ ]);
//# sourceMappingURL=index.js.map

36

lib/schema.d.ts

@@ -8,14 +8,2 @@ export declare type IUpdateContentOptions = {

};
export declare enum FileChangeType {
UPDATED = "UPDATED",
ADDED = "ADDED",
DELETED = "DELETED",
}
export declare enum FileOperation {
CREATE = 0,
DELETE = 1,
MOVE = 2,
COPY = 3,
IMPORT = 4,
}
export declare type CopyFileMutationVariables = {

@@ -70,8 +58,2 @@ source: string;

};
export declare type WatchFileMutation = {
watchFileChanges: boolean | null;
};
export declare type UnwatchFileMutation = {
unwatchFileChanges: boolean | null;
};
export declare type MoveFileMutationVariables = {

@@ -123,2 +105,14 @@ source: string;

};
export declare type UnwatchFileMutationVariables = {
resource: string;
};
export declare type UnwatchFileMutation = {
unwatchFileChanges: boolean | null;
};
export declare type WatchFileMutationVariables = {
resource: string;
};
export declare type WatchFileMutation = {
watchFileChanges: boolean | null;
};
export declare type FileContentQueryVariables = {

@@ -160,2 +154,5 @@ resource: string;

};
export declare type FileDataSubscriptionVariables = {
resource: string;
};
export declare type FileDataSubscription = {

@@ -167,2 +164,5 @@ fileData: {

};
export declare type FileOperationSubscriptionVariables = {
resource: string;
};
export declare type FileOperationSubscription = {

@@ -169,0 +169,0 @@ fileOperation: {

{
"name": "@files-stack/graphql-gql",
"version": "0.0.11",
"version": "0.0.12",
"description": "Sample core for higher packages to depend on",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

Sorry, the diff of this file is not supported yet

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