Skip to content

Commit 018bf60

Browse files
chore(release): 1.14.8 [skip ci]
## [1.14.8](1.14.7...1.14.8) (2024-05-07) ### Bug Fixes * use deployed url for json schema meta schema ([370d5ce](370d5ce))
1 parent e80587c commit 018bf60

File tree

5 files changed

+28
-5
lines changed

5 files changed

+28
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.14.8](https://github.com/open-rpc/meta-schema/compare/1.14.7...1.14.8) (2024-05-07)
2+
3+
4+
### Bug Fixes
5+
6+
* use deployed url for json schema meta schema ([370d5ce](https://github.com/open-rpc/meta-schema/commit/370d5cee0f26b00f73e618a38d12b82297374c75))
7+
18
## [1.14.7](https://github.com/open-rpc/meta-schema/compare/1.14.6...1.14.7) (2024-05-07)
29

310

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ export interface PatternProperties { [key: string]: any; }
161161
export type DependenciesSet = JSONSchema | StringArray;
162162
export interface Dependencies { [key: string]: any; }
163163
export type Enum = AlwaysTrue[];
164-
export type SimpleTypes = any;
164+
export type SimpleTypes = "array" | "boolean" | "integer" | "null" | "number" | "object" | "string";
165165
export type ArrayOfSimpleTypes = SimpleTypes[];
166166
export type Type = SimpleTypes | ArrayOfSimpleTypes;
167167
export type Format = string;

index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,14 @@ class MethodObjectParamStructure(Enum):
206206

207207
Enum = NewType("Enum", List[AlwaysTrue])
208208

209-
SimpleTypes = NewType("SimpleTypes", Any)
209+
class SimpleTypes(Enum):
210+
Array = 0
211+
Boolean = 1
212+
Integer = 2
213+
Null = 3
214+
Number = 4
215+
Object = 5
216+
String = 6
210217

211218
ArrayOfSimpleTypes = NewType("ArrayOfSimpleTypes", List[SimpleTypes])
212219

openrpc_document.go

Lines changed: 11 additions & 2 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)