Skip to content

Commit

Permalink
chore(release): 1.14.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.14.0](1.13.20...1.14.0) (2020-11-10)

### Bug Fixes

* update dev deps ([c0671e9](c0671e9))

### Features

* update to new sem rel trans ([5112e9b](5112e9b))
  • Loading branch information
openrpc-bastion authored and semantic-release-bot committed Nov 10, 2020
1 parent 3be9851 commit ee00261
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 6 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# [1.14.0](https://github.com/open-rpc/meta-schema/compare/1.13.20...1.14.0) (2020-11-10)


### Bug Fixes

* update dev deps ([c0671e9](https://github.com/open-rpc/meta-schema/commit/c0671e97836865839593bbd167b5d3b653274fec))


### Features

* update to new sem rel trans ([5112e9b](https://github.com/open-rpc/meta-schema/commit/5112e9b0d8758049a853edca584b04b2412606bc))

## [1.13.20](https://github.com/open-rpc/meta-schema/compare/1.13.19...1.13.20) (2020-10-29)


Expand Down
10 changes: 9 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -280,13 +280,21 @@ export type LinkObjectSummary = string;
export type LinkObjectMethod = string;
export type LinkObjectDescription = string;
export type LinkObjectParams = any;
export interface LinkObjectServer {
url: ServerObjectUrl;
name?: ServerObjectName;
description?: ServerObjectDescription;
summary?: ServerObjectSummary;
variables?: ServerObjectVariables;
[regex: string]: SpecificationExtension | any;
}
export interface LinkObject {
name?: LinkObjectName;
summary?: LinkObjectSummary;
method?: LinkObjectMethod;
description?: LinkObjectDescription;
params?: LinkObjectParams;
server?: ServerObject;
server?: LinkObjectServer;
[regex: string]: SpecificationExtension | any;
}
export type LinkOrReference = LinkObject | ReferenceObject;
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 @@ -314,13 +314,20 @@ class ErrorObject(TypedDict):

LinkObjectParams = NewType("LinkObjectParams", Any)

class LinkObjectServer(TypedDict):
url: Optional[ServerObjectUrl]
name: Optional[ServerObjectName]
description: Optional[ServerObjectDescription]
summary: Optional[ServerObjectSummary]
variables: Optional[ServerObjectVariables]

class LinkObject(TypedDict):
name: Optional[LinkObjectName]
summary: Optional[LinkObjectSummary]
method: Optional[LinkObjectMethod]
description: Optional[LinkObjectDescription]
params: Optional[LinkObjectParams]
server: Optional[ServerObject]
server: Optional[LinkObjectServer]

LinkOrReference = NewType("LinkOrReference", Union[LinkObject, ReferenceObject])

Expand Down
10 changes: 9 additions & 1 deletion index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -360,13 +360,21 @@ pub type LinkObjectMethod = String;
pub type LinkObjectDescription = String;
pub type LinkObjectParams = serde_json::Value;
#[derive(Serialize, Deserialize)]
pub struct LinkObjectServer {
pub(crate) url: ServerObjectUrl,
pub(crate) name: Option<ServerObjectName>,
pub(crate) description: Option<ServerObjectDescription>,
pub(crate) summary: Option<ServerObjectSummary>,
pub(crate) variables: Option<ServerObjectVariables>,
}
#[derive(Serialize, Deserialize)]
pub struct LinkObject {
pub(crate) name: Option<LinkObjectName>,
pub(crate) summary: Option<LinkObjectSummary>,
pub(crate) method: Option<LinkObjectMethod>,
pub(crate) description: Option<LinkObjectDescription>,
pub(crate) params: Option<LinkObjectParams>,
pub(crate) server: Option<ServerObject>,
pub(crate) server: Option<LinkObjectServer>,
}
#[derive(Serialize, Deserialize)]
pub enum LinkOrReference {
Expand Down
11 changes: 9 additions & 2 deletions openrpc_document.go

Large diffs are not rendered by default.

0 comments on commit ee00261

Please sign in to comment.