@settlemint/sdk-utils 2.4.0-pr630f4542 → 2.4.0-pr6c110aa5
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/environment.cjs +1 -1
- package/dist/environment.cjs.map +1 -1
- package/dist/environment.js +1 -1
- package/dist/environment.js.map +1 -1
- package/dist/validation.cjs +1 -1
- package/dist/validation.cjs.map +1 -1
- package/dist/validation.js +1 -1
- package/dist/validation.js.map +1 -1
- package/package.json +1 -1
package/dist/environment.cjs
CHANGED
|
@@ -11286,7 +11286,7 @@ const PersonalAccessTokenSchema = string$1().regex(/^sm_pat_.*$/);
|
|
|
11286
11286
|
* Schema for validating both application and personal access tokens.
|
|
11287
11287
|
* Accepts tokens starting with either 'sm_pat_' or 'sm_aat_' prefix.
|
|
11288
11288
|
*/
|
|
11289
|
-
const AccessTokenSchema = string$1().regex(/^
|
|
11289
|
+
const AccessTokenSchema = string$1().regex(/^sm_pat_.*|sm_aat_.*$/);
|
|
11290
11290
|
|
|
11291
11291
|
//#endregion
|
|
11292
11292
|
//#region src/json.ts
|