@zapier/zapier-sdk 0.41.1 → 0.41.2

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @zapier/zapier-sdk
2
2
 
3
+ ## 0.41.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 3cf1a98: Fix connection resolution for no-auth apps
8
+
3
9
  ## 0.41.1
4
10
 
5
11
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -1970,7 +1970,7 @@ var connectionIdResolver = {
1970
1970
  try {
1971
1971
  const app = await sdk.getApp({ app: params.app });
1972
1972
  if (!app.data.auth_type) {
1973
- return { resolvedValue: null };
1973
+ return { resolvedValue: void 0 };
1974
1974
  }
1975
1975
  } catch {
1976
1976
  }
package/dist/index.mjs CHANGED
@@ -1968,7 +1968,7 @@ var connectionIdResolver = {
1968
1968
  try {
1969
1969
  const app = await sdk.getApp({ app: params.app });
1970
1970
  if (!app.data.auth_type) {
1971
- return { resolvedValue: null };
1971
+ return { resolvedValue: void 0 };
1972
1972
  }
1973
1973
  } catch {
1974
1974
  }
@@ -30,7 +30,7 @@ export const connectionIdResolver = {
30
30
  try {
31
31
  const app = await sdk.getApp({ app: params.app });
32
32
  if (!app.data.auth_type) {
33
- return { resolvedValue: null };
33
+ return { resolvedValue: undefined };
34
34
  }
35
35
  }
36
36
  catch {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zapier/zapier-sdk",
3
- "version": "0.41.1",
3
+ "version": "0.41.2",
4
4
  "description": "Complete Zapier SDK - combines all Zapier SDK packages",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",