🔀 Merge branch 'depfu/update/packagescli/npm/open-7.0.0'

This commit is contained in:
Jan Oberhauser 2019-12-30 13:41:25 -06:00
commit cd340c1a44
7 changed files with 17 additions and 16 deletions

View file

@ -59,7 +59,7 @@
"@types/express": "^4.16.1",
"@types/jest": "^24.0.18",
"@types/localtunnel": "^1.9.0",
"@types/lodash.get": "^4.4.2",
"@types/lodash.get": "^4.4.6",
"@types/node": "^10.10.1",
"@types/open": "^6.1.0",
"@types/parseurl": "^1.3.1",
@ -69,7 +69,7 @@
"run-script-os": "^1.0.7",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"typescript": "~3.5.2"
"typescript": "~3.7.4"
},
"dependencies": {
"@oclif/command": "^1.5.18",
@ -96,7 +96,7 @@
"n8n-editor-ui": "~0.29.0",
"n8n-nodes-base": "~0.36.0",
"n8n-workflow": "~0.18.0",
"open": "^6.1.0",
"open": "^7.0.0",
"pg": "^7.11.0",
"request-promise-native": "^1.0.7",
"sqlite3": "^4.0.6",

View file

@ -28,7 +28,7 @@
"@types/crypto-js": "^3.1.43",
"@types/express": "^4.16.1",
"@types/jest": "^24.0.18",
"@types/lodash.get": "^4.4.5",
"@types/lodash.get": "^4.4.6",
"@types/mmmagic": "^0.4.29",
"@types/node": "^10.10.1",
"@types/request-promise-native": "^1.0.15",
@ -36,7 +36,7 @@
"source-map-support": "^0.5.9",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"typescript": "~3.5.2"
"typescript": "~3.7.4"
},
"dependencies": {
"crypto-js": "^3.1.9-1",

View file

@ -32,7 +32,7 @@
"@types/dateformat": "^3.0.0",
"@types/file-saver": "^2.0.1",
"@types/jest": "^24.0.18",
"@types/lodash.get": "^4.4.5",
"@types/lodash.get": "^4.4.6",
"@types/lodash.set": "^4.3.6",
"@types/node": "12.12.22",
"@types/quill": "^2.0.1",

View file

@ -58,11 +58,11 @@
"change-case": "^3.1.0",
"copyfiles": "^2.1.1",
"inquirer": "^7.0.0",
"n8n-core": "^0.10.0",
"n8n-workflow": "^0.11.0",
"n8n-core": "^0.18.0",
"n8n-workflow": "^0.18.0",
"replace-in-file": "^4.1.0",
"request": "^2.88.0",
"tmp-promise": "^2.0.2",
"typescript": "~3.5.2"
"typescript": "~3.7.4"
}
}

View file

@ -93,7 +93,7 @@ export class GoogleSheet {
}
);
return response.data.values;
return response.data.values as string[][] | undefined;
}
@ -141,9 +141,9 @@ export class GoogleSheet {
async batchUpdate(updateData: ISheetUpdateData[], valueInputMode: ValueInputOption) {
const client = await this.getAuthenticationClient();
// @ts-ignore
const response = await Sheets.spreadsheets.values.batchUpdate(
{
// @ts-ignore
auth: client,
spreadsheetId: this.id,
valueInputOption: valueInputMode,
@ -163,6 +163,7 @@ export class GoogleSheet {
async setData(range: string, data: string[][], valueInputMode: ValueInputOption) {
const client = await this.getAuthenticationClient();
// @ts-ignore
const response = await Sheets.spreadsheets.values.update(
{
// @ts-ignore
@ -186,9 +187,9 @@ export class GoogleSheet {
async appendData(range: string, data: string[][], valueInputMode: ValueInputOption) {
const client = await this.getAuthenticationClient();
// @ts-ignore
const response = await Sheets.spreadsheets.values.append(
{
// @ts-ignore
auth: client,
spreadsheetId: this.id,
range,

View file

@ -186,7 +186,7 @@
"n8n-workflow": "~0.18.0",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"typescript": "~3.5.2"
"typescript": "~3.7.4"
},
"dependencies": {
"aws4": "^1.8.0",
@ -195,7 +195,7 @@
"cron": "^1.6.0",
"glob-promise": "^3.4.0",
"gm": "^1.23.1",
"googleapis": "^42.0.0",
"googleapis": "^46.0.0",
"imap-simple": "^4.3.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",

View file

@ -27,12 +27,12 @@
"devDependencies": {
"@types/express": "^4.16.1",
"@types/jest": "^24.0.18",
"@types/lodash.get": "^4.4.5",
"@types/lodash.get": "^4.4.6",
"@types/node": "^10.10.1",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"typescript": "~3.5.2"
"typescript": "~3.7.4"
},
"dependencies": {
"lodash.get": "^4.4.2",