@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/validation.cjs
CHANGED
|
@@ -10815,7 +10815,7 @@ const PersonalAccessTokenSchema = string$1().regex(/^sm_pat_.*$/);
|
|
|
10815
10815
|
* Schema for validating both application and personal access tokens.
|
|
10816
10816
|
* Accepts tokens starting with either 'sm_pat_' or 'sm_aat_' prefix.
|
|
10817
10817
|
*/
|
|
10818
|
-
const AccessTokenSchema = string$1().regex(/^
|
|
10818
|
+
const AccessTokenSchema = string$1().regex(/^sm_pat_.*|sm_aat_.*$/);
|
|
10819
10819
|
|
|
10820
10820
|
//#endregion
|
|
10821
10821
|
//#region src/json.ts
|