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