@lowdefy/connection-google-sheets 4.0.0-rc.11 → 4.0.0-rc.13

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.
@@ -38,7 +38,7 @@ async function GoogleSheetGetOne({ request, connection }) {
38
38
  filter
39
39
  });
40
40
  }
41
- return rows[0] || null;
41
+ return rows[0] ?? null;
42
42
  }
43
43
  GoogleSheetGetOne.schema = schema;
44
44
  GoogleSheetGetOne.meta = {
@@ -18,8 +18,8 @@ async function authenticate({ doc, apiKey, client_email, private_key }) {
18
18
  doc.useApiKey(apiKey);
19
19
  } else {
20
20
  await doc.useServiceAccountAuth({
21
- client_email: client_email,
22
- private_key: private_key
21
+ client_email,
22
+ private_key
23
23
  });
24
24
  }
25
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lowdefy/connection-google-sheets",
3
- "version": "4.0.0-rc.11",
3
+ "version": "4.0.0-rc.13",
4
4
  "license": "Apache-2.0",
5
5
  "description": "",
6
6
  "homepage": "https://lowdefy.com",
@@ -41,14 +41,14 @@
41
41
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
42
42
  },
43
43
  "dependencies": {
44
- "@lowdefy/helpers": "4.0.0-rc.11",
44
+ "@lowdefy/helpers": "4.0.0-rc.13",
45
45
  "google-spreadsheet": "3.3.0",
46
46
  "mingo": "6.4.6",
47
47
  "moment": "2.29.4"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@jest/globals": "28.1.3",
51
- "@lowdefy/ajv": "4.0.0-rc.11",
51
+ "@lowdefy/ajv": "4.0.0-rc.13",
52
52
  "@swc/cli": "0.1.62",
53
53
  "@swc/core": "1.3.92",
54
54
  "@swc/jest": "0.2.29",
@@ -57,5 +57,5 @@
57
57
  "publishConfig": {
58
58
  "access": "public"
59
59
  },
60
- "gitHead": "dbc49d3688a6d2f44de25cc3f4bc071627f7ebfa"
60
+ "gitHead": "e0e9a9b4e4e15c899de64d6736fa6e83cf56f8e4"
61
61
  }