Skip to content

Commit

Permalink
chore(release): 1.14.6 [skip ci]
Browse files Browse the repository at this point in the history
## [1.14.6](open-rpc/meta-schema@1.14.5...1.14.6) (2023-07-04)

### Bug Fixes

* force a release ([037cf0f](open-rpc@037cf0f))
* give $schema a title ([75cea59](open-rpc@75cea59)), closes [open-rpc#445](open-rpc#445)
* remove dependabot badge ([ec1fdb6](open-rpc@ec1fdb6))
  • Loading branch information
openrpc-bastion authored and semantic-release-bot committed Jul 4, 2023
1 parent fa6c1b6 commit 274bbb4
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 57 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [1.14.6](https://github.com/open-rpc/meta-schema/compare/1.14.5...1.14.6) (2023-07-04)


### Bug Fixes

* force a release ([037cf0f](https://github.com/open-rpc/meta-schema/commit/037cf0f83f9dd25dad4db8cfad0670ecb4da331a))
* give $schema a title ([75cea59](https://github.com/open-rpc/meta-schema/commit/75cea59884c1cb0c28509000b93763f1e9c97688)), closes [#445](https://github.com/open-rpc/meta-schema/issues/445)
* remove dependabot badge ([ec1fdb6](https://github.com/open-rpc/meta-schema/commit/ec1fdb63c6c34f547b01399e8b9b363798816771))

## [1.14.5](https://github.com/open-rpc/meta-schema/compare/1.14.4...1.14.5) (2023-02-06)


Expand Down
6 changes: 3 additions & 3 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export type Openrpc = "1.3.0" | "1.2.6" | "1.2.5" | "1.2.4" | "1.2.3" | "1.2.2" | "1.2.1" | "1.2.0" | "1.1.12" | "1.1.11" | "1.1.10" | "1.1.9" | "1.1.8" | "1.1.7" | "1.1.6" | "1.1.5" | "1.1.4" | "1.1.3" | "1.1.2" | "1.1.1" | "1.1.0" | "1.0.0" | "1.0.0-rc1" | "1.0.0-rc0";
export type Openrpc = "1.3.2" | "1.3.1" | "1.3.0" | "1.2.6" | "1.2.5" | "1.2.4" | "1.2.3" | "1.2.2" | "1.2.1" | "1.2.0" | "1.1.12" | "1.1.11" | "1.1.10" | "1.1.9" | "1.1.8" | "1.1.7" | "1.1.6" | "1.1.5" | "1.1.4" | "1.1.3" | "1.1.2" | "1.1.1" | "1.1.0" | "1.0.0" | "1.0.0-rc1" | "1.0.0-rc0";
export type InfoObjectProperties = string;
export type InfoObjectDescription = string;
export type InfoObjectTermsOfService = string;
Expand Down Expand Up @@ -368,14 +368,14 @@ export interface Components {
* @default https://meta.open-rpc.org/
*
*/
export type StringPBC4JHUy = string;
export type MetaSchema = string;
export interface OpenrpcDocument {
openrpc: Openrpc;
info: InfoObject;
externalDocs?: ExternalDocumentationObject;
servers?: Servers;
methods: Methods;
components?: Components;
$schema?: StringPBC4JHUy;
$schema?: MetaSchema;
[regex: string]: SpecificationExtension | any;
}
2 changes: 1 addition & 1 deletion index.js

Large diffs are not rendered by default.

54 changes: 28 additions & 26 deletions index.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,32 @@
from typing import Union

class Openrpc(Enum):
OneThreeZero = 0
OneTwoSix = 1
OneTwoFive = 2
OneTwoFour = 3
OneTwoThree = 4
OneTwoTwo = 5
OneTwoOne = 6
OneTwoZero = 7
OneOneOneTwo = 8
OneOneOneOne = 9
OneOneOneZero = 10
OneOneNine = 11
OneOneEight = 12
OneOneSeven = 13
OneOneSix = 14
OneOneFive = 15
OneOneFour = 16
OneOneThree = 17
OneOneTwo = 18
OneOneOne = 19
OneOneZero = 20
OneZeroZero = 21
OneZeroZeroRcOne = 22
OneZeroZeroRcZero = 23
OneThreeTwo = 0
OneThreeOne = 1
OneThreeZero = 2
OneTwoSix = 3
OneTwoFive = 4
OneTwoFour = 5
OneTwoThree = 6
OneTwoTwo = 7
OneTwoOne = 8
OneTwoZero = 9
OneOneOneTwo = 10
OneOneOneOne = 11
OneOneOneZero = 12
OneOneNine = 13
OneOneEight = 14
OneOneSeven = 15
OneOneSix = 16
OneOneFive = 17
OneOneFour = 18
OneOneThree = 19
OneOneTwo = 20
OneOneOne = 21
OneOneZero = 22
OneZeroZero = 23
OneZeroZeroRcOne = 24
OneZeroZeroRcZero = 25

InfoObjectProperties = NewType("InfoObjectProperties", str)

Expand Down Expand Up @@ -414,7 +416,7 @@ class Components(TypedDict):
tags: Optional[TagComponents]
"""JSON Schema URI (used by some editors)
"""
StringPBC4JHUy = NewType("StringPBC4JHUy", str)
MetaSchema = NewType("MetaSchema", str)

class OpenrpcDocument(TypedDict):
openrpc: undefined
Expand All @@ -423,4 +425,4 @@ class OpenrpcDocument(TypedDict):
servers: Optional[Servers]
methods: undefined
components: Optional[Components]
$schema: Optional[StringPBC4JHUy]
$schema: Optional[MetaSchema]
56 changes: 29 additions & 27 deletions openrpc_document.go

Large diffs are not rendered by default.

0 comments on commit 274bbb4

Please sign in to comment.