From 8fa2165242985281a0a895e64e8600baa5288e77 Mon Sep 17 00:00:00 2001 From: Zane Starr Date: Mon, 24 Feb 2025 19:44:12 -0800 Subject: [PATCH 1/2] fix: add missing web export --- src/index-web.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/index-web.ts b/src/index-web.ts index 02ac1eac..9de3f7d5 100644 --- a/src/index-web.ts +++ b/src/index-web.ts @@ -14,7 +14,8 @@ import { } from "./method-call-validator"; import fetchUrlSchema from "./get-open-rpc-document-from-url"; import { TGetOpenRPCDocument } from "./get-open-rpc-document"; - +import getDocumentExtendedMetaSchema from "./get-document-extended-metaschema"; +import getExtendedMetaSchema from "./get-extended-metaschema"; const noop: TGetOpenRPCDocument = (schema: string) => { return Promise.reject(`Not Implemented, passed: ${schema}`); }; @@ -26,6 +27,8 @@ export { generateMethodParamId, generateMethodResultId, validateOpenRPCDocument, + getDocumentExtendedMetaSchema, + getExtendedMetaSchema, MethodNotFoundError, MethodCallValidator, ParameterValidationError, From a390acf331df68d3b3233bac3f1726fd2c1e10d4 Mon Sep 17 00:00:00 2001 From: openrpc-bastion Date: Tue, 25 Feb 2025 03:53:39 +0000 Subject: [PATCH 2/2] chore(release): 2.1.2 [skip ci] ## [2.1.2](https://github.com/open-rpc/schema-utils-js/compare/2.1.1...2.1.2) (2025-02-25) ### Bug Fixes * add missing web export ([8fa2165](https://github.com/open-rpc/schema-utils-js/commit/8fa2165242985281a0a895e64e8600baa5288e77)) --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04058379..002c2c88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [2.1.2](https://github.com/open-rpc/schema-utils-js/compare/2.1.1...2.1.2) (2025-02-25) + + +### Bug Fixes + +* add missing web export ([8fa2165](https://github.com/open-rpc/schema-utils-js/commit/8fa2165242985281a0a895e64e8600baa5288e77)) + ## [2.1.1](https://github.com/open-rpc/schema-utils-js/compare/2.1.0...2.1.1) (2025-02-24)