@naturalcycles/js-lib 14.113.1 → 14.115.0

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/types.d.ts CHANGED
@@ -163,6 +163,9 @@ export declare type UnixTimestamp = number;
163
163
  * Same as `number`, but with semantic meaning that it's an Integer.
164
164
  */
165
165
  export declare type Integer = number;
166
+ export declare type Base64String = string;
167
+ export declare type Base64UrlString = string;
168
+ export declare type JWTString = string;
166
169
  /**
167
170
  * Named type for JSON.parse / JSON.stringify second argument
168
171
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/js-lib",
3
- "version": "14.113.1",
3
+ "version": "14.115.0",
4
4
  "scripts": {
5
5
  "prepare": "husky install",
6
6
  "build-prod": "build-prod-esm-cjs",
package/src/types.ts CHANGED
@@ -223,6 +223,10 @@ export type UnixTimestamp = number
223
223
  */
224
224
  export type Integer = number
225
225
 
226
+ export type Base64String = string
227
+ export type Base64UrlString = string
228
+ export type JWTString = string
229
+
226
230
  /**
227
231
  * Named type for JSON.parse / JSON.stringify second argument
228
232
  */