1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-03-05 20:50:17 -08:00

⬆️ Update some more packages to latest version

This commit is contained in:
Jan Oberhauser 2019-12-30 13:38:55 -06:00
parent a3bc35d971
commit d726eef239
7 changed files with 16 additions and 15 deletions
packages

View file

@ -59,7 +59,7 @@
"@types/express": "^4.16.1", "@types/express": "^4.16.1",
"@types/jest": "^24.0.18", "@types/jest": "^24.0.18",
"@types/localtunnel": "^1.9.0", "@types/localtunnel": "^1.9.0",
"@types/lodash.get": "^4.4.2", "@types/lodash.get": "^4.4.6",
"@types/node": "^10.10.1", "@types/node": "^10.10.1",
"@types/open": "^6.1.0", "@types/open": "^6.1.0",
"@types/parseurl": "^1.3.1", "@types/parseurl": "^1.3.1",
@ -69,7 +69,7 @@
"run-script-os": "^1.0.7", "run-script-os": "^1.0.7",
"ts-jest": "^24.0.2", "ts-jest": "^24.0.2",
"tslint": "^5.17.0", "tslint": "^5.17.0",
"typescript": "~3.5.2" "typescript": "~3.7.4"
}, },
"dependencies": { "dependencies": {
"@oclif/command": "^1.5.18", "@oclif/command": "^1.5.18",

View file

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

View file

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

View file

@ -58,11 +58,11 @@
"change-case": "^3.1.0", "change-case": "^3.1.0",
"copyfiles": "^2.1.1", "copyfiles": "^2.1.1",
"inquirer": "^7.0.0", "inquirer": "^7.0.0",
"n8n-core": "^0.10.0", "n8n-core": "^0.18.0",
"n8n-workflow": "^0.11.0", "n8n-workflow": "^0.18.0",
"replace-in-file": "^4.1.0", "replace-in-file": "^4.1.0",
"request": "^2.88.0", "request": "^2.88.0",
"tmp-promise": "^2.0.2", "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) { async batchUpdate(updateData: ISheetUpdateData[], valueInputMode: ValueInputOption) {
const client = await this.getAuthenticationClient(); const client = await this.getAuthenticationClient();
// @ts-ignore
const response = await Sheets.spreadsheets.values.batchUpdate( const response = await Sheets.spreadsheets.values.batchUpdate(
{ {
// @ts-ignore
auth: client, auth: client,
spreadsheetId: this.id, spreadsheetId: this.id,
valueInputOption: valueInputMode, valueInputOption: valueInputMode,
@ -163,6 +163,7 @@ export class GoogleSheet {
async setData(range: string, data: string[][], valueInputMode: ValueInputOption) { async setData(range: string, data: string[][], valueInputMode: ValueInputOption) {
const client = await this.getAuthenticationClient(); const client = await this.getAuthenticationClient();
// @ts-ignore
const response = await Sheets.spreadsheets.values.update( const response = await Sheets.spreadsheets.values.update(
{ {
// @ts-ignore // @ts-ignore
@ -186,9 +187,9 @@ export class GoogleSheet {
async appendData(range: string, data: string[][], valueInputMode: ValueInputOption) { async appendData(range: string, data: string[][], valueInputMode: ValueInputOption) {
const client = await this.getAuthenticationClient(); const client = await this.getAuthenticationClient();
// @ts-ignore
const response = await Sheets.spreadsheets.values.append( const response = await Sheets.spreadsheets.values.append(
{ {
// @ts-ignore
auth: client, auth: client,
spreadsheetId: this.id, spreadsheetId: this.id,
range, range,

View file

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

View file

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