@dynamic-labs-sdk/assert-package-version 0.1.2 → 0.2.3

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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"assertPackageVersion.d.ts","sourceRoot":"","sources":["../../src/assertPackageVersion/assertPackageVersion.ts"],"names":[],"mappings":"AAYA;;;;;;GAMG;AACH,eAAO,MAAM,oBAAoB,gBAClB,MAAM,WACV,MAAM,KACd,IAuCF,CAAC;AAIF,eAAO,MAAM,wBAAwB,QAAO,IAO3C,CAAC;AAEF,eAAO,MAAM,sBAAsB,QAAO,MAAM,CAAC,OAAO,GAAG,IACtC,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/assertPackageVersion/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"VersionMismatchError.d.ts","sourceRoot":"","sources":["../../src/errors/VersionMismatchError.ts"],"names":[],"mappings":"AAAA,qBAAa,oBAAqB,SAAQ,KAAK;gBACjC,aAAa,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;CA0B3E"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/exports/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC"}
@@ -0,0 +1,61 @@
1
+
2
+ //#region src/errors/VersionMismatchError.ts
3
+ var VersionMismatchError = class extends Error {
4
+ constructor(targetVersion, packageVersions$1) {
5
+ const errorMessage = `
6
+ 🚨 Version Mismatch Error
7
+
8
+ One or more \`@dynamic-labs-sdk\` packages are installed with mismatched versions. All \`@dynamic-labs-sdk\` packages must be on the same version to work correctly.
9
+
10
+ Affected Packages:
11
+ ${Object.entries(packageVersions$1).filter(([, v]) => v !== targetVersion).map(([pkgName, installedVersion]) => `- \`${pkgName}\` (installed: **${installedVersion}**, required: **${targetVersion}**)`).join("\n")}
12
+
13
+ 💡 To fix this issue, update all @dynamic-labs-sdk/* packages to version \`${targetVersion}\` in your package.json
14
+ `;
15
+ super(errorMessage.trim());
16
+ this.name = "VersionMismatchError";
17
+ }
18
+ };
19
+
20
+ //#endregion
21
+ //#region src/assertPackageVersion/assertPackageVersion.ts
22
+ /**
23
+ * A mapping of package names to their versions.
24
+ */
25
+ let packageVersions = {};
26
+ /**
27
+ * Timeout ID for batching version checks.
28
+ */
29
+ let versionCheckTimeout = null;
30
+ /**
31
+ * Asserts that all `@dynamic-labs-sdk` packages are on the same version.
32
+ * Throws an error with instructions if versions mismatch.
33
+ *
34
+ * @param {string} packageName - The name of the package to assert.
35
+ * @param {string} version - The version of the package.
36
+ */
37
+ const assertPackageVersion = (packageName, version) => {
38
+ packageVersions[packageName] = version;
39
+ if (versionCheckTimeout) {
40
+ clearTimeout(versionCheckTimeout);
41
+ versionCheckTimeout = null;
42
+ }
43
+ /**
44
+ * Set a timeout to batch the version check.
45
+ * This ensures that the check is executed after all package versions have been imported
46
+ * and registered.
47
+ */
48
+ versionCheckTimeout = setTimeout(() => {
49
+ const versions = Object.values(packageVersions);
50
+ const [firstVersion] = versions;
51
+ if (!versions.every((v) => v === firstVersion)) {
52
+ const error = new VersionMismatchError(packageVersions["@dynamic-labs-sdk/client"] || firstVersion, packageVersions);
53
+ console.error(error);
54
+ }
55
+ versionCheckTimeout = null;
56
+ }, 100);
57
+ };
58
+
59
+ //#endregion
60
+ exports.assertPackageVersion = assertPackageVersion;
61
+ //# sourceMappingURL=index.cjs.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.cjs.js","names":["packageVersions","packageVersions: Record<string, string>","versionCheckTimeout: NodeJS.Timeout | null"],"sources":["../src/errors/VersionMismatchError.ts","../src/assertPackageVersion/assertPackageVersion.ts"],"sourcesContent":["export class VersionMismatchError extends Error {\n constructor(targetVersion: string, packageVersions: Record<string, string>) {\n // Identify packages with mismatched versions\n const affectedPackages = Object.entries(packageVersions)\n .filter(([, v]) => v !== targetVersion)\n .map(\n ([pkgName, installedVersion]) =>\n `- \\`${pkgName}\\` (installed: **${installedVersion}**, required: **${targetVersion}**)`\n )\n .join('\\n');\n\n // Error message template\n const errorMessage = `\n🚨 Version Mismatch Error\n\nOne or more \\`@dynamic-labs-sdk\\` packages are installed with mismatched versions. All \\`@dynamic-labs-sdk\\` packages must be on the same version to work correctly.\n\nAffected Packages:\n${affectedPackages}\n\n💡 To fix this issue, update all @dynamic-labs-sdk/* packages to version \\`${targetVersion}\\` in your package.json\n`;\n\n super(errorMessage.trim());\n\n this.name = 'VersionMismatchError';\n }\n}\n","import { VersionMismatchError } from '../errors/VersionMismatchError.js';\n\n/**\n * A mapping of package names to their versions.\n */\nlet packageVersions: Record<string, string> = {};\n\n/**\n * Timeout ID for batching version checks.\n */\nlet versionCheckTimeout: NodeJS.Timeout | null = null;\n\n/**\n * Asserts that all `@dynamic-labs-sdk` packages are on the same version.\n * Throws an error with instructions if versions mismatch.\n *\n * @param {string} packageName - The name of the package to assert.\n * @param {string} version - The version of the package.\n */\nexport const assertPackageVersion = (\n packageName: string,\n version: string\n): void => {\n // Update the package version mapping\n packageVersions[packageName] = version;\n\n // Clear any existing timeout\n if (versionCheckTimeout) {\n clearTimeout(versionCheckTimeout);\n versionCheckTimeout = null;\n }\n\n /**\n * Timeout is set to 100ms to ensure the following:\n * - All package versions have been imported and registered.\n */\n const timeout = 100;\n\n /**\n * Set a timeout to batch the version check.\n * This ensures that the check is executed after all package versions have been imported\n * and registered.\n */\n versionCheckTimeout = setTimeout(() => {\n const versions = Object.values(packageVersions);\n const [firstVersion] = versions;\n const allSameVersion = versions.every((v) => v === firstVersion);\n\n if (!allSameVersion) {\n // Determine the required (target) version\n const targetVersion =\n packageVersions['@dynamic-labs-sdk/client'] || firstVersion;\n\n const error = new VersionMismatchError(targetVersion, packageVersions);\n\n // eslint-disable-next-line no-console\n console.error(error);\n }\n\n versionCheckTimeout = null;\n }, timeout);\n};\n\n// Helper functions meant only for testing\n\nexport const clearPackageVersionState = (): void => {\n if (versionCheckTimeout) {\n clearTimeout(versionCheckTimeout);\n }\n\n packageVersions = {};\n versionCheckTimeout = null;\n};\n\nexport const getVersionCheckTimeout = (): NodeJS.Timeout | null =>\n versionCheckTimeout;\n"],"mappings":";;AAAA,IAAa,uBAAb,cAA0C,MAAM;CAC9C,YAAY,eAAuB,mBAAyC;EAW1E,MAAM,eAAe;;;;;;EATI,OAAO,QAAQA,kBAAgB,CACrD,QAAQ,GAAG,OAAO,MAAM,cAAc,CACtC,KACE,CAAC,SAAS,sBACT,OAAO,QAAQ,mBAAmB,iBAAiB,kBAAkB,cAAc,KACtF,CACA,KAAK,KAAK,CASE;;6EAE0D,cAAc;;AAGvF,QAAM,aAAa,MAAM,CAAC;AAE1B,OAAK,OAAO;;;;;;;;;ACpBhB,IAAIC,kBAA0C,EAAE;;;;AAKhD,IAAIC,sBAA6C;;;;;;;;AASjD,MAAa,wBACX,aACA,YACS;AAET,iBAAgB,eAAe;AAG/B,KAAI,qBAAqB;AACvB,eAAa,oBAAoB;AACjC,wBAAsB;;;;;;;AAcxB,uBAAsB,iBAAiB;EACrC,MAAM,WAAW,OAAO,OAAO,gBAAgB;EAC/C,MAAM,CAAC,gBAAgB;AAGvB,MAAI,CAFmB,SAAS,OAAO,MAAM,MAAM,aAAa,EAE3C;GAKnB,MAAM,QAAQ,IAAI,qBAFhB,gBAAgB,+BAA+B,cAEK,gBAAgB;AAGtE,WAAQ,MAAM,MAAM;;AAGtB,wBAAsB;IAvBR,IAwBL"}
@@ -0,0 +1,60 @@
1
+ //#region src/errors/VersionMismatchError.ts
2
+ var VersionMismatchError = class extends Error {
3
+ constructor(targetVersion, packageVersions$1) {
4
+ const errorMessage = `
5
+ 🚨 Version Mismatch Error
6
+
7
+ One or more \`@dynamic-labs-sdk\` packages are installed with mismatched versions. All \`@dynamic-labs-sdk\` packages must be on the same version to work correctly.
8
+
9
+ Affected Packages:
10
+ ${Object.entries(packageVersions$1).filter(([, v]) => v !== targetVersion).map(([pkgName, installedVersion]) => `- \`${pkgName}\` (installed: **${installedVersion}**, required: **${targetVersion}**)`).join("\n")}
11
+
12
+ 💡 To fix this issue, update all @dynamic-labs-sdk/* packages to version \`${targetVersion}\` in your package.json
13
+ `;
14
+ super(errorMessage.trim());
15
+ this.name = "VersionMismatchError";
16
+ }
17
+ };
18
+
19
+ //#endregion
20
+ //#region src/assertPackageVersion/assertPackageVersion.ts
21
+ /**
22
+ * A mapping of package names to their versions.
23
+ */
24
+ let packageVersions = {};
25
+ /**
26
+ * Timeout ID for batching version checks.
27
+ */
28
+ let versionCheckTimeout = null;
29
+ /**
30
+ * Asserts that all `@dynamic-labs-sdk` packages are on the same version.
31
+ * Throws an error with instructions if versions mismatch.
32
+ *
33
+ * @param {string} packageName - The name of the package to assert.
34
+ * @param {string} version - The version of the package.
35
+ */
36
+ const assertPackageVersion = (packageName, version) => {
37
+ packageVersions[packageName] = version;
38
+ if (versionCheckTimeout) {
39
+ clearTimeout(versionCheckTimeout);
40
+ versionCheckTimeout = null;
41
+ }
42
+ /**
43
+ * Set a timeout to batch the version check.
44
+ * This ensures that the check is executed after all package versions have been imported
45
+ * and registered.
46
+ */
47
+ versionCheckTimeout = setTimeout(() => {
48
+ const versions = Object.values(packageVersions);
49
+ const [firstVersion] = versions;
50
+ if (!versions.every((v) => v === firstVersion)) {
51
+ const error = new VersionMismatchError(packageVersions["@dynamic-labs-sdk/client"] || firstVersion, packageVersions);
52
+ console.error(error);
53
+ }
54
+ versionCheckTimeout = null;
55
+ }, 100);
56
+ };
57
+
58
+ //#endregion
59
+ export { assertPackageVersion };
60
+ //# sourceMappingURL=index.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.esm.js","names":["packageVersions","packageVersions: Record<string, string>","versionCheckTimeout: NodeJS.Timeout | null"],"sources":["../src/errors/VersionMismatchError.ts","../src/assertPackageVersion/assertPackageVersion.ts"],"sourcesContent":["export class VersionMismatchError extends Error {\n constructor(targetVersion: string, packageVersions: Record<string, string>) {\n // Identify packages with mismatched versions\n const affectedPackages = Object.entries(packageVersions)\n .filter(([, v]) => v !== targetVersion)\n .map(\n ([pkgName, installedVersion]) =>\n `- \\`${pkgName}\\` (installed: **${installedVersion}**, required: **${targetVersion}**)`\n )\n .join('\\n');\n\n // Error message template\n const errorMessage = `\n🚨 Version Mismatch Error\n\nOne or more \\`@dynamic-labs-sdk\\` packages are installed with mismatched versions. All \\`@dynamic-labs-sdk\\` packages must be on the same version to work correctly.\n\nAffected Packages:\n${affectedPackages}\n\n💡 To fix this issue, update all @dynamic-labs-sdk/* packages to version \\`${targetVersion}\\` in your package.json\n`;\n\n super(errorMessage.trim());\n\n this.name = 'VersionMismatchError';\n }\n}\n","import { VersionMismatchError } from '../errors/VersionMismatchError.js';\n\n/**\n * A mapping of package names to their versions.\n */\nlet packageVersions: Record<string, string> = {};\n\n/**\n * Timeout ID for batching version checks.\n */\nlet versionCheckTimeout: NodeJS.Timeout | null = null;\n\n/**\n * Asserts that all `@dynamic-labs-sdk` packages are on the same version.\n * Throws an error with instructions if versions mismatch.\n *\n * @param {string} packageName - The name of the package to assert.\n * @param {string} version - The version of the package.\n */\nexport const assertPackageVersion = (\n packageName: string,\n version: string\n): void => {\n // Update the package version mapping\n packageVersions[packageName] = version;\n\n // Clear any existing timeout\n if (versionCheckTimeout) {\n clearTimeout(versionCheckTimeout);\n versionCheckTimeout = null;\n }\n\n /**\n * Timeout is set to 100ms to ensure the following:\n * - All package versions have been imported and registered.\n */\n const timeout = 100;\n\n /**\n * Set a timeout to batch the version check.\n * This ensures that the check is executed after all package versions have been imported\n * and registered.\n */\n versionCheckTimeout = setTimeout(() => {\n const versions = Object.values(packageVersions);\n const [firstVersion] = versions;\n const allSameVersion = versions.every((v) => v === firstVersion);\n\n if (!allSameVersion) {\n // Determine the required (target) version\n const targetVersion =\n packageVersions['@dynamic-labs-sdk/client'] || firstVersion;\n\n const error = new VersionMismatchError(targetVersion, packageVersions);\n\n // eslint-disable-next-line no-console\n console.error(error);\n }\n\n versionCheckTimeout = null;\n }, timeout);\n};\n\n// Helper functions meant only for testing\n\nexport const clearPackageVersionState = (): void => {\n if (versionCheckTimeout) {\n clearTimeout(versionCheckTimeout);\n }\n\n packageVersions = {};\n versionCheckTimeout = null;\n};\n\nexport const getVersionCheckTimeout = (): NodeJS.Timeout | null =>\n versionCheckTimeout;\n"],"mappings":";AAAA,IAAa,uBAAb,cAA0C,MAAM;CAC9C,YAAY,eAAuB,mBAAyC;EAW1E,MAAM,eAAe;;;;;;EATI,OAAO,QAAQA,kBAAgB,CACrD,QAAQ,GAAG,OAAO,MAAM,cAAc,CACtC,KACE,CAAC,SAAS,sBACT,OAAO,QAAQ,mBAAmB,iBAAiB,kBAAkB,cAAc,KACtF,CACA,KAAK,KAAK,CASE;;6EAE0D,cAAc;;AAGvF,QAAM,aAAa,MAAM,CAAC;AAE1B,OAAK,OAAO;;;;;;;;;ACpBhB,IAAIC,kBAA0C,EAAE;;;;AAKhD,IAAIC,sBAA6C;;;;;;;;AASjD,MAAa,wBACX,aACA,YACS;AAET,iBAAgB,eAAe;AAG/B,KAAI,qBAAqB;AACvB,eAAa,oBAAoB;AACjC,wBAAsB;;;;;;;AAcxB,uBAAsB,iBAAiB;EACrC,MAAM,WAAW,OAAO,OAAO,gBAAgB;EAC/C,MAAM,CAAC,gBAAgB;AAGvB,MAAI,CAFmB,SAAS,OAAO,MAAM,MAAM,aAAa,EAE3C;GAKnB,MAAM,QAAQ,IAAI,qBAFhB,gBAAgB,+BAA+B,cAEK,gBAAgB;AAGtE,WAAQ,MAAM,MAAM;;AAGtB,wBAAsB;IAvBR,IAwBL"}
@@ -0,0 +1 @@
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.d.ts","../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/modules/index.d.ts","../src/errors/VersionMismatchError.ts","../src/assertPackageVersion/assertPackageVersion.ts","../src/assertPackageVersion/index.ts","../src/exports/index.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@18.16.9/node_modules/@types/node/index.d.ts"],"fileIdsList":[[66,112],[69,112],[70,75,103,112],[71,82,83,90,100,111,112],[71,72,82,90,112],[73,112],[74,75,83,91,112],[75,100,108,112],[76,78,82,90,112],[77,112],[78,79,112],[82,112],[80,82,112],[82,83,84,100,111,112],[82,83,84,97,100,103,112],[112,116],[112],[78,82,85,90,100,111,112],[82,83,85,86,90,100,108,111,112],[85,87,100,108,111,112],[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118],[82,88,112],[89,111,112],[78,82,90,100,112],[91,112],[92,112],[69,93,112],[94,110,112,116],[95,112],[96,112],[82,97,98,112],[97,99,112,114],[70,82,100,101,102,103,112],[70,100,102,112],[100,101,112],[103,112],[104,112],[82,106,107,112],[106,107,112],[75,90,100,108,112],[109,112],[90,110,112],[70,85,96,111,112],[75,112],[100,112,113],[112,114],[112,115],[70,75,82,84,93,100,111,112,114,116],[100,112,117],[60,112],[61,62,112],[61,63,112],[61,112],[61,64,112]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},{"version":"597488b4dab50359f500c7623c66d2f8d2caa32d483627d471ef498a5fb55250","signature":"b68d4339f59d089f64c802c64b9765804e3a80b744fb145bb5a68b32cce3ae73"},{"version":"05eda11e18b1b230b2ae134cbdddd3c2a5f00987459933f3500bf5bdb8bf7f3c","signature":"71a591c39315692bb28d63816710b2647695f75fc4492a40cd7521177f6e8560"},"2606dc7458baf9e1b55d26c98c5b3c4b47af0912956faf16436677fd3abf13e0","168062bd5b08710b5f4dc8599162fa9dc3fe4581f057bc956ea104a22f0ef6a5",{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7d2e3fea24c712c99c03ad8f556abedbfe105f87f1be10b95dbd409d24bc05a3","impliedFormat":1},{"version":"211e3f15fbced4ab4be19f49ffa990b9ff20d749d33b65ff753be691e7616239","affectsGlobalScope":true,"impliedFormat":1},{"version":"3719525a8f6ab731e3dfd585d9f87df55ec7d50d461df84f74eb4d68bb165244","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","impliedFormat":1},{"version":"4eaff3d8e10676fd7913d8c108890e71c688e1e7d52f6d1d55c39514f493dc47","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"00dee7cdca8b8420c47ea4a31a34b8e8294013ebc4f463fd941e867e7bf05029","affectsGlobalScope":true,"impliedFormat":1},{"version":"3256f3cccd578f9e7fe3a28096c505634bebcee8afb738ffa99368e536ca3a0b","impliedFormat":1},{"version":"1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","impliedFormat":1},{"version":"7f138842074d0a40681775af008c8452093b68c383c94de31759e853c6d06b5c","impliedFormat":1},{"version":"a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","impliedFormat":1},{"version":"8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true,"impliedFormat":1},{"version":"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","impliedFormat":1},{"version":"7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"4f3fdeba4e28e21aa719c081b8dc8f91d47e12e773389b9d35679c08151c9d37","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"f69ff39996a61a0dd10f4bce73272b52e8024a4d58b13ab32bf4712909d0a2b7","impliedFormat":1},{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true,"impliedFormat":1},{"version":"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","impliedFormat":1},{"version":"1422cd9e705adcc09088fda85a900c2b70e3ad36ea85846f68bd1a884cdf4e2b","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"a73ae8c0e62103bb9e21bb6538700881bf135b9a8b125b857ec68edfa0da4ed3","affectsGlobalScope":true,"impliedFormat":1},{"version":"e1c1b2fbe236bf7ee3e342eeae7e20efb8988a0ac7da1cbbfa2c1f66b76c3423","affectsGlobalScope":true,"impliedFormat":1},{"version":"868831cab82b65dfe1d68180e898af1f2101e89ba9b754d1db6fb8cc2fac1921","impliedFormat":1},{"version":"0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"52120bb7e4583612225bdf08e7c12559548170f11e660d33a33623bae9bbdbba","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6dd3dba8e665ac43d279e0fdf5219edda0eed69b5e9a5061f46cd6a65c4f7a1","impliedFormat":1}],"root":[[62,65]],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"importHelpers":true,"module":99,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./tsconfig.lib.tsbuildinfo"},"referencedMap":[[66,1],[67,1],[69,2],[70,3],[71,4],[72,5],[73,6],[74,7],[75,8],[76,9],[77,10],[78,11],[79,11],[81,12],[80,13],[82,12],[83,14],[84,15],[68,16],[118,17],[85,18],[86,19],[87,20],[119,21],[88,22],[89,23],[90,24],[91,25],[92,26],[93,27],[94,28],[95,29],[96,30],[97,31],[98,31],[99,32],[100,33],[102,34],[101,35],[103,36],[104,37],[105,17],[106,38],[107,39],[108,40],[109,41],[110,42],[111,43],[112,44],[113,45],[114,46],[115,47],[116,48],[117,49],[61,50],[60,17],[58,17],[59,17],[10,17],[12,17],[11,17],[2,17],[13,17],[14,17],[15,17],[16,17],[17,17],[18,17],[19,17],[20,17],[3,17],[21,17],[22,17],[4,17],[23,17],[27,17],[24,17],[25,17],[26,17],[28,17],[29,17],[30,17],[5,17],[31,17],[32,17],[33,17],[34,17],[6,17],[38,17],[35,17],[36,17],[37,17],[39,17],[7,17],[40,17],[45,17],[46,17],[41,17],[42,17],[43,17],[44,17],[8,17],[50,17],[47,17],[48,17],[49,17],[51,17],[9,17],[52,17],[53,17],[54,17],[56,17],[55,17],[1,17],[57,17],[63,51],[64,52],[62,53],[65,54]],"latestChangedDtsFile":"./exports/index.d.ts","version":"5.7.3"}
package/package.json CHANGED
@@ -1,19 +1,30 @@
1
1
  {
2
2
  "name": "@dynamic-labs-sdk/assert-package-version",
3
- "version": "0.1.2",
3
+ "version": "0.2.3",
4
4
  "type": "module",
5
- "main": "./index.cjs.js",
6
- "module": "./index.esm.js",
7
- "types": "./index.esm.d.ts",
5
+ "main": "./dist/index.cjs.js",
6
+ "module": "./dist/index.esm.js",
7
+ "types": "./dist/exports/index.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
8
11
  "exports": {
9
12
  "./package.json": "./package.json",
10
13
  ".": {
11
- "types": "./index.esm.d.ts",
12
- "import": "./index.esm.js",
13
- "default": "./index.cjs.js"
14
+ "types": "./dist/exports/index.d.ts",
15
+ "import": "./dist/index.esm.js",
16
+ "default": "./dist/index.cjs.js"
14
17
  }
15
18
  },
16
- "publishConfig": {
17
- "directory": "../../dist/packages/assert-package-version"
19
+ "scripts": {
20
+ "build": "rm -rf dist && tsdown && pnpm exec tsc --emitDeclarationOnly -p ./tsconfig.lib.json",
21
+ "lint": "eslint .",
22
+ "test": "vitest run",
23
+ "test:watch": "vitest",
24
+ "test-with-coverage": "vitest run --coverage",
25
+ "check-versions": "pnpm --filter @tools/sync-package-versions run sync --check-only --package-filter assert-package-version"
26
+ },
27
+ "devDependencies": {
28
+ "vitest": "1.6.1"
18
29
  }
19
- }
30
+ }
package/CHANGELOG.md DELETED
@@ -1,606 +0,0 @@
1
- ## 0.1.2 (2025-12-19)
2
-
3
- ### 🩹 Fixes
4
-
5
- - add status to api error ([#715](https://github.com/dynamic-labs/dynamic-sdk/pull/715))
6
-
7
- ## 0.1.1 (2025-12-19)
8
-
9
- ### 🚀 Features
10
-
11
- - add getTransactionHistory method ([#702](https://github.com/dynamic-labs/dynamic-sdk/pull/702))
12
-
13
- ## 0.1.0 (2025-12-18)
14
-
15
- ### 🚀 Features
16
-
17
- - add getTransactionHistory method ([#702](https://github.com/dynamic-labs/dynamic-sdk/pull/702))
18
-
19
- ## 0.1.0-alpha.37 (2025-12-17)
20
-
21
- ### 🩹 Fixes
22
-
23
- - ensure api errors are correctly parsed ([#706](https://github.com/dynamic-labs/dynamic-sdk/pull/706))
24
-
25
- ## 0.1.0-alpha.36 (2025-12-17)
26
-
27
- This was a version bump only, there were no code changes.
28
-
29
- ## 0.1.0-alpha.35 (2025-12-12)
30
-
31
- ### 🩹 Fixes
32
-
33
- - ensure all extensions register the chain network provider builder ([#696](https://github.com/dynamic-labs/dynamic-sdk/pull/696))
34
- - properly handle signAlTransactions when using Solana Wallet Standard wallets ([#697](https://github.com/dynamic-labs/dynamic-sdk/pull/697))
35
-
36
- ## 0.1.0-alpha.34 (2025-12-08)
37
-
38
- ### 🩹 Fixes
39
-
40
- - emit walletAccountsChanged when loading the SDK ([#691](https://github.com/dynamic-labs/dynamic-sdk/pull/691))
41
-
42
- ## 0.1.0-alpha.33 (2025-12-03)
43
-
44
- ### 🚀 Features
45
-
46
- - add deleteUser ([#673](https://github.com/dynamic-labs/dynamic-sdk/pull/673))
47
-
48
- ### 🩹 Fixes
49
-
50
- - return verified response in the verifyOTP function ([#670](https://github.com/dynamic-labs/dynamic-sdk/pull/670))
51
-
52
- ## 0.1.0-alpha.32 (2025-11-27)
53
-
54
- This was a version bump only, there were no code changes.
55
-
56
- ## 0.1.0-alpha.31 (2025-11-25)
57
-
58
- This was a version bump only, there were no code changes.
59
-
60
- ## 0.1.0-alpha.30 (2025-11-19)
61
-
62
- ### 🚀 Features
63
-
64
- - allow social account unlinking ([#618](https://github.com/dynamic-labs/dynamic-sdk/pull/618))
65
- - add support for Sui external wallets ([#643](https://github.com/dynamic-labs/dynamic-sdk/pull/643))
66
- - add support for Sui embedded wallets ([#652](https://github.com/dynamic-labs/dynamic-sdk/pull/652))
67
-
68
- ## 0.1.0-alpha.29 (2025-11-12)
69
-
70
- ### 🚀 Features
71
-
72
- - add support for WaaS delegation ([#634](https://github.com/dynamic-labs/dynamic-sdk/pull/634))
73
-
74
- ## 0.1.0-alpha.28 (2025-11-03)
75
-
76
- ### 🩹 Fixes
77
-
78
- - don't override mfa token on non-mfa related state updates ([#630](https://github.com/dynamic-labs/dynamic-sdk/pull/630))
79
-
80
- ## 0.1.0-alpha.27 (2025-11-03)
81
-
82
- This was a version bump only, there were no code changes.
83
-
84
- ## 0.1.0-alpha.26 (2025-10-30)
85
-
86
- ### 🚀 Features
87
-
88
- - add getUserSocialAccounts function ([#620](https://github.com/dynamic-labs/dynamic-sdk/pull/620))
89
-
90
- ## 0.1.0-alpha.25 (2025-10-29)
91
-
92
- ### Breaking Changes
93
-
94
- - Rename signInWithSocialRedirect -> authenticateWithSocial
95
- - Rename completeSocialRedirectSignIn -> completeSocialAuthentication
96
-
97
- ### 🚀 Features
98
-
99
- - add support for social account linking ([#616](https://github.com/dynamic-labs/dynamic-sdk/pull/616))
100
-
101
- ## 0.1.0-alpha.24 (2025-10-28)
102
-
103
- ### Breaking Changes
104
-
105
- Removed `getSigner` from `solana` package in favor of individual signing methods
106
- - signAndSendTransaction
107
- - signTransaction
108
- - signAllTransactions
109
-
110
- ## 0.1.0-alpha.23 (2025-10-22)
111
-
112
- ### 🚀 Features
113
-
114
- - add support for OKX BTC ([#583](https://github.com/dynamic-labs/dynamic-sdk/pull/583))
115
- - add support for OneKey BTC ([#586](https://github.com/dynamic-labs/dynamic-sdk/pull/586))
116
- - add support for Bitget Wallet BTC ([#592](https://github.com/dynamic-labs/dynamic-sdk/pull/592))
117
- - add support for Binance Wallet BTC ([#595](https://github.com/dynamic-labs/dynamic-sdk/pull/595))
118
- - add support for Oyl Wallet BTC ([#589](https://github.com/dynamic-labs/dynamic-sdk/pull/589))
119
- - add support for Leather Wallet BTC ([#600](https://github.com/dynamic-labs/dynamic-sdk/pull/600))
120
-
121
- ## 0.1.0-alpha.22 (2025-10-16)
122
-
123
- ### 🚀 Features
124
-
125
- - add support for Magic Eden BTC ([#575](https://github.com/dynamic-labs/dynamic-sdk/pull/575))
126
-
127
- ## 0.1.0-alpha.21 (2025-10-16)
128
-
129
- ### 🩹 Fixes
130
-
131
- - don't refetch project settings on page refresh if there are connected wallets ([#571](https://github.com/dynamic-labs/dynamic-sdk/pull/571))
132
-
133
- ## 0.1.0-alpha.20 (2025-10-15)
134
-
135
- This was a version bump only, there were no code changes.
136
-
137
- ## 0.1.0-alpha.19 (2025-10-10)
138
-
139
- This was a version bump only, there were no code changes.
140
-
141
- ## 0.1.0-alpha.18 (2025-10-08)
142
-
143
- ### 🚀 Features
144
-
145
- - Add TypeDoc for JavaScript SDK API Reference Documentation ([#512](https://github.com/dynamic-labs/dynamic-sdk/pull/512))
146
-
147
- ## 0.1.0-alpha.17 (2025-10-02)
148
-
149
- ### 🩹 Fixes
150
-
151
- - add return type to connect with wallet provider ([#497](https://github.com/dynamic-labs/dynamic-sdk/pull/497))
152
-
153
- ## 0.1.0-alpha.16 (2025-10-01)
154
-
155
- ### 🚀 Features
156
-
157
- - logout user when session expires ([#47](https://github.com/dynamic-labs/dynamic-sdk/pull/47))
158
- - add sms verification ([#78](https://github.com/dynamic-labs/dynamic-sdk/pull/78))
159
- - raise changed events for state variables ([#79](https://github.com/dynamic-labs/dynamic-sdk/pull/79))
160
- - allow extending the client ([#80](https://github.com/dynamic-labs/dynamic-sdk/pull/80))
161
- - allow manual init of client ([#88](https://github.com/dynamic-labs/dynamic-sdk/pull/88))
162
- - add signMessage ([#111](https://github.com/dynamic-labs/dynamic-sdk/pull/111))
163
- - support social sign in ([#123](https://github.com/dynamic-labs/dynamic-sdk/pull/123))
164
- - add updateUser function ([#138](https://github.com/dynamic-labs/dynamic-sdk/pull/138))
165
- - add acknowledgeRecoveryCodes function ([#139](https://github.com/dynamic-labs/dynamic-sdk/pull/139))
166
- - add getMfaDevices function ([#140](https://github.com/dynamic-labs/dynamic-sdk/pull/140))
167
- - add deleteMfaDevice function ([#141](https://github.com/dynamic-labs/dynamic-sdk/pull/141))
168
- - add registerTotpMfaDevice function ([#142](https://github.com/dynamic-labs/dynamic-sdk/pull/142))
169
- - add getMfaRecoveryCodes function ([#143](https://github.com/dynamic-labs/dynamic-sdk/pull/143))
170
- - cache project settings for connected users ([#148](https://github.com/dynamic-labs/dynamic-sdk/pull/148))
171
- - add createNewMfaRecoveryCodes function ([#144](https://github.com/dynamic-labs/dynamic-sdk/pull/144))
172
- - add setDefaultMfaDevice function ([#149](https://github.com/dynamic-labs/dynamic-sdk/pull/149))
173
- - add support for solana wallet standard ([#133](https://github.com/dynamic-labs/dynamic-sdk/pull/133))
174
- - add primary wallet account ([#128](https://github.com/dynamic-labs/dynamic-sdk/pull/128))
175
- - add authTotpMfaDevice function ([#146](https://github.com/dynamic-labs/dynamic-sdk/pull/146))
176
- - add authMfaRecoveryCode function ([#147](https://github.com/dynamic-labs/dynamic-sdk/pull/147))
177
- - add new getMultichainBalances api method ([#219](https://github.com/dynamic-labs/dynamic-sdk/pull/219))
178
- - adds authenticated event ([#222](https://github.com/dynamic-labs/dynamic-sdk/pull/222))
179
- - raise an error if different dynamic packages are on different versions ([#253](https://github.com/dynamic-labs/dynamic-sdk/pull/253))
180
- - add signInWithExternalJwt function ([#263](https://github.com/dynamic-labs/dynamic-sdk/pull/263))
181
- - add network provider registry and API ([#266](https://github.com/dynamic-labs/dynamic-sdk/pull/266))
182
- - add ethereum netowrk providers ([#267](https://github.com/dynamic-labs/dynamic-sdk/pull/267))
183
- - add solana network provider ([#268](https://github.com/dynamic-labs/dynamic-sdk/pull/268))
184
- - add proveWalletAccountOwnership function ([#295](https://github.com/dynamic-labs/dynamic-sdk/pull/295))
185
- - format evm wallet addresses to conform to eip55 ([#300](https://github.com/dynamic-labs/dynamic-sdk/pull/300))
186
- - add viem public client ([#272](https://github.com/dynamic-labs/dynamic-sdk/pull/272))
187
- - add getSolanaConnection ([#275](https://github.com/dynamic-labs/dynamic-sdk/pull/275))
188
- - add dynamic waas evm extension ([#299](https://github.com/dynamic-labs/dynamic-sdk/pull/299))
189
- - add refreshUser function ([#332](https://github.com/dynamic-labs/dynamic-sdk/pull/332))
190
- - add get network method ([#321](https://github.com/dynamic-labs/dynamic-sdk/pull/321))
191
- - add createWaasWallet function ([#343](https://github.com/dynamic-labs/dynamic-sdk/pull/343))
192
- - allow switching network ([#323](https://github.com/dynamic-labs/dynamic-sdk/pull/323))
193
- - introduce getBalance and getBalanceForAddress ([#335](https://github.com/dynamic-labs/dynamic-sdk/pull/335))
194
- - add delegateWaasKeyShares function ([#353](https://github.com/dynamic-labs/dynamic-sdk/pull/353))
195
- - add updateWaasPassword function ([#354](https://github.com/dynamic-labs/dynamic-sdk/pull/354))
196
- - add exportWaasClientKeyshares function ([#355](https://github.com/dynamic-labs/dynamic-sdk/pull/355))
197
- - add importWaasPrivateKey function ([#356](https://github.com/dynamic-labs/dynamic-sdk/pull/356))
198
- - add refreshWaasWalletAccountShares function ([#357](https://github.com/dynamic-labs/dynamic-sdk/pull/357))
199
- - add backupWaasKeySharesToGoogleDrive function ([#358](https://github.com/dynamic-labs/dynamic-sdk/pull/358))
200
- - add exportWaasPrivateKey function ([#359](https://github.com/dynamic-labs/dynamic-sdk/pull/359))
201
- - add isWaasWalletAccount function ([#365](https://github.com/dynamic-labs/dynamic-sdk/pull/365))
202
- - add createWalletClientForWalletAccount function ([#367](https://github.com/dynamic-labs/dynamic-sdk/pull/367))
203
- - add connectAndVerifyWithWalletProvider function ([#385](https://github.com/dynamic-labs/dynamic-sdk/pull/385))
204
- - add event listening for wallet providers ([#389](https://github.com/dynamic-labs/dynamic-sdk/pull/389))
205
- - expose the session expires at date ([#420](https://github.com/dynamic-labs/dynamic-sdk/pull/420))
206
- - refresh user when cookies are enabled ([#430](https://github.com/dynamic-labs/dynamic-sdk/pull/430))
207
- - introduce waitForClientInitialized ([#436](https://github.com/dynamic-labs/dynamic-sdk/pull/436))
208
- - introduce isMobile helper utility ([#441](https://github.com/dynamic-labs/dynamic-sdk/pull/441))
209
- - persist unverified wallets in local storage ([#448](https://github.com/dynamic-labs/dynamic-sdk/pull/448))
210
- - **QNTM-3387:** add sui base infrastructure and core client ([#240](https://github.com/dynamic-labs/dynamic-sdk/pull/240))
211
- - **SIN-7:** Add Signin with Passkey ([#201](https://github.com/dynamic-labs/dynamic-sdk/pull/201))
212
- - **wallets:** adds methods to connect and verify a wallet ([#99](https://github.com/dynamic-labs/dynamic-sdk/pull/99))
213
-
214
- ### 🩹 Fixes
215
-
216
- - make the client package public ([#74](https://github.com/dynamic-labs/dynamic-sdk/pull/74))
217
- - properly export state changed events ([#85](https://github.com/dynamic-labs/dynamic-sdk/pull/85))
218
- - client core accidentally sharing state among different instances ([#89](https://github.com/dynamic-labs/dynamic-sdk/pull/89))
219
- - support server side rendering ([#92](https://github.com/dynamic-labs/dynamic-sdk/pull/92))
220
- - use correct import path for commonjs ([#125](https://github.com/dynamic-labs/dynamic-sdk/pull/125))
221
- - ensure change events are fired only when state changes ([#168](https://github.com/dynamic-labs/dynamic-sdk/pull/168))
222
- - solana integration ([#169](https://github.com/dynamic-labs/dynamic-sdk/pull/169))
223
- - throw when attempting to set undefined prop in storage ([#200](https://github.com/dynamic-labs/dynamic-sdk/pull/200))
224
- - allow the api call to include cookie credentials ([#209](https://github.com/dynamic-labs/dynamic-sdk/pull/209))
225
- - convert api headers to get api headers ([#211](https://github.com/dynamic-labs/dynamic-sdk/pull/211))
226
- - import zod mini using namespace ([#214](https://github.com/dynamic-labs/dynamic-sdk/pull/214))
227
- - bind fetch to window ([#265](https://github.com/dynamic-labs/dynamic-sdk/pull/265))
228
- - update default API base URL ([#296](https://github.com/dynamic-labs/dynamic-sdk/pull/296))
229
- - remove version pin on sdk-api-core ([#351](https://github.com/dynamic-labs/dynamic-sdk/pull/351))
230
- - sending transaction with solana ([#381](https://github.com/dynamic-labs/dynamic-sdk/pull/381))
231
- - set client version to project settings api call ([#414](https://github.com/dynamic-labs/dynamic-sdk/pull/414))
232
- - logout with wallet standard sol wallets ([#423](https://github.com/dynamic-labs/dynamic-sdk/pull/423))
233
- - logout user when any api call fails with 401 ([#432](https://github.com/dynamic-labs/dynamic-sdk/pull/432))
234
- - logout for connected only wallets ([#437](https://github.com/dynamic-labs/dynamic-sdk/pull/437))
235
- - ensure server side rendering will not trigger any api call ([#445](https://github.com/dynamic-labs/dynamic-sdk/pull/445))
236
- - handle 401 when initializing the SDK ([#446](https://github.com/dynamic-labs/dynamic-sdk/pull/446))
237
- - logout user when any api call fails with 401 " ([#432](https://github.com/dynamic-labs/dynamic-sdk/pull/432), [#450](https://github.com/dynamic-labs/dynamic-sdk/pull/450))
238
- - logout user only when it fails to refresh user with cookies ([#451](https://github.com/dynamic-labs/dynamic-sdk/pull/451))
239
- - update how wallet account id is computed to support multiple wallet accounts with the same address ([#481](https://github.com/dynamic-labs/dynamic-sdk/pull/481))
240
- - **mfa:** make device id optional ([#175](https://github.com/dynamic-labs/dynamic-sdk/pull/175))
241
- - **mfa:** allow create mfa options to authTotpMfaDevice ([#178](https://github.com/dynamic-labs/dynamic-sdk/pull/178))
242
-
243
- ### 🔧 Refactors
244
-
245
- - rename initializationManager to asyncTrack ([#26](https://github.com/dynamic-labs/dynamic-sdk/pull/26))
246
- - modularize DynamicCoreState with global interface ([#93](https://github.com/dynamic-labs/dynamic-sdk/pull/93))
247
- - add setVerifyResponse ([#106](https://github.com/dynamic-labs/dynamic-sdk/pull/106))
248
- - rename set verify response function ([#122](https://github.com/dynamic-labs/dynamic-sdk/pull/122))
249
- - clean up social implementation ([#145](https://github.com/dynamic-labs/dynamic-sdk/pull/145))
250
- - reorganize exports index file ([#303](https://github.com/dynamic-labs/dynamic-sdk/pull/303))
251
- - rename events folder to clientEvents ([#305](https://github.com/dynamic-labs/dynamic-sdk/pull/305))
252
- - dry network provider type ([#308](https://github.com/dynamic-labs/dynamic-sdk/pull/308))
253
- - rename types files to include the features name ([#319](https://github.com/dynamic-labs/dynamic-sdk/pull/319))
254
- - use evm instead of other terms ([#306](https://github.com/dynamic-labs/dynamic-sdk/pull/306))
255
- - rename net configuration to net data ([#322](https://github.com/dynamic-labs/dynamic-sdk/pull/322))
256
- - move waas-utils to client package ([#342](https://github.com/dynamic-labs/dynamic-sdk/pull/342))
257
- - assert signed session id in getSignedSessionId ([#361](https://github.com/dynamic-labs/dynamic-sdk/pull/361))
258
- - add consumeMfaTokenIfRequiredForAction function ([#363](https://github.com/dynamic-labs/dynamic-sdk/pull/363))
259
- - waas sign message defined in waas provider ([#377](https://github.com/dynamic-labs/dynamic-sdk/pull/377))
260
- - ban chain enum ([#386](https://github.com/dynamic-labs/dynamic-sdk/pull/386))
261
- - ban misplaced waas exports ([#387](https://github.com/dynamic-labs/dynamic-sdk/pull/387))
262
- - also apply lint-tsc for specfiles ([#399](https://github.com/dynamic-labs/dynamic-sdk/pull/399))
263
- - require client to always be passed as a param for internal code ([#401](https://github.com/dynamic-labs/dynamic-sdk/pull/401))
264
- - linter rule for addExtension functions ([#433](https://github.com/dynamic-labs/dynamic-sdk/pull/433))
265
- - improve demo ui and organization ([#434](https://github.com/dynamic-labs/dynamic-sdk/pull/434))
266
- - misc improvements ([#438](https://github.com/dynamic-labs/dynamic-sdk/pull/438))
267
- - add linter rule for unpinned dependencies ([#439](https://github.com/dynamic-labs/dynamic-sdk/pull/439))
268
- - rework captcha code for demo ([#449](https://github.com/dynamic-labs/dynamic-sdk/pull/449))
269
- - rename schemas ([#471](https://github.com/dynamic-labs/dynamic-sdk/pull/471))
270
-
271
- ## 0.1.0-alpha.15 (2025-10-01)
272
-
273
- This was a version bump only, there were no code changes.
274
-
275
- ## 0.1.0-alpha.14 (2025-09-30)
276
-
277
- This was a version bump only, there were no code changes.
278
-
279
- ## 0.1.0-alpha.13 (2025-09-30)
280
-
281
- ### 🚀 Features
282
-
283
- - persist unverified wallets in local storage ([#448](https://github.com/dynamic-labs/dynamic-sdk/pull/448))
284
-
285
- ### 🩹 Fixes
286
-
287
- - update how wallet account id is computed to support multiple wallet accounts with the same address ([#481](https://github.com/dynamic-labs/dynamic-sdk/pull/481))
288
-
289
- ### 🔧 Refactors
290
-
291
- - rename schemas ([#471](https://github.com/dynamic-labs/dynamic-sdk/pull/471))
292
-
293
- ## 0.1.0-alpha.12 (2025-09-23)
294
-
295
- This was a version bump only, there were no code changes.
296
-
297
- ## 0.1.0-alpha.11 (2025-09-23)
298
-
299
- ### 🩹 Fixes
300
-
301
- - logout user when any api call fails with 401 " ([#432](https://github.com/dynamic-labs/dynamic-sdk/pull/432), [#450](https://github.com/dynamic-labs/dynamic-sdk/pull/450))
302
- - logout user only when it fails to refresh user with cookies ([#451](https://github.com/dynamic-labs/dynamic-sdk/pull/451))
303
-
304
- ### 🔧 Refactors
305
-
306
- - rework captcha code for demo ([#449](https://github.com/dynamic-labs/dynamic-sdk/pull/449))
307
-
308
- ## 0.1.0-alpha.10 (2025-09-22)
309
-
310
- ### 🩹 Fixes
311
-
312
- - ensure server side rendering will not trigger any api call ([#445](https://github.com/dynamic-labs/dynamic-sdk/pull/445))
313
- - handle 401 when initializing the SDK ([#446](https://github.com/dynamic-labs/dynamic-sdk/pull/446))
314
-
315
- ## 0.1.0-alpha.9 (2025-09-19)
316
-
317
- ### 🚀 Features
318
-
319
- - refresh user when cookies are enabled ([#430](https://github.com/dynamic-labs/dynamic-sdk/pull/430))
320
- - introduce waitForClientInitialized ([#436](https://github.com/dynamic-labs/dynamic-sdk/pull/436))
321
- - introduce isMobile helper utility ([#441](https://github.com/dynamic-labs/dynamic-sdk/pull/441))
322
-
323
- ### 🩹 Fixes
324
-
325
- - logout user when any api call fails with 401 ([#432](https://github.com/dynamic-labs/dynamic-sdk/pull/432))
326
- - logout for connected only wallets ([#437](https://github.com/dynamic-labs/dynamic-sdk/pull/437))
327
-
328
- ### 🔧 Refactors
329
-
330
- - linter rule for addExtension functions ([#433](https://github.com/dynamic-labs/dynamic-sdk/pull/433))
331
- - improve demo ui and organization ([#434](https://github.com/dynamic-labs/dynamic-sdk/pull/434))
332
- - misc improvements ([#438](https://github.com/dynamic-labs/dynamic-sdk/pull/438))
333
- - add linter rule for unpinned dependencies ([#439](https://github.com/dynamic-labs/dynamic-sdk/pull/439))
334
-
335
- ## 0.1.0-alpha.8 (2025-09-15)
336
-
337
- This was a version bump only, there were no code changes.
338
-
339
- ## 0.1.0-alpha.7 (2025-09-12)
340
-
341
- ### 🩹 Fixes
342
-
343
- - logout with wallet standard sol wallets ([#423](https://github.com/dynamic-labs/dynamic-sdk/pull/423))
344
-
345
- ## 0.1.0-alpha.6 (2025-09-11)
346
-
347
- ### 🚀 Features
348
-
349
- - add captcha support
350
-
351
- ## 0.1.0-alpha.5 (2025-09-11)
352
-
353
- ### 🚀 Features
354
-
355
- - expose the session expires at date ([#420](https://github.com/dynamic-labs/dynamic-sdk/pull/420))
356
-
357
- ## 0.1.0-alpha.4 (2025-09-10)
358
-
359
- ### 🩹 Fixes
360
-
361
- - set client version to project settings api call ([#414](https://github.com/dynamic-labs/dynamic-sdk/pull/414))
362
-
363
- ## 0.1.0-alpha.3 (2025-09-09)
364
-
365
- This was a version bump only, there were no code changes.
366
-
367
- ## 0.1.0-alpha.2 (2025-09-08)
368
-
369
- This was a version bump only, there were no code changes.
370
-
371
- ## 0.1.0-alpha.1 (2025-09-02)
372
-
373
- This was a version bump only, there were no code changes.
374
-
375
- ## 0.1.0-alpha.0 (2025-09-02)
376
-
377
- ### 🚀 Features
378
-
379
- - add connectAndVerifyWithWalletProvider function ([#385](https://github.com/dynamic-labs/dynamic-sdk/pull/385))
380
- - add event listening for wallet providers ([#389](https://github.com/dynamic-labs/dynamic-sdk/pull/389))
381
-
382
- ### 🩹 Fixes
383
-
384
- - sending transaction with solana ([#381](https://github.com/dynamic-labs/dynamic-sdk/pull/381))
385
-
386
- ### 🔧 Refactors
387
-
388
- - waas sign message defined in waas provider ([#377](https://github.com/dynamic-labs/dynamic-sdk/pull/377))
389
- - ban chain enum ([#386](https://github.com/dynamic-labs/dynamic-sdk/pull/386))
390
- - ban misplaced waas exports ([#387](https://github.com/dynamic-labs/dynamic-sdk/pull/387))
391
-
392
- ## 0.0.1-alpha.27 (2025-08-29)
393
-
394
- ### 🚀 Features
395
-
396
- - allow switching network ([#323](https://github.com/dynamic-labs/dynamic-sdk/pull/323))
397
- - introduce getBalance and getBalanceForAddress ([#335](https://github.com/dynamic-labs/dynamic-sdk/pull/335))
398
- - add delegateWaasKeyShares function ([#353](https://github.com/dynamic-labs/dynamic-sdk/pull/353))
399
- - add updateWaasPassword function ([#354](https://github.com/dynamic-labs/dynamic-sdk/pull/354))
400
- - add exportWaasClientKeyshares function ([#355](https://github.com/dynamic-labs/dynamic-sdk/pull/355))
401
- - add importWaasPrivateKey function ([#356](https://github.com/dynamic-labs/dynamic-sdk/pull/356))
402
- - add refreshWaasWalletAccountShares function ([#357](https://github.com/dynamic-labs/dynamic-sdk/pull/357))
403
- - add backupWaasKeySharesToGoogleDrive function ([#358](https://github.com/dynamic-labs/dynamic-sdk/pull/358))
404
- - add exportWaasPrivateKey function ([#359](https://github.com/dynamic-labs/dynamic-sdk/pull/359))
405
- - add isWaasWalletAccount function ([#365](https://github.com/dynamic-labs/dynamic-sdk/pull/365))
406
- - add createWalletClientForWalletAccount function ([#367](https://github.com/dynamic-labs/dynamic-sdk/pull/367))
407
-
408
- ### 🔧 Refactors
409
-
410
- - assert signed session id in getSignedSessionId ([#361](https://github.com/dynamic-labs/dynamic-sdk/pull/361))
411
- - add consumeMfaTokenIfRequiredForAction function ([#363](https://github.com/dynamic-labs/dynamic-sdk/pull/363))
412
-
413
- ## 0.0.1-alpha.26 (2025-08-27)
414
-
415
- ### 🩹 Fixes
416
-
417
- - remove version pin on sdk-api-core ([#351](https://github.com/dynamic-labs/dynamic-sdk/pull/351))
418
-
419
- ## 0.0.1-alpha.25 (2025-08-27)
420
-
421
- ### 🚀 Features
422
-
423
- - add ethereum netowrk providers ([#267](https://github.com/dynamic-labs/dynamic-sdk/pull/267))
424
- - add solana network provider ([#268](https://github.com/dynamic-labs/dynamic-sdk/pull/268))
425
- - add proveWalletAccountOwnership function ([#295](https://github.com/dynamic-labs/dynamic-sdk/pull/295))
426
- - format evm wallet addresses to conform to eip55 ([#300](https://github.com/dynamic-labs/dynamic-sdk/pull/300))
427
- - add viem public client ([#272](https://github.com/dynamic-labs/dynamic-sdk/pull/272))
428
- - add getSolanaConnection ([#275](https://github.com/dynamic-labs/dynamic-sdk/pull/275))
429
- - add dynamic waas evm extension ([#299](https://github.com/dynamic-labs/dynamic-sdk/pull/299))
430
- - add refreshUser function ([#332](https://github.com/dynamic-labs/dynamic-sdk/pull/332))
431
- - add get network method ([#321](https://github.com/dynamic-labs/dynamic-sdk/pull/321))
432
-
433
- ### 🩹 Fixes
434
-
435
- - update default API base URL ([#296](https://github.com/dynamic-labs/dynamic-sdk/pull/296))
436
-
437
- ### 🔧 Refactors
438
-
439
- - reorganize exports index file ([#303](https://github.com/dynamic-labs/dynamic-sdk/pull/303))
440
- - rename events folder to clientEvents ([#305](https://github.com/dynamic-labs/dynamic-sdk/pull/305))
441
- - dry network provider type ([#308](https://github.com/dynamic-labs/dynamic-sdk/pull/308))
442
- - rename types files to include the features name ([#319](https://github.com/dynamic-labs/dynamic-sdk/pull/319))
443
- - use evm instead of other terms ([#306](https://github.com/dynamic-labs/dynamic-sdk/pull/306))
444
- - rename net configuration to net data ([#322](https://github.com/dynamic-labs/dynamic-sdk/pull/322))
445
- - move waas-utils to client package ([#342](https://github.com/dynamic-labs/dynamic-sdk/pull/342))
446
-
447
- ## 0.0.1-alpha.24 (2025-08-14)
448
-
449
- This was a version bump only, there were no code changes.
450
-
451
- ## 0.0.1-alpha.23 (2025-08-14)
452
-
453
- This was a version bump only, there were no code changes.
454
-
455
- ## 0.0.1-alpha.22 (2025-08-13)
456
-
457
- This was a version bump only, there were no code changes.
458
-
459
- ## 0.0.1-alpha.21 (2025-08-12)
460
-
461
- ### 🚀 Features
462
-
463
- - add signInWithExternalJwt function ([#263](https://github.com/dynamic-labs/dynamic-sdk/pull/263))
464
-
465
- ### 🩹 Fixes
466
-
467
- - bind fetch to window ([#265](https://github.com/dynamic-labs/dynamic-sdk/pull/265))
468
-
469
- ## 0.0.1-alpha.20 (2025-08-06)
470
-
471
- ### 🚀 Features
472
-
473
- - raise an error if different dynamic packages are on different versions ([#253](https://github.com/dynamic-labs/dynamic-sdk/pull/253))
474
-
475
- ## 0.0.1-alpha.19 (2025-07-23)
476
-
477
- This was a version bump only, there were no code changes.
478
-
479
- ## 0.0.1-alpha.18 (2025-07-22)
480
-
481
- This was a version bump only, there were no code changes.
482
-
483
- ## 0.0.1-alpha.17 (2025-07-22)
484
-
485
- This was a version bump only, there were no code changes.
486
-
487
- ## 0.0.1-alpha.16 (2025-07-14)
488
-
489
- ### 🚀 Features
490
-
491
- - add new getMultichainBalances api method ([#219](https://github.com/dynamic-labs/dynamic-sdk/pull/219))
492
- - adds authenticated event ([#222](https://github.com/dynamic-labs/dynamic-sdk/pull/222))
493
-
494
- ## 0.0.1-alpha.15 (2025-07-14)
495
-
496
- ### 🚀 Features
497
-
498
- - **SIN-7:** Add Signin with Passkey ([#201](https://github.com/dynamic-labs/dynamic-sdk/pull/201))
499
-
500
- ## 0.0.1-alpha.14 (2025-07-11)
501
-
502
- ### 🩹 Fixes
503
-
504
- - import zod mini using namespace ([#214](https://github.com/dynamic-labs/dynamic-sdk/pull/214))
505
-
506
- ## 0.0.1-alpha.13 (2025-07-09)
507
-
508
- ### 🩹 Fixes
509
-
510
- - convert api headers to get api headers ([#211](https://github.com/dynamic-labs/dynamic-sdk/pull/211))
511
-
512
- ## 0.0.1-alpha.12 (2025-07-09)
513
-
514
- ### 🩹 Fixes
515
-
516
- - allow the api call to include cookie credentials ([#209](https://github.com/dynamic-labs/dynamic-sdk/pull/209))
517
-
518
- ## 0.0.1-alpha.11 (2025-07-08)
519
-
520
- This was a version bump only, there were no code changes.
521
-
522
- ## 0.0.1-alpha.10 (2025-07-08)
523
-
524
- This was a version bump only, there were no code changes.
525
-
526
- ## 0.0.1-alpha.9 (2025-07-08)
527
-
528
- ### 🩹 Fixes
529
-
530
- - throw when attempting to set undefined prop in storage ([#200](https://github.com/dynamic-labs/dynamic-sdk/pull/200))
531
-
532
- ## 0.0.1-alpha.8 (2025-07-03)
533
-
534
- This was a version bump only, there were no code changes.
535
-
536
- ## 0.0.1-alpha.7 (2025-07-02)
537
-
538
- ### 🩹 Fixes
539
-
540
- - **mfa:** make device id optional ([#175](https://github.com/dynamic-labs/dynamic-sdk/pull/175))
541
- - **mfa:** allow create mfa options to authTotpMfaDevice ([#178](https://github.com/dynamic-labs/dynamic-sdk/pull/178))
542
-
543
- ## 0.0.1-alpha.6 (2025-06-30)
544
-
545
- ### 🚀 Features
546
-
547
- - add support for solana wallet standard ([#133](https://github.com/dynamic-labs/dynamic-sdk/pull/133))
548
- - add support social sign in ([#123](https://github.com/dynamic-labs/dynamic-sdk/pull/123))
549
- - add support for TOTP MFA ([#139](https://github.com/dynamic-labs/dynamic-sdk/pull/139))([#140](https://github.com/dynamic-labs/dynamic-sdk/pull/140))([#141](https://github.com/dynamic-labs/dynamic-sdk/pull/141))([#142](https://github.com/dynamic-labs/dynamic-sdk/pull/142))([#143](https://github.com/dynamic-labs/dynamic-sdk/pull/143))([#144](https://github.com/dynamic-labs/dynamic-sdk/pull/144))([#149](https://github.com/dynamic-labs/dynamic-sdk/pull/149))([#146](https://github.com/dynamic-labs/dynamic-sdk/pull/146))([#147](https://github.com/dynamic-labs/dynamic-sdk/pull/147))
550
- - add methods to connect and verify a wallet ([#99](https://github.com/dynamic-labs/dynamic-sdk/pull/99))
551
- - add signMessage ([#111](https://github.com/dynamic-labs/dynamic-sdk/pull/111))
552
- - add primary wallet account ([#128](https://github.com/dynamic-labs/dynamic-sdk/pull/128))
553
- - cache project settings for connected users ([#148](https://github.com/dynamic-labs/dynamic-sdk/pull/148))
554
- - add updateUser function ([#138](https://github.com/dynamic-labs/dynamic-sdk/pull/138))
555
-
556
- ### 🩹 Fixes
557
-
558
- - use correct import path for commonjs ([#125](https://github.com/dynamic-labs/dynamic-sdk/pull/125))
559
- - ensure change events are fired only when state changes ([#168](https://github.com/dynamic-labs/dynamic-sdk/pull/168))
560
-
561
- ### 🔧 Refactors
562
-
563
- - modularize DynamicCoreState with global interface ([#93](https://github.com/dynamic-labs/dynamic-sdk/pull/93))
564
- - add setVerifyResponse ([#106](https://github.com/dynamic-labs/dynamic-sdk/pull/106))
565
- - rename set verify response function ([#122](https://github.com/dynamic-labs/dynamic-sdk/pull/122))
566
-
567
- ## 0.0.1-alpha.5 (2025-06-04)
568
-
569
- ### 🩹 Fixes
570
-
571
- - support server side rendering ([#92](https://github.com/dynamic-labs/dynamic-sdk/pull/92))
572
-
573
- ## 0.0.1-alpha.4 (2025-05-28)
574
-
575
- ### 🚀 Features
576
-
577
- - allow manual init of client ([#88](https://github.com/dynamic-labs/dynamic-sdk/pull/88))
578
-
579
- ### 🩹 Fixes
580
-
581
- - client core accidentally sharing state among different instances ([#89](https://github.com/dynamic-labs/dynamic-sdk/pull/89))
582
-
583
- ## 0.0.1-alpha.3 (2025-05-27)
584
-
585
- ### 🩹 Fixes
586
-
587
- - properly export state changed events ([#85](https://github.com/dynamic-labs/dynamic-sdk/pull/85))
588
-
589
- ## 0.0.1-alpha.2 (2025-05-26)
590
-
591
- ### 🚀 Features
592
-
593
- - logout user when session expires ([#47](https://github.com/dynamic-labs/dynamic-sdk/pull/47))
594
- - add sms verification ([#78](https://github.com/dynamic-labs/dynamic-sdk/pull/78))
595
- - raise changed events for state variables ([#79](https://github.com/dynamic-labs/dynamic-sdk/pull/79))
596
- - allow extending the client ([#80](https://github.com/dynamic-labs/dynamic-sdk/pull/80))
597
-
598
- ## 0.0.1-alpha.1 (2025-05-19)
599
-
600
- ### 🩹 Fixes
601
-
602
- - make the client package public ([#74](https://github.com/dynamic-labs/dynamic-sdk/pull/74))
603
-
604
- ## 0.0.1-alpha.0 (2025-05-16)
605
-
606
- Initial release of the Dynamic SDK.
package/index.cjs.d.ts DELETED
@@ -1 +0,0 @@
1
- export * from "./src/exports/index";
package/index.cjs.js DELETED
@@ -1,66 +0,0 @@
1
- 'use strict';
2
-
3
- class VersionMismatchError extends Error {
4
- constructor(targetVersion, packageVersions){
5
- // Identify packages with mismatched versions
6
- const affectedPackages = Object.entries(packageVersions).filter(([, v])=>v !== targetVersion).map(([pkgName, installedVersion])=>`- \`${pkgName}\` (installed: **${installedVersion}**, required: **${targetVersion}**)`).join('\n');
7
- // Error message template
8
- const errorMessage = `
9
- 🚨 Version Mismatch Error
10
-
11
- One or more \`@dynamic-labs-sdk\` packages are installed with mismatched versions. All \`@dynamic-labs-sdk\` packages must be on the same version to work correctly.
12
-
13
- Affected Packages:
14
- ${affectedPackages}
15
-
16
- 💡 To fix this issue, update all @dynamic-labs-sdk/* packages to version \`${targetVersion}\` in your package.json
17
- `;
18
- super(errorMessage.trim());
19
- this.name = 'VersionMismatchError';
20
- }
21
- }
22
-
23
- /**
24
- * A mapping of package names to their versions.
25
- */ let packageVersions = {};
26
- /**
27
- * Timeout ID for batching version checks.
28
- */ let versionCheckTimeout = null;
29
- /**
30
- * Asserts that all `@dynamic-labs-sdk` packages are on the same version.
31
- * Throws an error with instructions if versions mismatch.
32
- *
33
- * @param {string} packageName - The name of the package to assert.
34
- * @param {string} version - The version of the package.
35
- */ const assertPackageVersion = (packageName, version)=>{
36
- // Update the package version mapping
37
- packageVersions[packageName] = version;
38
- // Clear any existing timeout
39
- if (versionCheckTimeout) {
40
- clearTimeout(versionCheckTimeout);
41
- versionCheckTimeout = null;
42
- }
43
- /**
44
- * Timeout is set to 100ms to ensure the following:
45
- * - All package versions have been imported and registered.
46
- */ const timeout = 100;
47
- /**
48
- * Set a timeout to batch the version check.
49
- * This ensures that the check is executed after all package versions have been imported
50
- * and registered.
51
- */ versionCheckTimeout = setTimeout(()=>{
52
- const versions = Object.values(packageVersions);
53
- const [firstVersion] = versions;
54
- const allSameVersion = versions.every((v)=>v === firstVersion);
55
- if (!allSameVersion) {
56
- // Determine the required (target) version
57
- const targetVersion = packageVersions['@dynamic-labs-sdk/client'] || firstVersion;
58
- const error = new VersionMismatchError(targetVersion, packageVersions);
59
- // eslint-disable-next-line no-console
60
- console.error(error);
61
- }
62
- versionCheckTimeout = null;
63
- }, timeout);
64
- };
65
-
66
- exports.assertPackageVersion = assertPackageVersion;
package/index.esm.d.ts DELETED
@@ -1 +0,0 @@
1
- export * from "./src/exports/index";
package/index.esm.js DELETED
@@ -1,64 +0,0 @@
1
- class VersionMismatchError extends Error {
2
- constructor(targetVersion, packageVersions){
3
- // Identify packages with mismatched versions
4
- const affectedPackages = Object.entries(packageVersions).filter(([, v])=>v !== targetVersion).map(([pkgName, installedVersion])=>`- \`${pkgName}\` (installed: **${installedVersion}**, required: **${targetVersion}**)`).join('\n');
5
- // Error message template
6
- const errorMessage = `
7
- 🚨 Version Mismatch Error
8
-
9
- One or more \`@dynamic-labs-sdk\` packages are installed with mismatched versions. All \`@dynamic-labs-sdk\` packages must be on the same version to work correctly.
10
-
11
- Affected Packages:
12
- ${affectedPackages}
13
-
14
- 💡 To fix this issue, update all @dynamic-labs-sdk/* packages to version \`${targetVersion}\` in your package.json
15
- `;
16
- super(errorMessage.trim());
17
- this.name = 'VersionMismatchError';
18
- }
19
- }
20
-
21
- /**
22
- * A mapping of package names to their versions.
23
- */ let packageVersions = {};
24
- /**
25
- * Timeout ID for batching version checks.
26
- */ let versionCheckTimeout = null;
27
- /**
28
- * Asserts that all `@dynamic-labs-sdk` packages are on the same version.
29
- * Throws an error with instructions if versions mismatch.
30
- *
31
- * @param {string} packageName - The name of the package to assert.
32
- * @param {string} version - The version of the package.
33
- */ const assertPackageVersion = (packageName, version)=>{
34
- // Update the package version mapping
35
- packageVersions[packageName] = version;
36
- // Clear any existing timeout
37
- if (versionCheckTimeout) {
38
- clearTimeout(versionCheckTimeout);
39
- versionCheckTimeout = null;
40
- }
41
- /**
42
- * Timeout is set to 100ms to ensure the following:
43
- * - All package versions have been imported and registered.
44
- */ const timeout = 100;
45
- /**
46
- * Set a timeout to batch the version check.
47
- * This ensures that the check is executed after all package versions have been imported
48
- * and registered.
49
- */ versionCheckTimeout = setTimeout(()=>{
50
- const versions = Object.values(packageVersions);
51
- const [firstVersion] = versions;
52
- const allSameVersion = versions.every((v)=>v === firstVersion);
53
- if (!allSameVersion) {
54
- // Determine the required (target) version
55
- const targetVersion = packageVersions['@dynamic-labs-sdk/client'] || firstVersion;
56
- const error = new VersionMismatchError(targetVersion, packageVersions);
57
- // eslint-disable-next-line no-console
58
- console.error(error);
59
- }
60
- versionCheckTimeout = null;
61
- }, timeout);
62
- };
63
-
64
- export { assertPackageVersion };
@@ -1 +0,0 @@
1
- {"version":3,"file":"assertPackageVersion.d.ts","sourceRoot":"","sources":["../../../../../packages/assert-package-version/src/assertPackageVersion/assertPackageVersion.ts"],"names":[],"mappings":"AAYA;;;;;;GAMG;AACH,eAAO,MAAM,oBAAoB,gBAClB,MAAM,WACV,MAAM,KACd,IAuCF,CAAC;AAIF,eAAO,MAAM,wBAAwB,QAAO,IAO3C,CAAC;AAEF,eAAO,MAAM,sBAAsB,QAAO,MAAM,CAAC,OAAO,GAAG,IACtC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../packages/assert-package-version/src/assertPackageVersion/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"VersionMismatchError.d.ts","sourceRoot":"","sources":["../../../../../packages/assert-package-version/src/errors/VersionMismatchError.ts"],"names":[],"mappings":"AAAA,qBAAa,oBAAqB,SAAQ,KAAK;gBACjC,aAAa,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;CA0B3E"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../packages/assert-package-version/src/exports/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC"}
File without changes
File without changes
File without changes