@stackone/utils 0.16.2 → 0.17.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/edge/chunk-CBSTXkIV.mjs +1 -0
- package/dist/edge/index.d.mts +1 -0
- package/dist/edge/index.mjs +8 -8
- package/dist/node/chunk-CBSTXkIV.mjs +1 -0
- package/dist/node/index.cjs +8 -8
- package/dist/node/index.d.cts +2 -1
- package/dist/node/index.d.mts +1 -0
- package/dist/node/index.mjs +8 -8
- package/package.json +1 -1
package/dist/node/index.d.cts
CHANGED
|
@@ -2,12 +2,13 @@ import { Saml20 } from "saml";
|
|
|
2
2
|
import { ZodType, z } from "zod/v4";
|
|
3
3
|
import { randomUUID } from "crypto";
|
|
4
4
|
|
|
5
|
+
//#region rolldown:runtime
|
|
6
|
+
//#endregion
|
|
5
7
|
//#region src/shared/base64.d.ts
|
|
6
8
|
declare function encodeToBase64(data: string): string;
|
|
7
9
|
declare function decodeFromBase64(encodedData: string): string;
|
|
8
10
|
//#endregion
|
|
9
11
|
//#region src/shared/countries/types.d.ts
|
|
10
|
-
|
|
11
12
|
type ISO31662SubDivisionCodeNamePairs = {
|
|
12
13
|
[subDivisionCode: string]: string;
|
|
13
14
|
};
|
package/dist/node/index.d.mts
CHANGED