@settlemint/sdk-utils 2.4.0-pr7dabb22d → 2.4.0-pr8612ea0b

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.
@@ -11276,17 +11276,17 @@ function validate(schema, value) {
11276
11276
  * Schema for validating application access tokens.
11277
11277
  * Application access tokens start with 'sm_aat_' prefix.
11278
11278
  */
11279
- const ApplicationAccessTokenSchema = string$1().regex(/^sm_aat_.+$/);
11279
+ const ApplicationAccessTokenSchema = string$1().regex(/^sm_aat_.*$/);
11280
11280
  /**
11281
11281
  * Schema for validating personal access tokens.
11282
11282
  * Personal access tokens start with 'sm_pat_' prefix.
11283
11283
  */
11284
- const PersonalAccessTokenSchema = string$1().regex(/^sm_pat_.+$/);
11284
+ const PersonalAccessTokenSchema = string$1().regex(/^sm_pat_.*$/);
11285
11285
  /**
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(/^(sm_pat_.+|sm_aat_.+)$/);
11289
+ const AccessTokenSchema = string$1().regex(/^sm_pat_.*|sm_aat_.*$/);
11290
11290
 
11291
11291
  //#endregion
11292
11292
  //#region src/json.ts