@seamapi/http 1.30.1 → 1.30.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/dist/connect.cjs CHANGED
@@ -284,7 +284,7 @@ var isPersonalAccessToken = (token) => isAccessToken(token);
284
284
 
285
285
  // src/lib/seam/connect/auth.ts
286
286
  var getAuthHeaders = (options) => {
287
- if ("publishableKey" in options && options.publishableKey !== null) {
287
+ if ("publishableKey" in options && options.publishableKey != null) {
288
288
  return getAuthHeadersForPublishableKey(options.publishableKey);
289
289
  }
290
290
  if (isSeamHttpOptionsWithApiKey(options)) {