mirror of
https://github.com/yldio/copilot.git
synced 2024-11-10 21:30:06 +02:00
use port 4000 by default
also: - use prettier - uddate dependencies - document other ways of setting up credentials
This commit is contained in:
parent
29b5e2b63d
commit
04e604eb8e
@ -1,13 +1,27 @@
|
|||||||
{
|
{
|
||||||
"extends": "semistandard",
|
"extends": [
|
||||||
|
"eslint:recommended",
|
||||||
|
"prettier"
|
||||||
|
],
|
||||||
|
"plugins": [
|
||||||
|
"prettier"
|
||||||
|
],
|
||||||
"rules": {
|
"rules": {
|
||||||
"no-unused-vars": "error",
|
"no-console": 0,
|
||||||
"space-before-function-paren": [2, "never"],
|
"prettier/prettier": ["error", {
|
||||||
"object-curly-newline": ["error", {
|
"useTabs": false,
|
||||||
"minProperties": 1
|
"printWidth": 80,
|
||||||
}],
|
"tabWidth": 2,
|
||||||
"sort-vars": ["error", {
|
"singleQuote": true,
|
||||||
"ignoreCase": true
|
"trailingComma": "none",
|
||||||
|
"bracketSpacing": true,
|
||||||
|
"jsxBracketSameLine": false,
|
||||||
|
"parser": "flow",
|
||||||
|
"semi": true
|
||||||
}]
|
}]
|
||||||
|
},
|
||||||
|
"env": {
|
||||||
|
"es6": true,
|
||||||
|
"node": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ Proof-of-Concept of the [Joyent Cloud API](https://apidocs.joyent.com/cloudapi/)
|
|||||||
|
|
||||||
### Setup Credentials
|
### Setup Credentials
|
||||||
|
|
||||||
Create `credentials.json`, TODO, use environment variables.
|
Create `credentials.json`:
|
||||||
|
|
||||||
```json5
|
```json5
|
||||||
{
|
{
|
||||||
@ -18,6 +18,17 @@ Create `credentials.json`, TODO, use environment variables.
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Alternatively you can just use ENV variables:
|
||||||
|
|
||||||
|
```
|
||||||
|
SDC_URL
|
||||||
|
SDC_ACCOUNT
|
||||||
|
SDC_USER
|
||||||
|
SDC_KEY_ID
|
||||||
|
```
|
||||||
|
|
||||||
|
As a third option you can use a `.env` file.
|
||||||
|
|
||||||
### Install Dependencies and run
|
### Install Dependencies and run
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
@ -27,7 +38,7 @@ yarn start
|
|||||||
|
|
||||||
### Visit GraphiQL
|
### Visit GraphiQL
|
||||||
|
|
||||||
Go-to http://0.0.0.0:3000/graphql to use the REPL with interactive documentation.
|
Go-to http://0.0.0.0:4000/graphql to use the REPL with interactive documentation.
|
||||||
|
|
||||||
![GraphiQL](https://cloud.githubusercontent.com/assets/524382/19242455/1e371978-8f0b-11e6-9563-d6f5b93fa63c.png)
|
![GraphiQL](https://cloud.githubusercontent.com/assets/524382/19242455/1e371978-8f0b-11e6-9563-d6f5b93fa63c.png)
|
||||||
|
|
||||||
@ -152,3 +163,4 @@ Go-to http://0.0.0.0:3000/graphql to use the REPL with interactive documentation
|
|||||||
- [ ] GetNic
|
- [ ] GetNic
|
||||||
- [ ] AddNic
|
- [ ] AddNic
|
||||||
- [ ] RemoveNic
|
- [ ] RemoveNic
|
||||||
|
|
||||||
|
@ -1,47 +1,38 @@
|
|||||||
{
|
{
|
||||||
"consul": "{{ .CONSUL }}:8500",
|
"consul": "{{ .CONSUL }}:8500",
|
||||||
"services": [
|
"services": [{
|
||||||
{
|
"name": "joyent-portal-cloudapi-graphql",
|
||||||
"name": "joyent-portal-cloudapi-graphql",
|
"port": 4000,
|
||||||
"port": 3000,
|
"health": "/usr/bin/curl -o /dev/null --fail -s http://localhost:4000/graphql",
|
||||||
"health": "/usr/bin/curl -o /dev/null --fail -s http://localhost:3000/",
|
"poll": 3,
|
||||||
"poll": 3,
|
"ttl": 10
|
||||||
"ttl": 10
|
}],
|
||||||
}
|
|
||||||
],
|
|
||||||
"backends": [
|
|
||||||
],
|
|
||||||
"telemetry": {
|
"telemetry": {
|
||||||
"port": 9090,
|
"port": 9090,
|
||||||
"sensors": [
|
"sensors": [{
|
||||||
{
|
"name": "graphql_memory_percent",
|
||||||
"name": "graphql_memory_percent",
|
"help": "percentage of memory used",
|
||||||
"help": "percentage of memory used",
|
"type": "gauge",
|
||||||
"type": "gauge",
|
"poll": 5,
|
||||||
"poll": 5,
|
"check": ["/bin/sensors", "memory"]
|
||||||
"check": ["/bin/sensors", "memory"]
|
}, {
|
||||||
},
|
"name": "graphql_cpu_load",
|
||||||
{
|
"help": "cpu load",
|
||||||
"name": "graphql_cpu_load",
|
"type": "gauge",
|
||||||
"help": "cpu load",
|
"poll": 5,
|
||||||
"type": "gauge",
|
"check": ["/bin/sensors", "cpu"]
|
||||||
"poll": 5,
|
}, {
|
||||||
"check": ["/bin/sensors", "cpu"]
|
"name": "graphql_disk_capacity",
|
||||||
},
|
"help": "disk capacity",
|
||||||
{
|
"type": "gauge",
|
||||||
"name": "graphql_disk_capacity",
|
"poll": 60,
|
||||||
"help": "disk capacity",
|
"check": ["/bin/sensors", "diskcapacity"]
|
||||||
"type": "gauge",
|
}, {
|
||||||
"poll": 60,
|
"name": "graphql_disk_usage",
|
||||||
"check": ["/bin/sensors", "diskcapacity"]
|
"help": "disk usage",
|
||||||
},
|
"type": "gauge",
|
||||||
{
|
"poll": 60,
|
||||||
"name": "graphql_disk_usage",
|
"check": ["/bin/sensors", "diskusage"]
|
||||||
"help": "disk usage",
|
}]
|
||||||
"type": "gauge",
|
|
||||||
"poll": 60,
|
|
||||||
"check": ["/bin/sensors", "diskusage"]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"main": "src/index.js",
|
"main": "src/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
"lint": "eslint src --fix",
|
||||||
"start": "node src/index.js",
|
"start": "node src/index.js",
|
||||||
"test": "make test"
|
"test": "make test"
|
||||||
},
|
},
|
||||||
@ -15,22 +16,16 @@
|
|||||||
"express-graphql": "^0.6.4",
|
"express-graphql": "^0.6.4",
|
||||||
"got": "^6.7.1",
|
"got": "^6.7.1",
|
||||||
"graphql": "^0.9.3",
|
"graphql": "^0.9.3",
|
||||||
"inherits": "^2.0.3",
|
|
||||||
"moment": "^2.18.1",
|
|
||||||
"smartdc-auth": "^2.5.2",
|
"smartdc-auth": "^2.5.2",
|
||||||
"triton": "^5.2.0",
|
"triton": "^5.2.0"
|
||||||
"user-home": "^2.0.0"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^0.19.1",
|
"ava": "^0.19.1",
|
||||||
"eslint": "3.19.0",
|
"eslint": "^3.19.0",
|
||||||
"eslint-config-semistandard": "^8.0.0",
|
"eslint-config-prettier": "^1.7.0",
|
||||||
"eslint-config-standard": "^10.2.0",
|
"eslint-plugin-prettier": "^2.0.1",
|
||||||
"eslint-plugin-import": "^2.2.0",
|
|
||||||
"eslint-plugin-node": "^4.2.2",
|
|
||||||
"eslint-plugin-promise": "^3.5.0",
|
|
||||||
"eslint-plugin-standard": "^3.0.1",
|
|
||||||
"nyc": "^10.2.0",
|
"nyc": "^10.2.0",
|
||||||
|
"prettier": "^1.2.2",
|
||||||
"tap-xunit": "^1.7.0"
|
"tap-xunit": "^1.7.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,6 @@ module.exports.get = () => {
|
|||||||
return request('getAccount');
|
return request('getAccount');
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.update = (ctx) => {
|
module.exports.update = ctx => {
|
||||||
return request('updateAccount', ctx);
|
return request('updateAccount', ctx);
|
||||||
};
|
};
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// const request = require('./request');
|
// const request = require('./request');
|
||||||
|
|
||||||
module.exports.get = (ctx) => {
|
module.exports.get = () => {
|
||||||
// return request('', ctx);
|
// return request('', ctx);
|
||||||
};
|
};
|
||||||
|
@ -4,6 +4,6 @@ module.exports.list = () => {
|
|||||||
return request('listFirewallRules', {});
|
return request('listFirewallRules', {});
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.get = (ctx) => {
|
module.exports.get = ctx => {
|
||||||
return request('getFirewallRule', ctx);
|
return request('getFirewallRule', ctx);
|
||||||
};
|
};
|
||||||
|
@ -4,34 +4,34 @@ module.exports.list = () => {
|
|||||||
return request('listFirewallRules', {});
|
return request('listFirewallRules', {});
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.listByMachine = (ctx) => {
|
module.exports.listByMachine = ctx => {
|
||||||
return request('listMachineFirewallRules', ctx);
|
return request('listMachineFirewallRules', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.listMachines = (ctx) => {
|
module.exports.listMachines = ctx => {
|
||||||
return request('listFirewallRuleMachines', ctx);
|
return request('listFirewallRuleMachines', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.get = (ctx) => {
|
module.exports.get = ctx => {
|
||||||
return request('getFirewallRule', ctx);
|
return request('getFirewallRule', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.create = (ctx) => {
|
module.exports.create = ctx => {
|
||||||
return request('createFirewallRule', ctx);
|
return request('createFirewallRule', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.update = (ctx) => {
|
module.exports.update = ctx => {
|
||||||
return request('updateFirewallRule', ctx);
|
return request('updateFirewallRule', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.enable = (ctx) => {
|
module.exports.enable = ctx => {
|
||||||
return request('enableFirewallRule', ctx);
|
return request('enableFirewallRule', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.disable = (ctx) => {
|
module.exports.disable = ctx => {
|
||||||
return request('disableFirewallRule', ctx);
|
return request('disableFirewallRule', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.destroy = (ctx) => {
|
module.exports.destroy = ctx => {
|
||||||
return request('deleteFirewallRule', ctx);
|
return request('deleteFirewallRule', ctx);
|
||||||
};
|
};
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
const request = require('./request');
|
const request = require('./request');
|
||||||
|
|
||||||
module.exports.list = (ctx) => {
|
module.exports.list = ctx => {
|
||||||
return request('listImages', ctx);
|
return request('listImages', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.get = (ctx) => {
|
module.exports.get = ctx => {
|
||||||
return request('getImage', ctx);
|
return request('getImage', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.create = (ctx) => {
|
module.exports.create = ctx => {
|
||||||
return request('createImageFromMachine', ctx);
|
return request('createImageFromMachine', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -16,7 +16,7 @@ module.exports.create = (ctx) => {
|
|||||||
// return request('UpdateImage', ctx);
|
// return request('UpdateImage', ctx);
|
||||||
// };
|
// };
|
||||||
|
|
||||||
module.exports.destroy = (uuid) => {
|
module.exports.destroy = uuid => {
|
||||||
return request('deleteImage', uuid);
|
return request('deleteImage', uuid);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2,16 +2,16 @@ const request = require('./request');
|
|||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
user: {
|
user: {
|
||||||
list: (ctx) => {
|
list: ctx => {
|
||||||
return request('listUserKeys', ctx);
|
return request('listUserKeys', ctx);
|
||||||
},
|
},
|
||||||
get: (ctx) => {
|
get: ctx => {
|
||||||
return request('getUserKey', ctx);
|
return request('getUserKey', ctx);
|
||||||
},
|
},
|
||||||
create: (ctx) => {
|
create: ctx => {
|
||||||
return request('createUserKey', ctx);
|
return request('createUserKey', ctx);
|
||||||
},
|
},
|
||||||
destroy: (ctx) => {
|
destroy: ctx => {
|
||||||
return request('deleteUserKey', ctx);
|
return request('deleteUserKey', ctx);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -20,15 +20,15 @@ module.exports = {
|
|||||||
return request('listKeys', {});
|
return request('listKeys', {});
|
||||||
},
|
},
|
||||||
|
|
||||||
get: (ctx) => {
|
get: ctx => {
|
||||||
return request('getKey', ctx);
|
return request('getKey', ctx);
|
||||||
},
|
},
|
||||||
|
|
||||||
create: (ctx) => {
|
create: ctx => {
|
||||||
return request('createKey', ctx);
|
return request('createKey', ctx);
|
||||||
},
|
},
|
||||||
|
|
||||||
destroy: (ctx) => {
|
destroy: ctx => {
|
||||||
return request('deleteKey', ctx);
|
return request('deleteKey', ctx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,104 +1,104 @@
|
|||||||
const request = require('./request');
|
const request = require('./request');
|
||||||
|
|
||||||
const snapshots = {
|
const snapshots = {
|
||||||
list: (ctx) => {
|
list: ctx => {
|
||||||
return request('listMachineSnapshots', ctx);
|
return request('listMachineSnapshots', ctx);
|
||||||
},
|
},
|
||||||
get: (ctx) => {
|
get: ctx => {
|
||||||
return request('getMachineSnapshot', ctx);
|
return request('getMachineSnapshot', ctx);
|
||||||
},
|
},
|
||||||
create: (ctx) => {
|
create: ctx => {
|
||||||
return request('createMachineSnapshot', ctx);
|
return request('createMachineSnapshot', ctx);
|
||||||
},
|
},
|
||||||
destroy: (ctx) => {
|
destroy: ctx => {
|
||||||
return request('deleteMachineSnapshot', ctx);
|
return request('deleteMachineSnapshot', ctx);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const metadata = {
|
const metadata = {
|
||||||
list: (ctx) => {
|
list: ctx => {
|
||||||
return request('', ctx);
|
return request('', ctx);
|
||||||
},
|
},
|
||||||
get: (ctx) => {
|
get: ctx => {
|
||||||
return request('', ctx);
|
return request('', ctx);
|
||||||
},
|
},
|
||||||
update: (ctx) => {
|
update: ctx => {
|
||||||
return request('', ctx);
|
return request('', ctx);
|
||||||
},
|
},
|
||||||
destroy: (ctx) => {
|
destroy: ctx => {
|
||||||
return request('', ctx);
|
return request('', ctx);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const firewall = {
|
const firewall = {
|
||||||
enable: (ctx) => {
|
enable: ctx => {
|
||||||
return request('enableMachineFirewall', ctx);
|
return request('enableMachineFirewall', ctx);
|
||||||
},
|
},
|
||||||
disable: (ctx) => {
|
disable: ctx => {
|
||||||
return request('disableMachineFirewall', ctx);
|
return request('disableMachineFirewall', ctx);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const tags = {
|
const tags = {
|
||||||
list: (ctx) => {
|
list: ctx => {
|
||||||
return request('listMachineTags', ctx);
|
return request('listMachineTags', ctx);
|
||||||
},
|
},
|
||||||
get: (ctx) => {
|
get: ctx => {
|
||||||
return request('getMachineTag', ctx);
|
return request('getMachineTag', ctx);
|
||||||
},
|
},
|
||||||
add: (ctx) => {
|
add: ctx => {
|
||||||
return request('addMachineTags', ctx);
|
return request('addMachineTags', ctx);
|
||||||
},
|
},
|
||||||
replace: (ctx) => {
|
replace: ctx => {
|
||||||
return request('replaceMachineTags', ctx);
|
return request('replaceMachineTags', ctx);
|
||||||
},
|
},
|
||||||
destroy: (ctx) => {
|
destroy: ctx => {
|
||||||
const method = ctx.tag ? 'deleteMachineTag' : 'deleteMachineTags';
|
const method = ctx.tag ? 'deleteMachineTag' : 'deleteMachineTags';
|
||||||
return request(method, ctx);
|
return request(method, ctx);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.list = (ctx) => {
|
module.exports.list = ctx => {
|
||||||
return request('listMachines', ctx);
|
return request('listMachines', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.get = (ctx) => {
|
module.exports.get = ctx => {
|
||||||
return request('getMachine', ctx);
|
return request('getMachine', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.create = (ctx) => {
|
module.exports.create = ctx => {
|
||||||
return request('createMachine', ctx);
|
return request('createMachine', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.stop = (ctx) => {
|
module.exports.stop = ctx => {
|
||||||
return request('stopMachine', ctx);
|
return request('stopMachine', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.start = (uuid) => {
|
module.exports.start = uuid => {
|
||||||
return request('startMachine', uuid);
|
return request('startMachine', uuid);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.startFromSnapshot = (ctx) => {
|
module.exports.startFromSnapshot = ctx => {
|
||||||
return request('startMachineFromSnapshot', ctx);
|
return request('startMachineFromSnapshot', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.reboot = (ctx) => {
|
module.exports.reboot = ctx => {
|
||||||
return request('rebootMachine', ctx);
|
return request('rebootMachine', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.resize = (ctx) => {
|
module.exports.resize = ctx => {
|
||||||
return request('', ctx);
|
return request('', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.rename = (ctx) => {
|
module.exports.rename = ctx => {
|
||||||
return request('', ctx);
|
return request('', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.destroy = (ctx) => {
|
module.exports.destroy = ctx => {
|
||||||
return request('deleteMachine', ctx);
|
return request('deleteMachine', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.audit = (ctx) => {
|
module.exports.audit = ctx => {
|
||||||
return request('machineAudit', ctx);
|
return request('machineAudit', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -4,6 +4,6 @@ module.exports.list = () => {
|
|||||||
return request('listNetworks');
|
return request('listNetworks');
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.get = (ctx) => {
|
module.exports.get = ctx => {
|
||||||
return request('getNetwork', ctx);
|
return request('getNetwork', ctx);
|
||||||
};
|
};
|
||||||
|
@ -4,6 +4,6 @@ module.exports.list = () => {
|
|||||||
return request('listNics');
|
return request('listNics');
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.get = (ctx) => {
|
module.exports.get = ctx => {
|
||||||
return request('getNic', ctx);
|
return request('getNic', ctx);
|
||||||
};
|
};
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
const request = require('./request');
|
const request = require('./request');
|
||||||
|
|
||||||
module.exports.list = (ctx) => {
|
module.exports.list = ctx => {
|
||||||
return request('listPackages', ctx);
|
return request('listPackages', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.get = (ctx) => {
|
module.exports.get = ctx => {
|
||||||
return request('getPackage', ctx);
|
return request('getPackage', ctx);
|
||||||
};
|
};
|
||||||
|
@ -1,21 +1,21 @@
|
|||||||
const request = require('./request');
|
const request = require('./request');
|
||||||
|
|
||||||
module.exports.list = (ctx) => {
|
module.exports.list = () => {
|
||||||
return request('listPolicies');
|
return request('listPolicies');
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.get = (ctx) => {
|
module.exports.get = ctx => {
|
||||||
return request('getPolicy', ctx);
|
return request('getPolicy', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.create = (ctx) => {
|
module.exports.create = ctx => {
|
||||||
return request('createPolicy', ctx);
|
return request('createPolicy', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.update = (ctx) => {
|
module.exports.update = ctx => {
|
||||||
return request('updatePolicy', ctx);
|
return request('updatePolicy', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.destroy = (ctx) => {
|
module.exports.destroy = ctx => {
|
||||||
return request('deletePolicy', ctx);
|
return request('deletePolicy', ctx);
|
||||||
};
|
};
|
||||||
|
@ -1,18 +1,18 @@
|
|||||||
const request = require('./request');
|
const request = require('./request');
|
||||||
|
|
||||||
module.exports.list = (ctx) => {
|
module.exports.list = () => {
|
||||||
return request('listRoles');
|
return request('listRoles');
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.get = (ctx) => {
|
module.exports.get = ctx => {
|
||||||
return request('getRole', ctx);
|
return request('getRole', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.create = (ctx) => {
|
module.exports.create = ctx => {
|
||||||
return request('createRole', ctx);
|
return request('createRole', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.set = (ctx) => {
|
module.exports.set = ctx => {
|
||||||
const id = ctx.id ? `/${ctx.id}` : '';
|
const id = ctx.id ? `/${ctx.id}` : '';
|
||||||
const resource = `/${request.client.account}/${ctx.resource}${id}`;
|
const resource = `/${request.client.account}/${ctx.resource}${id}`;
|
||||||
|
|
||||||
@ -22,10 +22,10 @@ module.exports.set = (ctx) => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.update = (ctx) => {
|
module.exports.update = ctx => {
|
||||||
return request('updateRole', ctx);
|
return request('updateRole', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.destroy = (ctx) => {
|
module.exports.destroy = ctx => {
|
||||||
return request('deleteRole', ctx);
|
return request('deleteRole', ctx);
|
||||||
};
|
};
|
||||||
|
@ -4,18 +4,18 @@ module.exports.list = () => {
|
|||||||
return request('listUsers');
|
return request('listUsers');
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.get = (ctx) => {
|
module.exports.get = ctx => {
|
||||||
return request('getUser', ctx);
|
return request('getUser', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.create = (ctx) => {
|
module.exports.create = ctx => {
|
||||||
return request('createUser', ctx);
|
return request('createUser', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.destroy = (ctx) => {
|
module.exports.destroy = ctx => {
|
||||||
return request('deleteUser', ctx);
|
return request('deleteUser', ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.update = (ctx) => {
|
module.exports.update = ctx => {
|
||||||
return request('updateUser', ctx);
|
return request('updateUser', ctx);
|
||||||
};
|
};
|
||||||
|
@ -4,11 +4,11 @@ const app = express();
|
|||||||
|
|
||||||
app.use('/graphql', require('./endpoint'));
|
app.use('/graphql', require('./endpoint'));
|
||||||
|
|
||||||
const server = app.listen((err) => {
|
const server = app.listen(4000, err => {
|
||||||
if (err) {
|
if (err) {
|
||||||
console.log(err);
|
console.error(err);
|
||||||
throw err;
|
throw err;
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(`Listening at http://localhost:${server.address().port}`);
|
console.log(`Listening at http://0.0.0.0:${server.address().port}/graphql`);
|
||||||
});
|
});
|
||||||
|
@ -2,9 +2,7 @@ const graphql = require('graphql');
|
|||||||
const mutation = require('./mutations');
|
const mutation = require('./mutations');
|
||||||
const query = require('./queries');
|
const query = require('./queries');
|
||||||
|
|
||||||
const {
|
const { GraphQLSchema } = graphql;
|
||||||
GraphQLSchema
|
|
||||||
} = graphql;
|
|
||||||
|
|
||||||
module.exports = new GraphQLSchema({
|
module.exports = new GraphQLSchema({
|
||||||
query,
|
query,
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
const AccountType = require('../types/login');
|
const AccountType = require('../types/login');
|
||||||
const api = require('../../api');
|
const api = require('../../api');
|
||||||
|
|
||||||
const {
|
const { GraphQLBoolean, GraphQLString } = require('graphql');
|
||||||
GraphQLBoolean,
|
|
||||||
GraphQLString
|
|
||||||
} = require('graphql');
|
|
||||||
|
|
||||||
module.exports.updateAccount = {
|
module.exports.updateAccount = {
|
||||||
type: AccountType,
|
type: AccountType,
|
||||||
@ -45,13 +42,15 @@ module.exports.updateAccount = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
return api.account.get().then((account) => {
|
return api.account.get().then(account => {
|
||||||
return api.account.update(Object.assign(account, args, {
|
return api.account.update(
|
||||||
firstName: args.first_name || account.firstName,
|
Object.assign(account, args, {
|
||||||
lastName: args.first_name || account.lastName,
|
firstName: args.first_name || account.firstName,
|
||||||
companyName: args.company_name || account.companyName,
|
lastName: args.first_name || account.lastName,
|
||||||
postalCode: args.postal_code || account.postalCode
|
companyName: args.company_name || account.companyName,
|
||||||
}));
|
postalCode: args.postal_code || account.postalCode
|
||||||
|
})
|
||||||
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -1,15 +1,11 @@
|
|||||||
const FirewallRuleType = require('../types/firewall-rule');
|
const FirewallRuleType = require('../types/firewall-rule');
|
||||||
const api = require('../../api');
|
const api = require('../../api');
|
||||||
|
|
||||||
const {
|
const { GraphQLID, GraphQLBoolean, GraphQLString } = require('graphql');
|
||||||
GraphQLID,
|
|
||||||
GraphQLBoolean,
|
|
||||||
GraphQLString
|
|
||||||
} = require('graphql');
|
|
||||||
|
|
||||||
module.exports.createFirewallRule = {
|
module.exports.createFirewallRule = {
|
||||||
type: FirewallRuleType,
|
type: FirewallRuleType,
|
||||||
description: 'Adds a new firewall rule for the specified account. This rule will be added to all the account\'s instances where it may be necessary',
|
description: "Adds a new firewall rule for the specified account. This rule will be added to all the account's instances where it may be necessary",
|
||||||
args: {
|
args: {
|
||||||
enabled: {
|
enabled: {
|
||||||
type: GraphQLBoolean,
|
type: GraphQLBoolean,
|
||||||
|
@ -47,9 +47,7 @@ module.exports.createImage = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
const {
|
const { create } = api.images;
|
||||||
create
|
|
||||||
} = api.images;
|
|
||||||
|
|
||||||
return create(args);
|
return create(args);
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
const {
|
const { GraphQLObjectType } = require('graphql');
|
||||||
GraphQLObjectType
|
|
||||||
} = require('graphql');
|
|
||||||
|
|
||||||
module.exports = new GraphQLObjectType({
|
module.exports = new GraphQLObjectType({
|
||||||
name: 'RootMutationType',
|
name: 'RootMutationType',
|
||||||
|
@ -1,11 +1,7 @@
|
|||||||
const KeyType = require('../types/key');
|
const KeyType = require('../types/key');
|
||||||
const api = require('../../api');
|
const api = require('../../api');
|
||||||
|
|
||||||
const {
|
const { GraphQLNonNull, GraphQLString, GraphQLID } = require('graphql');
|
||||||
GraphQLNonNull,
|
|
||||||
GraphQLString,
|
|
||||||
GraphQLID
|
|
||||||
} = require('graphql');
|
|
||||||
|
|
||||||
module.exports.createKey = {
|
module.exports.createKey = {
|
||||||
type: KeyType,
|
type: KeyType,
|
||||||
|
@ -18,7 +18,7 @@ module.exports.createMachine = {
|
|||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
description: 'Friendly name for this instance; default is the first 8 characters of the machine id'
|
description: 'Friendly name for this instance; default is the first 8 characters of the machine id'
|
||||||
},
|
},
|
||||||
'package': {
|
package: {
|
||||||
type: new GraphQLNonNull(GraphQLString),
|
type: new GraphQLNonNull(GraphQLString),
|
||||||
description: 'Id of the package to use on provisioning, obtained from ListPackages'
|
description: 'Id of the package to use on provisioning, obtained from ListPackages'
|
||||||
},
|
},
|
||||||
@ -59,14 +59,18 @@ module.exports.createMachine = {
|
|||||||
const tags = resolveNames(args.tags, 'tag');
|
const tags = resolveNames(args.tags, 'tag');
|
||||||
const metadata = resolveNames(args.tags, 'metadata');
|
const metadata = resolveNames(args.tags, 'metadata');
|
||||||
|
|
||||||
const machine = Object.assign({
|
const machine = Object.assign(
|
||||||
name: args.name,
|
{
|
||||||
'package': args['package'],
|
name: args.name,
|
||||||
image: args.image,
|
package: args['package'],
|
||||||
networks: args.networks,
|
image: args.image,
|
||||||
locality: args.locality,
|
networks: args.networks,
|
||||||
firewall_enabled: args.firewall_enabled
|
locality: args.locality,
|
||||||
}, tags, metadata);
|
firewall_enabled: args.firewall_enabled
|
||||||
|
},
|
||||||
|
tags,
|
||||||
|
metadata
|
||||||
|
);
|
||||||
|
|
||||||
return api.machines.create(machine);
|
return api.machines.create(machine);
|
||||||
}
|
}
|
||||||
@ -82,7 +86,7 @@ module.exports.startMachine = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
return api.machines.start(args.id).then((machine) => {
|
return api.machines.start(args.id).then(machine => {
|
||||||
if (machine) {
|
if (machine) {
|
||||||
return machine;
|
return machine;
|
||||||
}
|
}
|
||||||
@ -106,7 +110,7 @@ module.exports.startMachineFromSnapshot = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
return api.machines.startFromSnapshot(args).then((machine) => {
|
return api.machines.startFromSnapshot(args).then(machine => {
|
||||||
if (machine) {
|
if (machine) {
|
||||||
return machine;
|
return machine;
|
||||||
}
|
}
|
||||||
@ -126,7 +130,7 @@ module.exports.stopMachine = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
return api.machines.stop(args.id).then((machine) => {
|
return api.machines.stop(args.id).then(machine => {
|
||||||
if (machine) {
|
if (machine) {
|
||||||
return machine;
|
return machine;
|
||||||
}
|
}
|
||||||
@ -146,7 +150,7 @@ module.exports.rebootMachine = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
return api.machines.reboot(args.id).then((machine) => {
|
return api.machines.reboot(args.id).then(machine => {
|
||||||
if (machine) {
|
if (machine) {
|
||||||
return machine;
|
return machine;
|
||||||
}
|
}
|
||||||
@ -172,7 +176,7 @@ module.exports.deleteMachine = {
|
|||||||
|
|
||||||
module.exports.auditMachine = {
|
module.exports.auditMachine = {
|
||||||
type: new GraphQLList(DynamicObjectType),
|
type: new GraphQLList(DynamicObjectType),
|
||||||
description: 'Provides a list of an instance\'s accomplished actions. Results are sorted from newest to oldest action',
|
description: "Provides a list of an instance's accomplished actions. Results are sorted from newest to oldest action",
|
||||||
args: {
|
args: {
|
||||||
id: {
|
id: {
|
||||||
type: new GraphQLNonNull(GraphQLID),
|
type: new GraphQLNonNull(GraphQLID),
|
||||||
@ -197,13 +201,11 @@ module.exports.setMachineFirewall = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
const {
|
const { firewall } = api.machines;
|
||||||
firewall
|
|
||||||
} = api.machines;
|
|
||||||
|
|
||||||
const fn = args.enabled ? firewall.enable : firewall.disable;
|
const fn = args.enabled ? firewall.enable : firewall.disable;
|
||||||
|
|
||||||
return fn(args.id).then((machine) => {
|
return fn(args.id).then(machine => {
|
||||||
if (machine) {
|
if (machine) {
|
||||||
return machine;
|
return machine;
|
||||||
}
|
}
|
||||||
@ -223,11 +225,9 @@ module.exports.enableMachineFirewall = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
const {
|
const { firewall } = api.machines;
|
||||||
firewall
|
|
||||||
} = api.machines;
|
|
||||||
|
|
||||||
return firewall.enable(args.id).then((machine) => {
|
return firewall.enable(args.id).then(machine => {
|
||||||
if (machine) {
|
if (machine) {
|
||||||
return machine;
|
return machine;
|
||||||
}
|
}
|
||||||
@ -247,11 +247,9 @@ module.exports.disableMachineFirewall = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
const {
|
const { firewall } = api.machines;
|
||||||
firewall
|
|
||||||
} = api.machines;
|
|
||||||
|
|
||||||
return firewall.disable(args.id).then((machine) => {
|
return firewall.disable(args.id).then(machine => {
|
||||||
if (machine) {
|
if (machine) {
|
||||||
return machine;
|
return machine;
|
||||||
}
|
}
|
||||||
@ -275,9 +273,7 @@ module.exports.addMachineTags = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
const {
|
const { tags } = api.machines;
|
||||||
tags
|
|
||||||
} = api.machines;
|
|
||||||
|
|
||||||
return tags.add(args);
|
return tags.add(args);
|
||||||
}
|
}
|
||||||
@ -297,9 +293,7 @@ module.exports.replaceMachineTags = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
const {
|
const { tags } = api.machines;
|
||||||
tags
|
|
||||||
} = api.machines;
|
|
||||||
|
|
||||||
return tags.replace(args);
|
return tags.replace(args);
|
||||||
}
|
}
|
||||||
@ -319,9 +313,7 @@ module.exports.deleteMachineTags = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
const {
|
const { tags } = api.machines;
|
||||||
tags
|
|
||||||
} = api.machines;
|
|
||||||
|
|
||||||
return tags.destroy(args);
|
return tags.destroy(args);
|
||||||
}
|
}
|
||||||
|
@ -14,19 +14,19 @@ module.exports.createRole = {
|
|||||||
args: {
|
args: {
|
||||||
name: {
|
name: {
|
||||||
type: new GraphQLNonNull(GraphQLString),
|
type: new GraphQLNonNull(GraphQLString),
|
||||||
description: 'The role\'s name'
|
description: "The role's name"
|
||||||
},
|
},
|
||||||
policies: {
|
policies: {
|
||||||
type: new GraphQLList(GraphQLString),
|
type: new GraphQLList(GraphQLString),
|
||||||
description: 'This account\'s policies to be given to this role (Optional)'
|
description: "This account's policies to be given to this role (Optional)"
|
||||||
},
|
},
|
||||||
members: {
|
members: {
|
||||||
type: new GraphQLList(GraphQLString),
|
type: new GraphQLList(GraphQLString),
|
||||||
description: 'This account\'s user logins to be added to this role (Optional)'
|
description: "This account's user logins to be added to this role (Optional)"
|
||||||
},
|
},
|
||||||
default_members: {
|
default_members: {
|
||||||
type: new GraphQLList(GraphQLString),
|
type: new GraphQLList(GraphQLString),
|
||||||
description: 'This account\'s user logins to be added to this role and have it enabled by default (Optional)'
|
description: "This account's user logins to be added to this role and have it enabled by default (Optional)"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
@ -43,19 +43,19 @@ module.exports.updateRole = {
|
|||||||
},
|
},
|
||||||
name: {
|
name: {
|
||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
description: 'The role\'s name'
|
description: "The role's name"
|
||||||
},
|
},
|
||||||
policies: {
|
policies: {
|
||||||
type: new GraphQLList(GraphQLString),
|
type: new GraphQLList(GraphQLString),
|
||||||
description: 'This account\'s policies to be given to this role (Optional)'
|
description: "This account's policies to be given to this role (Optional)"
|
||||||
},
|
},
|
||||||
members: {
|
members: {
|
||||||
type: new GraphQLList(GraphQLString),
|
type: new GraphQLList(GraphQLString),
|
||||||
description: 'This account\'s user logins to be added to this role (Optional)'
|
description: "This account's user logins to be added to this role (Optional)"
|
||||||
},
|
},
|
||||||
default_members: {
|
default_members: {
|
||||||
type: new GraphQLList(GraphQLString),
|
type: new GraphQLList(GraphQLString),
|
||||||
description: 'This account\'s user logins to be added to this role and have it enabled by default (Optional)'
|
description: "This account's user logins to be added to this role and have it enabled by default (Optional)"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
@ -80,7 +80,7 @@ module.exports.deleteRole = {
|
|||||||
|
|
||||||
module.exports.setRoleTags = {
|
module.exports.setRoleTags = {
|
||||||
type: RoleType.tag,
|
type: RoleType.tag,
|
||||||
description: 'Sets the given role tags to the provided resource path. resource_path can be the path to any of the CloudAPI resources described in this document: account, keys, users, roles, policies, user\'s ssh keys, datacenters, images, packages, instances, analytics, instrumentations, firewall rules and networks.',
|
description: "Sets the given role tags to the provided resource path. resource_path can be the path to any of the CloudAPI resources described in this document: account, keys, users, roles, policies, user's ssh keys, datacenters, images, packages, instances, analytics, instrumentations, firewall rules and networks.",
|
||||||
args: {
|
args: {
|
||||||
resource: {
|
resource: {
|
||||||
type: new GraphQLNonNull(GraphQLString),
|
type: new GraphQLNonNull(GraphQLString),
|
||||||
@ -96,9 +96,7 @@ module.exports.setRoleTags = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
const {
|
const { set } = api.roles;
|
||||||
set
|
|
||||||
} = api.roles;
|
|
||||||
|
|
||||||
return set(args);
|
return set(args);
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,7 @@
|
|||||||
const SnapshotType = require('../types/snapshot');
|
const SnapshotType = require('../types/snapshot');
|
||||||
const api = require('../../api');
|
const api = require('../../api');
|
||||||
|
|
||||||
const {
|
const { GraphQLNonNull, GraphQLString, GraphQLID } = require('graphql');
|
||||||
GraphQLNonNull,
|
|
||||||
GraphQLString,
|
|
||||||
GraphQLID
|
|
||||||
} = require('graphql');
|
|
||||||
|
|
||||||
module.exports.createSnapshot = {
|
module.exports.createSnapshot = {
|
||||||
type: SnapshotType,
|
type: SnapshotType,
|
||||||
@ -21,19 +17,14 @@ module.exports.createSnapshot = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
const {
|
const { snapshot: { create, get } } = api.machines;
|
||||||
snapshot: {
|
|
||||||
create,
|
|
||||||
get
|
|
||||||
}
|
|
||||||
} = api.machines;
|
|
||||||
|
|
||||||
const newArgs = {
|
const newArgs = {
|
||||||
id: args.machine,
|
id: args.machine,
|
||||||
name: args.name
|
name: args.name
|
||||||
};
|
};
|
||||||
|
|
||||||
return create(newArgs).then((snapshot) => {
|
return create(newArgs).then(snapshot => {
|
||||||
if (snapshot) {
|
if (snapshot) {
|
||||||
return snapshot;
|
return snapshot;
|
||||||
}
|
}
|
||||||
@ -57,11 +48,7 @@ module.exports.deleteSnapshot = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
const {
|
const { snapshot: { destroy } } = api.machines;
|
||||||
snapshot: {
|
|
||||||
destroy
|
|
||||||
}
|
|
||||||
} = api.machines;
|
|
||||||
|
|
||||||
const newArgs = {
|
const newArgs = {
|
||||||
id: args.machine,
|
id: args.machine,
|
||||||
|
@ -1,11 +1,7 @@
|
|||||||
const UserType = require('../types/login');
|
const UserType = require('../types/login');
|
||||||
const api = require('../../api');
|
const api = require('../../api');
|
||||||
|
|
||||||
const {
|
const { GraphQLNonNull, GraphQLString, GraphQLID } = require('graphql');
|
||||||
GraphQLNonNull,
|
|
||||||
GraphQLString,
|
|
||||||
GraphQLID
|
|
||||||
} = require('graphql');
|
|
||||||
|
|
||||||
module.exports.createUser = {
|
module.exports.createUser = {
|
||||||
type: UserType,
|
type: UserType,
|
||||||
@ -49,12 +45,14 @@ module.exports.createUser = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
return api.users.create(Object.assign(args, {
|
return api.users.create(
|
||||||
firstName: args.first_name,
|
Object.assign(args, {
|
||||||
lastName: args.first_name,
|
firstName: args.first_name,
|
||||||
companyName: args.company_name,
|
lastName: args.first_name,
|
||||||
postalCode: args.postal_code
|
companyName: args.company_name,
|
||||||
}));
|
postalCode: args.postal_code
|
||||||
|
})
|
||||||
|
);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -75,7 +73,7 @@ module.exports.deleteUser = {
|
|||||||
|
|
||||||
module.exports.updateUser = {
|
module.exports.updateUser = {
|
||||||
type: UserType,
|
type: UserType,
|
||||||
description: 'Update a user\'s modifiable properties',
|
description: "Update a user's modifiable properties",
|
||||||
args: {
|
args: {
|
||||||
id: {
|
id: {
|
||||||
type: new GraphQLNonNull(GraphQLID)
|
type: new GraphQLNonNull(GraphQLID)
|
||||||
@ -115,12 +113,14 @@ module.exports.updateUser = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
return api.users.update(Object.assign(args, {
|
return api.users.update(
|
||||||
firstName: args.first_name,
|
Object.assign(args, {
|
||||||
lastName: args.first_name,
|
firstName: args.first_name,
|
||||||
companyName: args.company_name,
|
lastName: args.first_name,
|
||||||
postalCode: args.postal_code
|
companyName: args.company_name,
|
||||||
}));
|
postalCode: args.postal_code
|
||||||
|
})
|
||||||
|
);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ const api = require('../../api');
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
type: AccountType,
|
type: AccountType,
|
||||||
resolve() {
|
resolve() {
|
||||||
return api.account.get().then((account) => {
|
return api.account.get().then(account => {
|
||||||
return Object.assign(account, {
|
return Object.assign(account, {
|
||||||
isUser: false
|
isUser: false
|
||||||
});
|
});
|
||||||
|
@ -2,15 +2,13 @@ const DatacenterType = require('../types/datacenter');
|
|||||||
const graphql = require('graphql');
|
const graphql = require('graphql');
|
||||||
const api = require('../../api');
|
const api = require('../../api');
|
||||||
|
|
||||||
const {
|
const { GraphQLList } = graphql;
|
||||||
GraphQLList
|
|
||||||
} = graphql;
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
type: new GraphQLList(DatacenterType),
|
type: new GraphQLList(DatacenterType),
|
||||||
resolve() {
|
resolve() {
|
||||||
return api.datacenters().then((datacenters) => {
|
return api.datacenters().then(datacenters => {
|
||||||
return Object.keys(datacenters).map((name) => {
|
return Object.keys(datacenters).map(name => {
|
||||||
return {
|
return {
|
||||||
url: datacenters[name],
|
url: datacenters[name],
|
||||||
name
|
name
|
||||||
|
@ -2,9 +2,7 @@ const FabricType = require('../types/fabrics');
|
|||||||
const graphql = require('graphql');
|
const graphql = require('graphql');
|
||||||
const api = require('../../api');
|
const api = require('../../api');
|
||||||
|
|
||||||
const {
|
const { GraphQLList } = graphql;
|
||||||
GraphQLList
|
|
||||||
} = graphql;
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
type: new GraphQLList(FabricType),
|
type: new GraphQLList(FabricType),
|
||||||
|
@ -2,10 +2,7 @@ const FirewallRuleType = require('../types/firewall-rule');
|
|||||||
const graphql = require('graphql');
|
const graphql = require('graphql');
|
||||||
const api = require('../../api');
|
const api = require('../../api');
|
||||||
|
|
||||||
const {
|
const { GraphQLList, GraphQLID } = graphql;
|
||||||
GraphQLList,
|
|
||||||
GraphQLID
|
|
||||||
} = graphql;
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
type: new GraphQLList(FirewallRuleType),
|
type: new GraphQLList(FirewallRuleType),
|
||||||
@ -16,11 +13,8 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve(root, args) {
|
resolve(root, args) {
|
||||||
const {
|
const { list, get } = api.firewallRules;
|
||||||
list,
|
|
||||||
get
|
|
||||||
} = api.firewallRules;
|
|
||||||
|
|
||||||
return !args.id ? list() : get(args.id).then((rule) => [rule]);
|
return !args.id ? list() : get(args.id).then(rule => [rule]);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -2,12 +2,7 @@ const ImageType = require('../types/image');
|
|||||||
const graphql = require('graphql');
|
const graphql = require('graphql');
|
||||||
const api = require('../../api');
|
const api = require('../../api');
|
||||||
|
|
||||||
const {
|
const { GraphQLList, GraphQLBoolean, GraphQLString, GraphQLID } = graphql;
|
||||||
GraphQLList,
|
|
||||||
GraphQLBoolean,
|
|
||||||
GraphQLString,
|
|
||||||
GraphQLID
|
|
||||||
} = graphql;
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
type: new GraphQLList(ImageType),
|
type: new GraphQLList(ImageType),
|
||||||
@ -28,7 +23,7 @@ module.exports = {
|
|||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
description: 'Filter on the version'
|
description: 'Filter on the version'
|
||||||
},
|
},
|
||||||
'public': {
|
public: {
|
||||||
type: GraphQLBoolean,
|
type: GraphQLBoolean,
|
||||||
description: 'Filter public/private images'
|
description: 'Filter public/private images'
|
||||||
},
|
},
|
||||||
@ -46,13 +41,12 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve(root, args) {
|
resolve(root, args) {
|
||||||
const {
|
const { list, get } = api.images;
|
||||||
list,
|
|
||||||
get
|
|
||||||
} = api.images;
|
|
||||||
|
|
||||||
return args.id ? get({
|
return args.id
|
||||||
id: args.id
|
? get({
|
||||||
}).then((img) => [img]) : list(args);
|
id: args.id
|
||||||
|
}).then(img => [img])
|
||||||
|
: list(args);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
const {
|
const { GraphQLObjectType } = require('graphql');
|
||||||
GraphQLObjectType
|
|
||||||
} = require('graphql');
|
|
||||||
|
|
||||||
module.exports = new GraphQLObjectType({
|
module.exports = new GraphQLObjectType({
|
||||||
name: 'RootQueryType',
|
name: 'RootQueryType',
|
||||||
|
@ -2,12 +2,7 @@ const MachineType = require('../types/machine');
|
|||||||
const graphql = require('graphql');
|
const graphql = require('graphql');
|
||||||
const api = require('../../api');
|
const api = require('../../api');
|
||||||
|
|
||||||
const {
|
const { GraphQLInt, GraphQLList, GraphQLString, GraphQLID } = graphql;
|
||||||
GraphQLInt,
|
|
||||||
GraphQLList,
|
|
||||||
GraphQLString,
|
|
||||||
GraphQLID
|
|
||||||
} = graphql;
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
type: new GraphQLList(MachineType),
|
type: new GraphQLList(MachineType),
|
||||||
@ -60,24 +55,20 @@ module.exports = {
|
|||||||
description: 'Whether to include the generated credentials for instances, if present. Defaults to false'
|
description: 'Whether to include the generated credentials for instances, if present. Defaults to false'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve(root, args, ctx) {
|
resolve(root, args) {
|
||||||
const {
|
const { list, get } = api.machines;
|
||||||
list,
|
|
||||||
get
|
|
||||||
} = api.machines;
|
|
||||||
|
|
||||||
const {
|
const { after, first } = args;
|
||||||
after,
|
|
||||||
first
|
|
||||||
} = args;
|
|
||||||
|
|
||||||
const newArgs = Object.assign(args, {
|
const newArgs = Object.assign(args, {
|
||||||
limit: first,
|
limit: first,
|
||||||
offset: after
|
offset: after
|
||||||
});
|
});
|
||||||
|
|
||||||
return args.id ? get({
|
return args.id
|
||||||
id: args.id
|
? get({
|
||||||
}).then((machine) => [machine]) : list(newArgs);
|
id: args.id
|
||||||
|
}).then(machine => [machine])
|
||||||
|
: list(newArgs);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -2,10 +2,7 @@ const NetworkType = require('../types/network');
|
|||||||
const graphql = require('graphql');
|
const graphql = require('graphql');
|
||||||
const api = require('../../api');
|
const api = require('../../api');
|
||||||
|
|
||||||
const {
|
const { GraphQLList, GraphQLID } = graphql;
|
||||||
GraphQLList,
|
|
||||||
GraphQLID
|
|
||||||
} = graphql;
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
type: new GraphQLList(NetworkType),
|
type: new GraphQLList(NetworkType),
|
||||||
@ -15,11 +12,8 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve(root, args) {
|
resolve(root, args) {
|
||||||
const {
|
const { list, get } = api.networks;
|
||||||
list,
|
|
||||||
get
|
|
||||||
} = api.networks;
|
|
||||||
|
|
||||||
return !args.id ? list() : get(args).then((network) => [network]);
|
return !args.id ? list() : get(args).then(network => [network]);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -2,10 +2,7 @@ const NicType = require('../types/nic');
|
|||||||
const graphql = require('graphql');
|
const graphql = require('graphql');
|
||||||
const api = require('../../api');
|
const api = require('../../api');
|
||||||
|
|
||||||
const {
|
const { GraphQLList, GraphQLString } = graphql;
|
||||||
GraphQLList,
|
|
||||||
GraphQLString
|
|
||||||
} = graphql;
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
type: new GraphQLList(NicType),
|
type: new GraphQLList(NicType),
|
||||||
@ -15,11 +12,8 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve(root, args) {
|
resolve(root, args) {
|
||||||
const {
|
const { list, get } = api.nics;
|
||||||
list,
|
|
||||||
get
|
|
||||||
} = api.nics;
|
|
||||||
|
|
||||||
return !args.id ? list() : get(args).then((nic) => [nic]);
|
return !args.id ? list() : get(args).then(nic => [nic]);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -2,12 +2,7 @@ const PackageType = require('../types/package');
|
|||||||
const graphql = require('graphql');
|
const graphql = require('graphql');
|
||||||
const api = require('../../api');
|
const api = require('../../api');
|
||||||
|
|
||||||
const {
|
const { GraphQLInt, GraphQLList, GraphQLString, GraphQLID } = graphql;
|
||||||
GraphQLInt,
|
|
||||||
GraphQLList,
|
|
||||||
GraphQLString,
|
|
||||||
GraphQLID
|
|
||||||
} = graphql;
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
type: new GraphQLList(PackageType),
|
type: new GraphQLList(PackageType),
|
||||||
@ -50,13 +45,12 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve(root, args) {
|
resolve(root, args) {
|
||||||
const {
|
const { list, get } = api.packages;
|
||||||
list,
|
|
||||||
get
|
|
||||||
} = api.packages;
|
|
||||||
|
|
||||||
return args.id ? get({
|
return args.id
|
||||||
id: args.id
|
? get({
|
||||||
}).then((pkg) => [pkg]) : list(args);
|
id: args.id
|
||||||
|
}).then(pkg => [pkg])
|
||||||
|
: list(args);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -2,10 +2,7 @@ const PolicyType = require('../types/policy');
|
|||||||
const graphql = require('graphql');
|
const graphql = require('graphql');
|
||||||
const api = require('../../api');
|
const api = require('../../api');
|
||||||
|
|
||||||
const {
|
const { GraphQLList, GraphQLID } = graphql;
|
||||||
GraphQLList,
|
|
||||||
GraphQLID
|
|
||||||
} = graphql;
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
type: new GraphQLList(PolicyType),
|
type: new GraphQLList(PolicyType),
|
||||||
@ -16,11 +13,8 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve(root, args) {
|
resolve(root, args) {
|
||||||
const {
|
const { list, get } = api.policies;
|
||||||
list,
|
|
||||||
get
|
|
||||||
} = api.policies;
|
|
||||||
|
|
||||||
return !args.id ? list() : get(args).then((policy) => [policy]);
|
return !args.id ? list() : get(args).then(policy => [policy]);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -2,10 +2,7 @@ const RoleType = require('../types/role');
|
|||||||
const graphql = require('graphql');
|
const graphql = require('graphql');
|
||||||
const api = require('../../api');
|
const api = require('../../api');
|
||||||
|
|
||||||
const {
|
const { GraphQLList, GraphQLID } = graphql;
|
||||||
GraphQLList,
|
|
||||||
GraphQLID
|
|
||||||
} = graphql;
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
type: new GraphQLList(RoleType),
|
type: new GraphQLList(RoleType),
|
||||||
@ -16,11 +13,8 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve(root, args) {
|
resolve(root, args) {
|
||||||
const {
|
const { list, get } = api.roles;
|
||||||
list,
|
|
||||||
get
|
|
||||||
} = api.roles;
|
|
||||||
|
|
||||||
return !args.id ? list() : get(args).then((role) => [role]);
|
return !args.id ? list() : get(args).then(role => [role]);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -2,15 +2,13 @@ const ServiceType = require('../types/service');
|
|||||||
const graphql = require('graphql');
|
const graphql = require('graphql');
|
||||||
const api = require('../../api');
|
const api = require('../../api');
|
||||||
|
|
||||||
const {
|
const { GraphQLList } = graphql;
|
||||||
GraphQLList
|
|
||||||
} = graphql;
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
type: new GraphQLList(ServiceType),
|
type: new GraphQLList(ServiceType),
|
||||||
resolve() {
|
resolve() {
|
||||||
return api.services().then((services) => {
|
return api.services().then(services => {
|
||||||
return Object.keys(services).map((name) => {
|
return Object.keys(services).map(name => {
|
||||||
return {
|
return {
|
||||||
url: services[name],
|
url: services[name],
|
||||||
name
|
name
|
||||||
|
@ -2,10 +2,7 @@ const UserType = require('../types/login');
|
|||||||
const graphql = require('graphql');
|
const graphql = require('graphql');
|
||||||
const api = require('../../api');
|
const api = require('../../api');
|
||||||
|
|
||||||
const {
|
const { GraphQLList, GraphQLID } = graphql;
|
||||||
GraphQLList,
|
|
||||||
GraphQLID
|
|
||||||
} = graphql;
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
type: new GraphQLList(UserType),
|
type: new GraphQLList(UserType),
|
||||||
@ -15,16 +12,15 @@ module.exports = {
|
|||||||
description: '`id` or `login` of the `UserType` to filter'
|
description: '`id` or `login` of the `UserType` to filter'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve(root, args, ctx) {
|
resolve(root, args) {
|
||||||
const {
|
const { list, get } = api.users;
|
||||||
list,
|
|
||||||
get
|
|
||||||
} = api.users;
|
|
||||||
|
|
||||||
return !args.id ? list() : get(args).then((user) => [user]).then((user) => {
|
return !args.id
|
||||||
return Object.assign(user, {
|
? list()
|
||||||
isUser: true
|
: get(args).then(user => [user]).then(user => {
|
||||||
});
|
return Object.assign(user, {
|
||||||
});
|
isUser: true
|
||||||
|
});
|
||||||
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -1,10 +1,6 @@
|
|||||||
const DynamicObjectType = require('./dynamic-object');
|
const DynamicObjectType = require('./dynamic-object');
|
||||||
|
|
||||||
const {
|
const { GraphQLString, GraphQLObjectType, GraphQLBoolean } = require('graphql');
|
||||||
GraphQLString,
|
|
||||||
GraphQLObjectType,
|
|
||||||
GraphQLBoolean
|
|
||||||
} = require('graphql');
|
|
||||||
|
|
||||||
const CallerType = new GraphQLObjectType({
|
const CallerType = new GraphQLObjectType({
|
||||||
name: 'CallerType',
|
name: 'CallerType',
|
||||||
@ -41,8 +37,8 @@ module.exports = new GraphQLObjectType({
|
|||||||
},
|
},
|
||||||
success: {
|
success: {
|
||||||
type: GraphQLBoolean,
|
type: GraphQLBoolean,
|
||||||
description: '`true` or `false`, depending on the action\'s success',
|
description: "`true` or `false`, depending on the action's success",
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return root.success === 'yes';
|
return root.success === 'yes';
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
const {
|
const { GraphQLString, GraphQLObjectType } = require('graphql');
|
||||||
GraphQLString,
|
|
||||||
GraphQLObjectType
|
|
||||||
} = require('graphql');
|
|
||||||
|
|
||||||
module.exports = new GraphQLObjectType({
|
module.exports = new GraphQLObjectType({
|
||||||
name: 'DatacenterType',
|
name: 'DatacenterType',
|
||||||
|
@ -1,22 +1,19 @@
|
|||||||
const {
|
const { GraphQLScalarType, Kind } = require('graphql');
|
||||||
GraphQLScalarType,
|
|
||||||
Kind
|
|
||||||
} = require('graphql');
|
|
||||||
|
|
||||||
const kinds = {
|
const kinds = {
|
||||||
[Kind.STRING]: (ast) => {
|
[Kind.STRING]: ast => {
|
||||||
return ast.value;
|
return ast.value;
|
||||||
},
|
},
|
||||||
[Kind.BOOLEAN]: (ast) => {
|
[Kind.BOOLEAN]: ast => {
|
||||||
return kinds[Kind.STRING](ast);
|
return kinds[Kind.STRING](ast);
|
||||||
},
|
},
|
||||||
[Kind.INT]: (ast) => {
|
[Kind.INT]: ast => {
|
||||||
return Number(ast.value);
|
return Number(ast.value);
|
||||||
},
|
},
|
||||||
[Kind.FLOAT]: (ast) => {
|
[Kind.FLOAT]: ast => {
|
||||||
return kinds[Kind.INT](ast);
|
return kinds[Kind.INT](ast);
|
||||||
},
|
},
|
||||||
[Kind.OBJECT]: (ast) => {
|
[Kind.OBJECT]: ast => {
|
||||||
const value = Object.create(null);
|
const value = Object.create(null);
|
||||||
ast.fields.forEach(field => {
|
ast.fields.forEach(field => {
|
||||||
value[field.name.value] = parseLiteral(field.value);
|
value[field.name.value] = parseLiteral(field.value);
|
||||||
@ -24,13 +21,13 @@ const kinds = {
|
|||||||
|
|
||||||
return value;
|
return value;
|
||||||
},
|
},
|
||||||
[Kind.LIST]: (ast) => {
|
[Kind.LIST]: ast => {
|
||||||
return ast.values.map(parseLiteral);
|
return ast.values.map(parseLiteral);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// https://github.com/taion/graphql-type-json/blob/master/src/index.js
|
// https://github.com/taion/graphql-type-json/blob/master/src/index.js
|
||||||
const parseLiteral = (ast) => {
|
const parseLiteral = ast => {
|
||||||
const kind = kinds[ast.kind];
|
const kind = kinds[ast.kind];
|
||||||
return kind ? kinds[ast.kind](ast) : null;
|
return kind ? kinds[ast.kind](ast) : null;
|
||||||
};
|
};
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
const {
|
const { GraphQLString, GraphQLObjectType, GraphQLInt } = require('graphql');
|
||||||
GraphQLString,
|
|
||||||
GraphQLObjectType,
|
|
||||||
GraphQLInt
|
|
||||||
} = require('graphql');
|
|
||||||
|
|
||||||
module.exports = new GraphQLObjectType({
|
module.exports = new GraphQLObjectType({
|
||||||
name: 'FabricsType',
|
name: 'FabricsType',
|
||||||
@ -13,7 +9,7 @@ module.exports = new GraphQLObjectType({
|
|||||||
},
|
},
|
||||||
vlan_id: {
|
vlan_id: {
|
||||||
type: GraphQLInt,
|
type: GraphQLInt,
|
||||||
description: 'A number from 0-4095 that indicates the VLAN\'s id'
|
description: "A number from 0-4095 that indicates the VLAN's id"
|
||||||
},
|
},
|
||||||
description: {
|
description: {
|
||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
|
@ -15,10 +15,10 @@ const FirewallRuleSyntaxType = new GraphQLObjectType({
|
|||||||
text: {
|
text: {
|
||||||
type: GraphQLString
|
type: GraphQLString
|
||||||
},
|
},
|
||||||
'from': {
|
from: {
|
||||||
type: GraphQLString
|
type: GraphQLString
|
||||||
},
|
},
|
||||||
'to': {
|
to: {
|
||||||
type: GraphQLString
|
type: GraphQLString
|
||||||
},
|
},
|
||||||
action: {
|
action: {
|
||||||
@ -44,22 +44,20 @@ module.exports = new GraphQLObjectType({
|
|||||||
enabled: {
|
enabled: {
|
||||||
type: GraphQLBoolean,
|
type: GraphQLBoolean,
|
||||||
description: 'Indicates if the rule is enabled',
|
description: 'Indicates if the rule is enabled',
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return !!root.enabled;
|
return !!root.enabled;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
rule: {
|
rule: {
|
||||||
type: FirewallRuleSyntaxType,
|
type: FirewallRuleSyntaxType,
|
||||||
description: 'Firewall rule',
|
description: 'Firewall rule',
|
||||||
resolve: ({
|
resolve: ({ rule }) => {
|
||||||
rule
|
|
||||||
}) => {
|
|
||||||
const regex = /from (.*?) to (.*?) (allow|deny) (.*?) port (\d*)/i;
|
const regex = /from (.*?) to (.*?) (allow|deny) (.*?) port (\d*)/i;
|
||||||
const tokens = rule.match(regex);
|
const tokens = rule.match(regex);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'from': tokens[1],
|
from: tokens[1],
|
||||||
'to': tokens[2],
|
to: tokens[2],
|
||||||
action: tokens[3],
|
action: tokens[3],
|
||||||
protocol: tokens[4],
|
protocol: tokens[4],
|
||||||
port: tokens[5],
|
port: tokens[5],
|
||||||
@ -70,7 +68,7 @@ module.exports = new GraphQLObjectType({
|
|||||||
global: {
|
global: {
|
||||||
type: GraphQLBoolean,
|
type: GraphQLBoolean,
|
||||||
description: 'Indicates if the rule is global',
|
description: 'Indicates if the rule is global',
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return !!root.global;
|
return !!root.global;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -82,7 +80,7 @@ module.exports = new GraphQLObjectType({
|
|||||||
// circular dependency
|
// circular dependency
|
||||||
type: new GraphQLList(require('./machine')),
|
type: new GraphQLList(require('./machine')),
|
||||||
description: 'Lists all instances a firewall rule is applied to',
|
description: 'Lists all instances a firewall rule is applied to',
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return api.firewallRules.listMachines({
|
return api.firewallRules.listMachines({
|
||||||
id: root.id
|
id: root.id
|
||||||
});
|
});
|
||||||
|
@ -85,10 +85,10 @@ module.exports = new GraphQLObjectType({
|
|||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
description: 'The UUID of the user who owns this image'
|
description: 'The UUID of the user who owns this image'
|
||||||
},
|
},
|
||||||
'public': {
|
public: {
|
||||||
type: GraphQLBoolean,
|
type: GraphQLBoolean,
|
||||||
description: 'Indicates if this image is publicly available',
|
description: 'Indicates if this image is publicly available',
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return !!root['public'];
|
return !!root['public'];
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
const {
|
const { GraphQLString, GraphQLObjectType } = require('graphql');
|
||||||
GraphQLString,
|
|
||||||
GraphQLObjectType
|
|
||||||
} = require('graphql');
|
|
||||||
|
|
||||||
module.exports = new GraphQLObjectType({
|
module.exports = new GraphQLObjectType({
|
||||||
name: 'KeyType',
|
name: 'KeyType',
|
||||||
|
@ -26,19 +26,19 @@ module.exports = new GraphQLObjectType({
|
|||||||
},
|
},
|
||||||
company_name: {
|
company_name: {
|
||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return !!root.company_name || root.companyName;
|
return !!root.company_name || root.companyName;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
first_name: {
|
first_name: {
|
||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return !!root.first_name || root.firstName;
|
return !!root.first_name || root.firstName;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
last_name: {
|
last_name: {
|
||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return !!root.last_name || root.lastName;
|
return !!root.last_name || root.lastName;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -47,7 +47,7 @@ module.exports = new GraphQLObjectType({
|
|||||||
},
|
},
|
||||||
postal_code: {
|
postal_code: {
|
||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return !!root.postal_code || root.postalCode;
|
return !!root.postal_code || root.postalCode;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -66,7 +66,7 @@ module.exports = new GraphQLObjectType({
|
|||||||
cns_enabled: {
|
cns_enabled: {
|
||||||
type: GraphQLBoolean,
|
type: GraphQLBoolean,
|
||||||
description: 'true if Triton CNS is enabled for account',
|
description: 'true if Triton CNS is enabled for account',
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return root.isUser ? null : !!root.triton_cns_enabled;
|
return root.isUser ? null : !!root.triton_cns_enabled;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -86,22 +86,19 @@ module.exports = new GraphQLObjectType({
|
|||||||
resolve(root, args) {
|
resolve(root, args) {
|
||||||
const _api = root.isUser ? api.keys.user : api.keys.account;
|
const _api = root.isUser ? api.keys.user : api.keys.account;
|
||||||
|
|
||||||
const {
|
const { list, get } = _api;
|
||||||
list,
|
|
||||||
get
|
|
||||||
} = _api;
|
|
||||||
|
|
||||||
const newArgs = Object.assign(args, {
|
const newArgs = Object.assign(args, {
|
||||||
userId: root.id
|
userId: root.id
|
||||||
});
|
});
|
||||||
|
|
||||||
const filtered = args.name || args.fingerprint;
|
const filtered = args.name || args.fingerprint;
|
||||||
return !filtered ? list(newArgs) : get(newArgs).then((key) => [key]);
|
return !filtered ? list(newArgs) : get(newArgs).then(key => [key]);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
updated: {
|
updated: {
|
||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
description: 'When this user/account\'s details was last updated'
|
description: "When this user/account's details was last updated"
|
||||||
},
|
},
|
||||||
created: {
|
created: {
|
||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
|
@ -59,20 +59,18 @@ module.exports = new GraphQLObjectType({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
const {
|
const { tags: { get } } = api.machines;
|
||||||
tags: {
|
|
||||||
get
|
|
||||||
}
|
|
||||||
} = api.machines;
|
|
||||||
|
|
||||||
return !args.name ? root.tags : get({
|
return !args.name
|
||||||
id: root.id,
|
? root.tags
|
||||||
tag: args.name
|
: get({
|
||||||
}).then((value) => {
|
id: root.id,
|
||||||
return {
|
tag: args.name
|
||||||
[args.name]: value
|
}).then(value => {
|
||||||
};
|
return {
|
||||||
});
|
[args.name]: value
|
||||||
|
};
|
||||||
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created: {
|
created: {
|
||||||
@ -81,12 +79,12 @@ module.exports = new GraphQLObjectType({
|
|||||||
},
|
},
|
||||||
updated: {
|
updated: {
|
||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
description: 'When this instance\'s details was last updated'
|
description: "When this instance's details was last updated"
|
||||||
},
|
},
|
||||||
docker: {
|
docker: {
|
||||||
type: GraphQLBoolean,
|
type: GraphQLBoolean,
|
||||||
description: 'Whether this instance is a Docker container, if present',
|
description: 'Whether this instance is a Docker container, if present',
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return !!root.docker;
|
return !!root.docker;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -105,7 +103,7 @@ module.exports = new GraphQLObjectType({
|
|||||||
firewall_enabled: {
|
firewall_enabled: {
|
||||||
type: GraphQLBoolean,
|
type: GraphQLBoolean,
|
||||||
description: 'Whether firewall rules are enforced on this instance',
|
description: 'Whether firewall rules are enforced on this instance',
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return !!root.firewall_enabled;
|
return !!root.firewall_enabled;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -113,7 +111,7 @@ module.exports = new GraphQLObjectType({
|
|||||||
// circular dependency
|
// circular dependency
|
||||||
type: new GraphQLList(require('./firewall-rule')),
|
type: new GraphQLList(require('./firewall-rule')),
|
||||||
description: 'List of FirewallRules affecting this machine',
|
description: 'List of FirewallRules affecting this machine',
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return api.firewallRules.listByMachine(root.id);
|
return api.firewallRules.listByMachine(root.id);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -121,7 +119,7 @@ module.exports = new GraphQLObjectType({
|
|||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
description: 'UUID of the server on which the instance is located'
|
description: 'UUID of the server on which the instance is located'
|
||||||
},
|
},
|
||||||
'package': {
|
package: {
|
||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
description: 'The id or name of the package used to create this instance'
|
description: 'The id or name of the package used to create this instance'
|
||||||
},
|
},
|
||||||
@ -135,17 +133,14 @@ module.exports = new GraphQLObjectType({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: (root, args) => {
|
resolve: (root, args) => {
|
||||||
const {
|
const { snapshot: { list, get } } = api.machines;
|
||||||
snapshot: {
|
|
||||||
list,
|
|
||||||
get
|
|
||||||
}
|
|
||||||
} = api.machines;
|
|
||||||
|
|
||||||
return !args.id ? list(root) : get({
|
return !args.id
|
||||||
id: root.id,
|
? list(root)
|
||||||
name: args.name
|
: get({
|
||||||
});
|
id: root.id,
|
||||||
|
name: args.name
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -20,17 +20,17 @@ module.exports = new GraphQLObjectType({
|
|||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
description: 'The network name'
|
description: 'The network name'
|
||||||
},
|
},
|
||||||
'public': {
|
public: {
|
||||||
type: GraphQLBoolean,
|
type: GraphQLBoolean,
|
||||||
description: 'Whether this a public or private (rfc1918) network',
|
description: 'Whether this a public or private (rfc1918) network',
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return !!root['public'];
|
return !!root['public'];
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
fabric: {
|
fabric: {
|
||||||
type: GraphQLBoolean,
|
type: GraphQLBoolean,
|
||||||
description: 'Whether this network is created on a fabric',
|
description: 'Whether this network is created on a fabric',
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return !!root.fabric;
|
return !!root.fabric;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -65,7 +65,7 @@ module.exports = new GraphQLObjectType({
|
|||||||
internet_nat: {
|
internet_nat: {
|
||||||
type: GraphQLBoolean,
|
type: GraphQLBoolean,
|
||||||
description: 'Provision internet NAT zone on gateway address',
|
description: 'Provision internet NAT zone on gateway address',
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return !!root.internet_nat;
|
return !!root.internet_nat;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
const {
|
const { GraphQLBoolean, GraphQLObjectType, GraphQLString } = require('graphql');
|
||||||
GraphQLBoolean,
|
|
||||||
GraphQLObjectType,
|
|
||||||
GraphQLString
|
|
||||||
} = require('graphql');
|
|
||||||
|
|
||||||
module.exports = new GraphQLObjectType({
|
module.exports = new GraphQLObjectType({
|
||||||
name: 'NicType',
|
name: 'NicType',
|
||||||
@ -10,16 +6,16 @@ module.exports = new GraphQLObjectType({
|
|||||||
fields: {
|
fields: {
|
||||||
ip: {
|
ip: {
|
||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
description: 'NIC\'s IPv4 address'
|
description: "NIC's IPv4 address"
|
||||||
},
|
},
|
||||||
mac: {
|
mac: {
|
||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
description: 'NIC\'s MAC address'
|
description: "NIC's MAC address"
|
||||||
},
|
},
|
||||||
primary: {
|
primary: {
|
||||||
type: GraphQLBoolean,
|
type: GraphQLBoolean,
|
||||||
description: 'Whether this is the instance\'s primary NIC',
|
description: "Whether this is the instance's primary NIC",
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return root.primary;
|
return root.primary;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -37,7 +33,7 @@ module.exports = new GraphQLObjectType({
|
|||||||
},
|
},
|
||||||
network: {
|
network: {
|
||||||
type: GraphQLString,
|
type: GraphQLString,
|
||||||
description: 'The NIC\'s network id (see ListNetworks)'
|
description: "The NIC's network id (see ListNetworks)"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -19,15 +19,15 @@ module.exports = new GraphQLObjectType({
|
|||||||
},
|
},
|
||||||
policies: {
|
policies: {
|
||||||
type: new GraphQLList(GraphQLString),
|
type: new GraphQLList(GraphQLString),
|
||||||
description: 'This account\'s policies which this role obeys (Optional)'
|
description: "This account's policies which this role obeys (Optional)"
|
||||||
},
|
},
|
||||||
members: {
|
members: {
|
||||||
type: new GraphQLList(GraphQLString),
|
type: new GraphQLList(GraphQLString),
|
||||||
description: 'This account\'s user logins this role applies to (Optional)'
|
description: "This account's user logins this role applies to (Optional)"
|
||||||
},
|
},
|
||||||
default_members: {
|
default_members: {
|
||||||
type: new GraphQLList(GraphQLString),
|
type: new GraphQLList(GraphQLString),
|
||||||
description: 'This account\'s user logins this role applies to by default (Optional)'
|
description: "This account's user logins this role applies to by default (Optional)"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -42,7 +42,7 @@ module.exports.tag = new GraphQLObjectType({
|
|||||||
role_tag: {
|
role_tag: {
|
||||||
type: new GraphQLList(GraphQLString),
|
type: new GraphQLList(GraphQLString),
|
||||||
description: 'The role name',
|
description: 'The role name',
|
||||||
resolve: (root) => {
|
resolve: root => {
|
||||||
return root['role-tag'] || root.role_tag;
|
return root['role-tag'] || root.role_tag;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
const {
|
const { GraphQLString, GraphQLObjectType } = require('graphql');
|
||||||
GraphQLString,
|
|
||||||
GraphQLObjectType
|
|
||||||
} = require('graphql');
|
|
||||||
|
|
||||||
module.exports = new GraphQLObjectType({
|
module.exports = new GraphQLObjectType({
|
||||||
name: 'ServiceType',
|
name: 'ServiceType',
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
const {
|
const { GraphQLString, GraphQLObjectType, GraphQLID } = require('graphql');
|
||||||
GraphQLString,
|
|
||||||
GraphQLObjectType,
|
|
||||||
GraphQLID
|
|
||||||
} = require('graphql');
|
|
||||||
|
|
||||||
module.exports = new GraphQLObjectType({
|
module.exports = new GraphQLObjectType({
|
||||||
name: 'SnapshotType',
|
name: 'SnapshotType',
|
||||||
|
@ -65,8 +65,8 @@ ajv-keywords@^1.0.0:
|
|||||||
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c"
|
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c"
|
||||||
|
|
||||||
ajv@^4.7.0, ajv@^4.9.1:
|
ajv@^4.7.0, ajv@^4.9.1:
|
||||||
version "4.11.6"
|
version "4.11.7"
|
||||||
resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.6.tgz#947e93049790942b2a2d60a8289b28924d39f987"
|
resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.7.tgz#8655a5d86d0824985cc471a1d913fb6729a0ec48"
|
||||||
dependencies:
|
dependencies:
|
||||||
co "^4.6.0"
|
co "^4.6.0"
|
||||||
json-stable-stringify "^1.0.1"
|
json-stable-stringify "^1.0.1"
|
||||||
@ -133,11 +133,11 @@ archy@^1.0.0:
|
|||||||
resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"
|
resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"
|
||||||
|
|
||||||
are-we-there-yet@~1.1.2:
|
are-we-there-yet@~1.1.2:
|
||||||
version "1.1.2"
|
version "1.1.4"
|
||||||
resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3"
|
resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
|
||||||
dependencies:
|
dependencies:
|
||||||
delegates "^1.0.0"
|
delegates "^1.0.0"
|
||||||
readable-stream "^2.0.0 || ^1.1.13"
|
readable-stream "^2.0.6"
|
||||||
|
|
||||||
argparse@^1.0.7:
|
argparse@^1.0.7:
|
||||||
version "1.0.9"
|
version "1.0.9"
|
||||||
@ -156,8 +156,8 @@ arr-exclude@^1.0.0:
|
|||||||
resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631"
|
resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631"
|
||||||
|
|
||||||
arr-flatten@^1.0.1:
|
arr-flatten@^1.0.1:
|
||||||
version "1.0.1"
|
version "1.0.3"
|
||||||
resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b"
|
resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1"
|
||||||
|
|
||||||
array-differ@^1.0.0:
|
array-differ@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
@ -205,6 +205,10 @@ assert-plus@^1.0.0, assert-plus@1.0.0:
|
|||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
|
resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
|
||||||
|
|
||||||
|
ast-types@0.9.8:
|
||||||
|
version "0.9.8"
|
||||||
|
resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.9.8.tgz#6cb6a40beba31f49f20928e28439fc14a3dab078"
|
||||||
|
|
||||||
async-each@^1.0.0:
|
async-each@^1.0.0:
|
||||||
version "1.0.1"
|
version "1.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
|
resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
|
||||||
@ -322,7 +326,7 @@ aws4@^1.2.1:
|
|||||||
version "1.6.0"
|
version "1.6.0"
|
||||||
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
|
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
|
||||||
|
|
||||||
babel-code-frame@^6.16.0, babel-code-frame@^6.22.0:
|
babel-code-frame@^6.16.0, babel-code-frame@^6.22.0, babel-code-frame@6.22.0:
|
||||||
version "6.22.0"
|
version "6.22.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4"
|
resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -609,8 +613,12 @@ babel-types@^6.18.0, babel-types@^6.24.1:
|
|||||||
to-fast-properties "^1.0.1"
|
to-fast-properties "^1.0.1"
|
||||||
|
|
||||||
babylon@^6.1.0, babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0:
|
babylon@^6.1.0, babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0:
|
||||||
version "6.16.1"
|
version "6.17.0"
|
||||||
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3"
|
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.0.tgz#37da948878488b9c4e3c4038893fa3314b3fc932"
|
||||||
|
|
||||||
|
babylon@7.0.0-beta.8:
|
||||||
|
version "7.0.0-beta.8"
|
||||||
|
resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.8.tgz#2bdc5ae366041442c27e068cce6f0d7c06ea9949"
|
||||||
|
|
||||||
backoff@^2.4.1:
|
backoff@^2.4.1:
|
||||||
version "2.5.0"
|
version "2.5.0"
|
||||||
@ -693,7 +701,7 @@ buffer-shims@~1.0.0:
|
|||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51"
|
resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51"
|
||||||
|
|
||||||
builtin-modules@^1.0.0, builtin-modules@^1.1.1:
|
builtin-modules@^1.0.0:
|
||||||
version "1.1.1"
|
version "1.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
|
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
|
||||||
|
|
||||||
@ -795,7 +803,7 @@ chalk@^0.4.0:
|
|||||||
has-color "~0.1.0"
|
has-color "~0.1.0"
|
||||||
strip-ansi "~0.1.0"
|
strip-ansi "~0.1.0"
|
||||||
|
|
||||||
chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
|
chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3, chalk@1.1.3:
|
||||||
version "1.1.3"
|
version "1.1.3"
|
||||||
resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
|
resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -968,10 +976,6 @@ console-control-strings@^1.0.0, console-control-strings@~1.1.0:
|
|||||||
version "1.1.0"
|
version "1.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
|
resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
|
||||||
|
|
||||||
contains-path@^0.1.0:
|
|
||||||
version "0.1.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
|
|
||||||
|
|
||||||
content-disposition@0.5.2:
|
content-disposition@0.5.2:
|
||||||
version "0.5.2"
|
version "0.5.2"
|
||||||
resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
|
resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
|
||||||
@ -1073,17 +1077,11 @@ debug-log@^1.0.1:
|
|||||||
version "1.0.1"
|
version "1.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f"
|
resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f"
|
||||||
|
|
||||||
debug@^2.1.1, debug@^2.2.0, debug@2.6.3:
|
debug@^2.1.1, debug@^2.2.0:
|
||||||
version "2.6.3"
|
version "2.6.5"
|
||||||
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d"
|
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.5.tgz#7a76247781acd4ef2a85f0fb8abf763cd1af249e"
|
||||||
dependencies:
|
dependencies:
|
||||||
ms "0.7.2"
|
ms "0.7.3"
|
||||||
|
|
||||||
debug@2.2.0:
|
|
||||||
version "2.2.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
|
|
||||||
dependencies:
|
|
||||||
ms "0.7.1"
|
|
||||||
|
|
||||||
debug@2.6.1:
|
debug@2.6.1:
|
||||||
version "2.6.1"
|
version "2.6.1"
|
||||||
@ -1091,6 +1089,12 @@ debug@2.6.1:
|
|||||||
dependencies:
|
dependencies:
|
||||||
ms "0.7.2"
|
ms "0.7.2"
|
||||||
|
|
||||||
|
debug@2.6.4:
|
||||||
|
version "2.6.4"
|
||||||
|
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.4.tgz#7586a9b3c39741c0282ae33445c4e8ac74734fe0"
|
||||||
|
dependencies:
|
||||||
|
ms "0.7.3"
|
||||||
|
|
||||||
decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2:
|
decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2:
|
||||||
version "1.2.0"
|
version "1.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
|
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
|
||||||
@ -1162,13 +1166,6 @@ doctrine@^2.0.0:
|
|||||||
esutils "^2.0.2"
|
esutils "^2.0.2"
|
||||||
isarray "^1.0.0"
|
isarray "^1.0.0"
|
||||||
|
|
||||||
doctrine@1.5.0:
|
|
||||||
version "1.5.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
|
|
||||||
dependencies:
|
|
||||||
esutils "^2.0.2"
|
|
||||||
isarray "^1.0.0"
|
|
||||||
|
|
||||||
dot-prop@^4.1.0:
|
dot-prop@^4.1.0:
|
||||||
version "4.1.1"
|
version "4.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.1.1.tgz#a8493f0b7b5eeec82525b5c7587fa7de7ca859c1"
|
resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.1.1.tgz#a8493f0b7b5eeec82525b5c7587fa7de7ca859c1"
|
||||||
@ -1309,63 +1306,7 @@ escope@^3.6.0:
|
|||||||
esrecurse "^4.1.0"
|
esrecurse "^4.1.0"
|
||||||
estraverse "^4.1.1"
|
estraverse "^4.1.1"
|
||||||
|
|
||||||
eslint-config-semistandard@^8.0.0:
|
eslint:
|
||||||
version "8.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/eslint-config-semistandard/-/eslint-config-semistandard-8.0.0.tgz#fb8239379a1dcc114cde7a7dcbbc80beea3334b0"
|
|
||||||
|
|
||||||
eslint-config-standard@^10.2.0:
|
|
||||||
version "10.2.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-10.2.0.tgz#9e5a495c32aae8aa8aeb580b703ef645a1765e9b"
|
|
||||||
|
|
||||||
eslint-import-resolver-node@^0.2.0:
|
|
||||||
version "0.2.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c"
|
|
||||||
dependencies:
|
|
||||||
debug "^2.2.0"
|
|
||||||
object-assign "^4.0.1"
|
|
||||||
resolve "^1.1.6"
|
|
||||||
|
|
||||||
eslint-module-utils@^2.0.0:
|
|
||||||
version "2.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce"
|
|
||||||
dependencies:
|
|
||||||
debug "2.2.0"
|
|
||||||
pkg-dir "^1.0.0"
|
|
||||||
|
|
||||||
eslint-plugin-import:
|
|
||||||
version "2.2.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e"
|
|
||||||
dependencies:
|
|
||||||
builtin-modules "^1.1.1"
|
|
||||||
contains-path "^0.1.0"
|
|
||||||
debug "^2.2.0"
|
|
||||||
doctrine "1.5.0"
|
|
||||||
eslint-import-resolver-node "^0.2.0"
|
|
||||||
eslint-module-utils "^2.0.0"
|
|
||||||
has "^1.0.1"
|
|
||||||
lodash.cond "^4.3.0"
|
|
||||||
minimatch "^3.0.3"
|
|
||||||
pkg-up "^1.0.0"
|
|
||||||
|
|
||||||
eslint-plugin-node:
|
|
||||||
version "4.2.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-4.2.2.tgz#82959ca9aed79fcbd28bb1b188d05cac04fb3363"
|
|
||||||
dependencies:
|
|
||||||
ignore "^3.0.11"
|
|
||||||
minimatch "^3.0.2"
|
|
||||||
object-assign "^4.0.1"
|
|
||||||
resolve "^1.1.7"
|
|
||||||
semver "5.3.0"
|
|
||||||
|
|
||||||
eslint-plugin-promise@^3.5.0:
|
|
||||||
version "3.5.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.5.0.tgz#78fbb6ffe047201627569e85a6c5373af2a68fca"
|
|
||||||
|
|
||||||
eslint-plugin-standard@^3.0.1:
|
|
||||||
version "3.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz#34d0c915b45edc6f010393c7eef3823b08565cf2"
|
|
||||||
|
|
||||||
eslint@3.19.0:
|
|
||||||
version "3.19.0"
|
version "3.19.0"
|
||||||
resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc"
|
resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -1405,6 +1346,18 @@ eslint@3.19.0:
|
|||||||
text-table "~0.2.0"
|
text-table "~0.2.0"
|
||||||
user-home "^2.0.0"
|
user-home "^2.0.0"
|
||||||
|
|
||||||
|
eslint-config-prettier:
|
||||||
|
version "1.7.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-1.7.0.tgz#cda3ce22df1e852daa9370f1f3446e8b8a02ce44"
|
||||||
|
dependencies:
|
||||||
|
get-stdin "^5.0.1"
|
||||||
|
|
||||||
|
eslint-plugin-prettier:
|
||||||
|
version "2.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.0.1.tgz#2ae1216cf053dd728360ca8560bf1aabc8af3fa9"
|
||||||
|
dependencies:
|
||||||
|
requireindex "~1.1.0"
|
||||||
|
|
||||||
espower-location-detector@^1.0.0:
|
espower-location-detector@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5"
|
resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5"
|
||||||
@ -1415,8 +1368,8 @@ espower-location-detector@^1.0.0:
|
|||||||
xtend "^4.0.0"
|
xtend "^4.0.0"
|
||||||
|
|
||||||
espree@^3.4.0:
|
espree@^3.4.0:
|
||||||
version "3.4.1"
|
version "3.4.2"
|
||||||
resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.1.tgz#28a83ab4aaed71ed8fe0f5efe61b76a05c13c4d2"
|
resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.2.tgz#38dbdedbedc95b8961a1fbf04734a8f6a9c8c592"
|
||||||
dependencies:
|
dependencies:
|
||||||
acorn "^5.0.1"
|
acorn "^5.0.1"
|
||||||
acorn-jsx "^3.0.0"
|
acorn-jsx "^3.0.0"
|
||||||
@ -1452,7 +1405,7 @@ estraverse@~4.1.0:
|
|||||||
version "4.1.1"
|
version "4.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2"
|
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2"
|
||||||
|
|
||||||
esutils@^2.0.2:
|
esutils@^2.0.2, esutils@2.0.2:
|
||||||
version "2.0.2"
|
version "2.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
|
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
|
||||||
|
|
||||||
@ -1621,10 +1574,10 @@ fill-range@^2.1.0:
|
|||||||
repeat-string "^1.5.2"
|
repeat-string "^1.5.2"
|
||||||
|
|
||||||
finalhandler@~1.0.0:
|
finalhandler@~1.0.0:
|
||||||
version "1.0.1"
|
version "1.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.1.tgz#bcd15d1689c0e5ed729b6f7f541a6df984117db8"
|
resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.2.tgz#d0e36f9dbc557f2de14423df6261889e9d60c93a"
|
||||||
dependencies:
|
dependencies:
|
||||||
debug "2.6.3"
|
debug "2.6.4"
|
||||||
encodeurl "~1.0.1"
|
encodeurl "~1.0.1"
|
||||||
escape-html "~1.0.3"
|
escape-html "~1.0.3"
|
||||||
on-finished "~2.3.0"
|
on-finished "~2.3.0"
|
||||||
@ -1662,6 +1615,10 @@ flat-cache@^1.2.1:
|
|||||||
graceful-fs "^4.1.2"
|
graceful-fs "^4.1.2"
|
||||||
write "^0.2.1"
|
write "^0.2.1"
|
||||||
|
|
||||||
|
flow-parser@0.43.0:
|
||||||
|
version "0.43.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.43.0.tgz#e2b8eb1ac83dd53f7b6b04a7c35b6a52c33479b7"
|
||||||
|
|
||||||
fn-name@^2.0.0:
|
fn-name@^2.0.0:
|
||||||
version "2.0.1"
|
version "2.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7"
|
resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7"
|
||||||
@ -1731,17 +1688,13 @@ fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
|
|||||||
mkdirp ">=0.5 0"
|
mkdirp ">=0.5 0"
|
||||||
rimraf "2"
|
rimraf "2"
|
||||||
|
|
||||||
function-bind@^1.0.2:
|
|
||||||
version "1.1.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771"
|
|
||||||
|
|
||||||
fuzzyset.js@^0.0.1:
|
fuzzyset.js@^0.0.1:
|
||||||
version "0.0.1"
|
version "0.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/fuzzyset.js/-/fuzzyset.js-0.0.1.tgz#979e22f9451b4b38f051f7937c919dbacc692958"
|
resolved "https://registry.yarnpkg.com/fuzzyset.js/-/fuzzyset.js-0.0.1.tgz#979e22f9451b4b38f051f7937c919dbacc692958"
|
||||||
|
|
||||||
gauge@~2.7.1:
|
gauge@~2.7.1:
|
||||||
version "2.7.3"
|
version "2.7.4"
|
||||||
resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09"
|
resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
|
||||||
dependencies:
|
dependencies:
|
||||||
aproba "^1.0.3"
|
aproba "^1.0.3"
|
||||||
console-control-strings "^1.0.0"
|
console-control-strings "^1.0.0"
|
||||||
@ -1774,6 +1727,10 @@ get-stdin@^4.0.1:
|
|||||||
version "4.0.1"
|
version "4.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
|
resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
|
||||||
|
|
||||||
|
get-stdin@^5.0.1, get-stdin@5.0.1:
|
||||||
|
version "5.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398"
|
||||||
|
|
||||||
get-stream@^2.2.0:
|
get-stream@^2.2.0:
|
||||||
version "2.3.1"
|
version "2.3.1"
|
||||||
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de"
|
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de"
|
||||||
@ -1785,7 +1742,13 @@ get-stream@^3.0.0:
|
|||||||
version "3.0.0"
|
version "3.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
|
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
|
||||||
|
|
||||||
getpass@^0.1.1, getpass@0.1.6:
|
getpass@^0.1.1:
|
||||||
|
version "0.1.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
|
||||||
|
dependencies:
|
||||||
|
assert-plus "^1.0.0"
|
||||||
|
|
||||||
|
getpass@0.1.6:
|
||||||
version "0.1.6"
|
version "0.1.6"
|
||||||
resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6"
|
resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -1824,7 +1787,7 @@ glob@^6.0.1:
|
|||||||
once "^1.3.0"
|
once "^1.3.0"
|
||||||
path-is-absolute "^1.0.0"
|
path-is-absolute "^1.0.0"
|
||||||
|
|
||||||
glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.0.6:
|
glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.0.6, glob@7.1.1:
|
||||||
version "7.1.1"
|
version "7.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
|
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -1933,12 +1896,6 @@ has-yarn@^1.0.0:
|
|||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7"
|
resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7"
|
||||||
|
|
||||||
has@^1.0.1:
|
|
||||||
version "1.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
|
|
||||||
dependencies:
|
|
||||||
function-bind "^1.0.2"
|
|
||||||
|
|
||||||
hawk@~3.1.3:
|
hawk@~3.1.3:
|
||||||
version "3.1.3"
|
version "3.1.3"
|
||||||
resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
|
resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
|
||||||
@ -1960,8 +1917,8 @@ home-or-tmp@^2.0.0:
|
|||||||
os-tmpdir "^1.0.1"
|
os-tmpdir "^1.0.1"
|
||||||
|
|
||||||
hosted-git-info@^2.1.4:
|
hosted-git-info@^2.1.4:
|
||||||
version "2.4.1"
|
version "2.4.2"
|
||||||
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.1.tgz#4b0445e41c004a8bd1337773a4ff790ca40318c8"
|
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67"
|
||||||
|
|
||||||
http-errors@^1.3.0, http-errors@~1.6.1:
|
http-errors@^1.3.0, http-errors@~1.6.1:
|
||||||
version "1.6.1"
|
version "1.6.1"
|
||||||
@ -1981,8 +1938,8 @@ http-signature@^1.0.2, http-signature@~1.1.0:
|
|||||||
sshpk "^1.7.0"
|
sshpk "^1.7.0"
|
||||||
|
|
||||||
hullabaloo-config-manager@^1.0.0:
|
hullabaloo-config-manager@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/hullabaloo-config-manager/-/hullabaloo-config-manager-1.0.0.tgz#70403e68afa009a577bb134306bb71b6b45aaa70"
|
resolved "https://registry.yarnpkg.com/hullabaloo-config-manager/-/hullabaloo-config-manager-1.0.1.tgz#c72be7ba249a67c99b6ba3eb1f55837fa01acd8f"
|
||||||
dependencies:
|
dependencies:
|
||||||
dot-prop "^4.1.0"
|
dot-prop "^4.1.0"
|
||||||
es6-error "^4.0.2"
|
es6-error "^4.0.2"
|
||||||
@ -2006,7 +1963,7 @@ ignore-by-default@^1.0.0:
|
|||||||
version "1.0.1"
|
version "1.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09"
|
resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09"
|
||||||
|
|
||||||
ignore@^3.0.11, ignore@^3.2.0:
|
ignore@^3.2.0:
|
||||||
version "3.2.7"
|
version "3.2.7"
|
||||||
resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.7.tgz#4810ca5f1d8eca5595213a34b94f2eb4ed926bbd"
|
resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.7.tgz#4810ca5f1d8eca5595213a34b94f2eb4ed926bbd"
|
||||||
|
|
||||||
@ -2058,8 +2015,8 @@ inquirer@^0.12.0:
|
|||||||
through "^2.3.6"
|
through "^2.3.6"
|
||||||
|
|
||||||
interpret@^1.0.0:
|
interpret@^1.0.0:
|
||||||
version "1.0.2"
|
version "1.0.3"
|
||||||
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.2.tgz#f4f623f0bb7122f15f5717c8e254b8161b5c5b2d"
|
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90"
|
||||||
|
|
||||||
invariant@^2.2.0:
|
invariant@^2.2.0:
|
||||||
version "2.2.2"
|
version "2.2.2"
|
||||||
@ -2095,7 +2052,7 @@ is-binary-path@^1.0.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
binary-extensions "^1.0.0"
|
binary-extensions "^1.0.0"
|
||||||
|
|
||||||
is-buffer@^1.0.2:
|
is-buffer@^1.1.5:
|
||||||
version "1.1.5"
|
version "1.1.5"
|
||||||
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc"
|
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc"
|
||||||
|
|
||||||
@ -2395,6 +2352,15 @@ jest-validate@^19.0.2:
|
|||||||
leven "^2.0.0"
|
leven "^2.0.0"
|
||||||
pretty-format "^19.0.0"
|
pretty-format "^19.0.0"
|
||||||
|
|
||||||
|
jest-validate@19.0.0:
|
||||||
|
version "19.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.0.tgz#8c6318a20ecfeaba0ba5378bfbb8277abded4173"
|
||||||
|
dependencies:
|
||||||
|
chalk "^1.1.1"
|
||||||
|
jest-matcher-utils "^19.0.0"
|
||||||
|
leven "^2.0.0"
|
||||||
|
pretty-format "^19.0.0"
|
||||||
|
|
||||||
jodid25519@^1.0.0:
|
jodid25519@^1.0.0:
|
||||||
version "1.0.2"
|
version "1.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967"
|
resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967"
|
||||||
@ -2476,10 +2442,10 @@ keep-alive-agent@0.0.1:
|
|||||||
resolved "https://registry.yarnpkg.com/keep-alive-agent/-/keep-alive-agent-0.0.1.tgz#44847ca394ce8d6b521ae85816bd64509942b385"
|
resolved "https://registry.yarnpkg.com/keep-alive-agent/-/keep-alive-agent-0.0.1.tgz#44847ca394ce8d6b521ae85816bd64509942b385"
|
||||||
|
|
||||||
kind-of@^3.0.2:
|
kind-of@^3.0.2:
|
||||||
version "3.1.0"
|
version "3.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47"
|
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.0.tgz#b58abe4d5c044ad33726a8c1525b48cf891bff07"
|
||||||
dependencies:
|
dependencies:
|
||||||
is-buffer "^1.0.2"
|
is-buffer "^1.1.5"
|
||||||
|
|
||||||
last-line-stream@^1.0.0:
|
last-line-stream@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
@ -2552,10 +2518,6 @@ lodash.clonedeepwith@^4.5.0:
|
|||||||
version "4.5.0"
|
version "4.5.0"
|
||||||
resolved "https://registry.yarnpkg.com/lodash.clonedeepwith/-/lodash.clonedeepwith-4.5.0.tgz#6ee30573a03a1a60d670a62ef33c10cf1afdbdd4"
|
resolved "https://registry.yarnpkg.com/lodash.clonedeepwith/-/lodash.clonedeepwith-4.5.0.tgz#6ee30573a03a1a60d670a62ef33c10cf1afdbdd4"
|
||||||
|
|
||||||
lodash.cond@^4.3.0:
|
|
||||||
version "4.5.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5"
|
|
||||||
|
|
||||||
lodash.debounce@^4.0.3:
|
lodash.debounce@^4.0.3:
|
||||||
version "4.0.8"
|
version "4.0.8"
|
||||||
resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
|
resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
|
||||||
@ -2725,13 +2687,13 @@ mimic-fn@^1.0.0:
|
|||||||
version "1.1.0"
|
version "1.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
|
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
|
||||||
|
|
||||||
minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, "minimatch@2 || 3":
|
minimatch@^3.0.0, minimatch@^3.0.2, "minimatch@2 || 3":
|
||||||
version "3.0.3"
|
version "3.0.3"
|
||||||
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
|
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
|
||||||
dependencies:
|
dependencies:
|
||||||
brace-expansion "^1.0.0"
|
brace-expansion "^1.0.0"
|
||||||
|
|
||||||
minimist@^1.1.3, minimist@^1.2.0, minimist@~1.2.0:
|
minimist@^1.1.3, minimist@^1.2.0, minimist@~1.2.0, minimist@1.2.0:
|
||||||
version "1.2.0"
|
version "1.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
||||||
|
|
||||||
@ -2749,7 +2711,7 @@ mkdirp@^0.5.0, mkdirp@^0.5.1, "mkdirp@>=0.5 0", mkdirp@~0.5.1, mkdirp@0.5.1:
|
|||||||
dependencies:
|
dependencies:
|
||||||
minimist "0.0.8"
|
minimist "0.0.8"
|
||||||
|
|
||||||
moment@^2.10.6, moment@^2.18.1:
|
moment@^2.10.6:
|
||||||
version "2.18.1"
|
version "2.18.1"
|
||||||
resolved "https://registry.yarnpkg.com/moment/-/moment-2.18.1.tgz#c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f"
|
resolved "https://registry.yarnpkg.com/moment/-/moment-2.18.1.tgz#c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f"
|
||||||
|
|
||||||
@ -2761,14 +2723,10 @@ mooremachine@^2.0.1:
|
|||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
dtrace-provider "~0.8"
|
dtrace-provider "~0.8"
|
||||||
|
|
||||||
ms@^0.7.1:
|
ms@^0.7.1, ms@0.7.3:
|
||||||
version "0.7.3"
|
version "0.7.3"
|
||||||
resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff"
|
resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff"
|
||||||
|
|
||||||
ms@0.7.1:
|
|
||||||
version "0.7.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098"
|
|
||||||
|
|
||||||
ms@0.7.2:
|
ms@0.7.2:
|
||||||
version "0.7.2"
|
version "0.7.2"
|
||||||
resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765"
|
resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765"
|
||||||
@ -2840,8 +2798,8 @@ nopt@^4.0.1:
|
|||||||
osenv "^0.1.4"
|
osenv "^0.1.4"
|
||||||
|
|
||||||
normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
|
normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
|
||||||
version "2.3.6"
|
version "2.3.8"
|
||||||
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.6.tgz#498fa420c96401f787402ba21e600def9f981fff"
|
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb"
|
||||||
dependencies:
|
dependencies:
|
||||||
hosted-git-info "^2.1.4"
|
hosted-git-info "^2.1.4"
|
||||||
is-builtin-module "^1.0.0"
|
is-builtin-module "^1.0.0"
|
||||||
@ -2880,8 +2838,8 @@ number-is-nan@^1.0.0:
|
|||||||
resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
|
resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
|
||||||
|
|
||||||
nyc@^10.2.0:
|
nyc@^10.2.0:
|
||||||
version "10.2.0"
|
version "10.2.2"
|
||||||
resolved "https://registry.yarnpkg.com/nyc/-/nyc-10.2.0.tgz#facd90240600c9aa4dd81ea99c2fb6a85c53de0c"
|
resolved "https://registry.yarnpkg.com/nyc/-/nyc-10.2.2.tgz#1b1c8ca4636d810cb3e281558dc9fcb08389f204"
|
||||||
dependencies:
|
dependencies:
|
||||||
archy "^1.0.0"
|
archy "^1.0.0"
|
||||||
arrify "^1.0.1"
|
arrify "^1.0.1"
|
||||||
@ -3040,8 +2998,8 @@ package-hash@^2.0.0:
|
|||||||
release-zalgo "^1.0.0"
|
release-zalgo "^1.0.0"
|
||||||
|
|
||||||
package-json@^4.0.0:
|
package-json@^4.0.0:
|
||||||
version "4.0.0"
|
version "4.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.0.tgz#f3c9dc8738f5b59304d54d2cfb3f91d08fdd7998"
|
resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed"
|
||||||
dependencies:
|
dependencies:
|
||||||
got "^6.7.1"
|
got "^6.7.1"
|
||||||
registry-auth-token "^3.0.1"
|
registry-auth-token "^3.0.1"
|
||||||
@ -3164,12 +3122,6 @@ pkg-dir@^1.0.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
find-up "^1.0.0"
|
find-up "^1.0.0"
|
||||||
|
|
||||||
pkg-up@^1.0.0:
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26"
|
|
||||||
dependencies:
|
|
||||||
find-up "^1.0.0"
|
|
||||||
|
|
||||||
plur@^1.0.0:
|
plur@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156"
|
resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156"
|
||||||
@ -3200,6 +3152,21 @@ preserve@^0.2.0:
|
|||||||
version "0.2.0"
|
version "0.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
|
resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
|
||||||
|
|
||||||
|
prettier:
|
||||||
|
version "1.2.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.2.2.tgz#22d17c1132faaaea1f1d4faea31f19f7a1959f3e"
|
||||||
|
dependencies:
|
||||||
|
ast-types "0.9.8"
|
||||||
|
babel-code-frame "6.22.0"
|
||||||
|
babylon "7.0.0-beta.8"
|
||||||
|
chalk "1.1.3"
|
||||||
|
esutils "2.0.2"
|
||||||
|
flow-parser "0.43.0"
|
||||||
|
get-stdin "5.0.1"
|
||||||
|
glob "7.1.1"
|
||||||
|
jest-validate "19.0.0"
|
||||||
|
minimist "1.2.0"
|
||||||
|
|
||||||
pretty-format@^19.0.0:
|
pretty-format@^19.0.0:
|
||||||
version "19.0.0"
|
version "19.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84"
|
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84"
|
||||||
@ -3315,7 +3282,7 @@ read@1.0.7:
|
|||||||
dependencies:
|
dependencies:
|
||||||
mute-stream "~0.0.4"
|
mute-stream "~0.0.4"
|
||||||
|
|
||||||
readable-stream@^2, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2, "readable-stream@>= 1.0.2":
|
readable-stream@^2, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2, "readable-stream@>= 1.0.2":
|
||||||
version "2.2.9"
|
version "2.2.9"
|
||||||
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8"
|
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -3362,8 +3329,8 @@ regenerate@^1.2.1:
|
|||||||
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260"
|
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260"
|
||||||
|
|
||||||
regenerator-runtime@^0.10.0:
|
regenerator-runtime@^0.10.0:
|
||||||
version "0.10.3"
|
version "0.10.4"
|
||||||
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e"
|
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.4.tgz#74cb6598d3ba2eb18694e968a40e2b3b4df9cf93"
|
||||||
|
|
||||||
regex-cache@^0.4.2:
|
regex-cache@^0.4.2:
|
||||||
version "0.4.3"
|
version "0.4.3"
|
||||||
@ -3381,10 +3348,11 @@ regexpu-core@^2.0.0:
|
|||||||
regjsparser "^0.1.4"
|
regjsparser "^0.1.4"
|
||||||
|
|
||||||
registry-auth-token@^3.0.1:
|
registry-auth-token@^3.0.1:
|
||||||
version "3.1.2"
|
version "3.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.1.2.tgz#1b9e51a185c930da34a9894b12a52ea998f1adaf"
|
resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.0.tgz#57ae67347e73d96345ed1bc01294c7237c02aa63"
|
||||||
dependencies:
|
dependencies:
|
||||||
rc "^1.1.6"
|
rc "^1.1.6"
|
||||||
|
safe-buffer "^5.0.1"
|
||||||
|
|
||||||
registry-url@^3.0.3:
|
registry-url@^3.0.3:
|
||||||
version "3.1.0"
|
version "3.1.0"
|
||||||
@ -3472,6 +3440,10 @@ require-uncached@^1.0.2:
|
|||||||
caller-path "^0.1.0"
|
caller-path "^0.1.0"
|
||||||
resolve-from "^1.0.0"
|
resolve-from "^1.0.0"
|
||||||
|
|
||||||
|
requireindex@~1.1.0:
|
||||||
|
version "1.1.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/requireindex/-/requireindex-1.1.0.tgz#e5404b81557ef75db6e49c5a72004893fe03e162"
|
||||||
|
|
||||||
resolve-cwd@^1.0.0:
|
resolve-cwd@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f"
|
resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f"
|
||||||
@ -3486,9 +3458,9 @@ resolve-from@^2.0.0:
|
|||||||
version "2.0.0"
|
version "2.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57"
|
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57"
|
||||||
|
|
||||||
resolve@^1.1.6, resolve@^1.1.7:
|
resolve@^1.1.6:
|
||||||
version "1.3.2"
|
version "1.3.3"
|
||||||
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.2.tgz#1f0442c9e0cbb8136e87b9305f932f46c7f28235"
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5"
|
||||||
dependencies:
|
dependencies:
|
||||||
path-parse "^1.0.5"
|
path-parse "^1.0.5"
|
||||||
|
|
||||||
@ -3589,7 +3561,7 @@ semver-diff@^2.0.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
semver "^5.0.3"
|
semver "^5.0.3"
|
||||||
|
|
||||||
semver@^5.0.1, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, "semver@2 || 3 || 4 || 5", semver@5.3.0:
|
semver@^5.0.1, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, "semver@2 || 3 || 4 || 5":
|
||||||
version "5.3.0"
|
version "5.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
|
||||||
|
|
||||||
@ -3736,8 +3708,8 @@ sprintf-js@~1.0.2:
|
|||||||
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
|
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
|
||||||
|
|
||||||
sshpk-agent@^1.3.0:
|
sshpk-agent@^1.3.0:
|
||||||
version "1.5.0"
|
version "1.6.0"
|
||||||
resolved "https://registry.yarnpkg.com/sshpk-agent/-/sshpk-agent-1.5.0.tgz#9b4b4f52a8ed3759a1feef4cc6f0a013f691987a"
|
resolved "https://registry.yarnpkg.com/sshpk-agent/-/sshpk-agent-1.6.0.tgz#56da869e02ad757991c247327e80b261682399af"
|
||||||
dependencies:
|
dependencies:
|
||||||
assert-plus "^1.0.0"
|
assert-plus "^1.0.0"
|
||||||
mooremachine "^2.0.1"
|
mooremachine "^2.0.1"
|
||||||
@ -3784,8 +3756,8 @@ sshpk@^1.7.0, sshpk@^1.8.3, "sshpk@>=1.13.0 < 1.14.0":
|
|||||||
tweetnacl "~0.14.0"
|
tweetnacl "~0.14.0"
|
||||||
|
|
||||||
stack-utils@^1.0.0:
|
stack-utils@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.0.tgz#2392cd8ddbd222492ed6c047960f7414b46c0f83"
|
resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620"
|
||||||
|
|
||||||
"statuses@>= 1.3.1 < 2", statuses@~1.3.1:
|
"statuses@>= 1.3.1 < 2", statuses@~1.3.1:
|
||||||
version "1.3.1"
|
version "1.3.1"
|
||||||
@ -4265,8 +4237,8 @@ wrappy@1:
|
|||||||
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
||||||
|
|
||||||
write-file-atomic@^1.1.2, write-file-atomic@^1.1.4:
|
write-file-atomic@^1.1.2, write-file-atomic@^1.1.4:
|
||||||
version "1.3.1"
|
version "1.3.4"
|
||||||
resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.1.tgz#7d45ba32316328dd1ec7d90f60ebc0d845bb759a"
|
resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f"
|
||||||
dependencies:
|
dependencies:
|
||||||
graceful-fs "^4.1.11"
|
graceful-fs "^4.1.11"
|
||||||
imurmurhash "^0.1.4"
|
imurmurhash "^0.1.4"
|
||||||
@ -4330,8 +4302,8 @@ yargs-parser@^5.0.0:
|
|||||||
camelcase "^3.0.0"
|
camelcase "^3.0.0"
|
||||||
|
|
||||||
yargs@^7.0.2:
|
yargs@^7.0.2:
|
||||||
version "7.0.2"
|
version "7.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.0.2.tgz#115b97df1321823e8b8648e8968c782521221f67"
|
resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8"
|
||||||
dependencies:
|
dependencies:
|
||||||
camelcase "^3.0.0"
|
camelcase "^3.0.0"
|
||||||
cliui "^3.2.0"
|
cliui "^3.2.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user