@crowdin/app-project-module 0.17.2 → 0.17.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -169,7 +169,7 @@ function connect(folder) {
169
169
  }
170
170
  exports.connect = connect;
171
171
  function saveCrowdinCredentials(credentials) {
172
- return run('INSERT INTO crowdin_credentials(id, app_secret, domain, user_id, organization_id, base_url, access_token, refresh_token, expire, type) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)', [
172
+ return run('INSERT INTO crowdin_credentials(id, app_secret, domain, user_id, organization_id, base_url, access_token, refresh_token, expire, type) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', [
173
173
  credentials.id,
174
174
  credentials.appSecret,
175
175
  credentials.domain,
@@ -179,6 +179,7 @@ function saveCrowdinCredentials(credentials) {
179
179
  credentials.accessToken,
180
180
  credentials.refreshToken,
181
181
  credentials.expire,
182
+ credentials.type,
182
183
  ]);
183
184
  }
184
185
  exports.saveCrowdinCredentials = saveCrowdinCredentials;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crowdin/app-project-module",
3
- "version": "0.17.2",
3
+ "version": "0.17.3",
4
4
  "description": "Module that generates for you all common endpoints for serving standalone Crowdin App",
5
5
  "main": "out/index.js",
6
6
  "types": "out/index.d.ts",