Skip to content

Commit

Permalink
chore(release): 1.14.8 [skip ci]
Browse files Browse the repository at this point in the history
## [1.14.8](1.14.7...1.14.8) (2024-05-07)

### Bug Fixes

* use deployed url for json schema meta schema ([370d5ce](370d5ce))
  • Loading branch information
openrpc-bastion authored and semantic-release-bot committed May 7, 2024
1 parent e80587c commit 018bf60
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.14.8](https://github.com/open-rpc/meta-schema/compare/1.14.7...1.14.8) (2024-05-07)


### Bug Fixes

* use deployed url for json schema meta schema ([370d5ce](https://github.com/open-rpc/meta-schema/commit/370d5cee0f26b00f73e618a38d12b82297374c75))

## [1.14.7](https://github.com/open-rpc/meta-schema/compare/1.14.6...1.14.7) (2024-05-07)


Expand Down
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export interface PatternProperties { [key: string]: any; }
export type DependenciesSet = JSONSchema | StringArray;
export interface Dependencies { [key: string]: any; }
export type Enum = AlwaysTrue[];
export type SimpleTypes = any;
export type SimpleTypes = "array" | "boolean" | "integer" | "null" | "number" | "object" | "string";
export type ArrayOfSimpleTypes = SimpleTypes[];
export type Type = SimpleTypes | ArrayOfSimpleTypes;
export type Format = string;
Expand Down
2 changes: 1 addition & 1 deletion index.js

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion index.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,14 @@ class MethodObjectParamStructure(Enum):

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

SimpleTypes = NewType("SimpleTypes", Any)
class SimpleTypes(Enum):
Array = 0
Boolean = 1
Integer = 2
Null = 3
Number = 4
Object = 5
String = 6

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

Expand Down
13 changes: 11 additions & 2 deletions openrpc_document.go

Large diffs are not rendered by default.

0 comments on commit 018bf60

Please sign in to comment.