@seamapi/nextlove-sdk-generator 1.10.4 → 1.10.5

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.
@@ -10,7 +10,7 @@ PUBLISHABLE_KEY_TOKEN_PREFIX = "seam_pk"
10
10
 
11
11
 
12
12
  def is_access_token(token: str) -> bool:
13
- ACCESS_TOKEN_PREFIX)
13
+ return token.startswith(ACCESS_TOKEN_PREFIX)
14
14
 
15
15
 
16
16
  def is_jwt(token: str) -> bool:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/nextlove-sdk-generator",
3
- "version": "1.10.4",
3
+ "version": "1.10.5",
4
4
  "description": "Utilities for building NextLove SDK Generators",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -10,7 +10,7 @@ PUBLISHABLE_KEY_TOKEN_PREFIX = "seam_pk"
10
10
 
11
11
 
12
12
  def is_access_token(token: str) -> bool:
13
- ACCESS_TOKEN_PREFIX)
13
+ return token.startswith(ACCESS_TOKEN_PREFIX)
14
14
 
15
15
 
16
16
  def is_jwt(token: str) -> bool: