@seamapi/http 1.30.0 → 1.30.1
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 +1 -1
- package/dist/connect.cjs.map +1 -1
- package/lib/seam/connect/auth.js +1 -1
- package/lib/seam/connect/auth.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/auth.ts +1 -1
- package/src/lib/version.ts +1 -1
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) {
|
|
287
|
+
if ("publishableKey" in options && options.publishableKey !== null) {
|
|
288
288
|
return getAuthHeadersForPublishableKey(options.publishableKey);
|
|
289
289
|
}
|
|
290
290
|
if (isSeamHttpOptionsWithApiKey(options)) {
|