Skip to content

Commit

Permalink
chore(release): 1.14.3 [skip ci]
Browse files Browse the repository at this point in the history
## [1.14.3](1.14.2...1.14.3) (2023-02-01)

### Bug Fixes

* big bump of the deps ([965ed1e](965ed1e))
* json-schema-tools/semantic-release-transpiler changed outpath ([45ccbd8](45ccbd8))
* **methodObject:** remove result as required ([37cb075](37cb075))
* npm audit fix ([ccbd44f](ccbd44f))
* npm audit fix and update other dev deps ([6272462](6272462))
* **release:** update node and circle images ([4a1850a](4a1850a))
* update package.lock ([5b832a7](5b832a7))
* update sem rel deps ([c7bc829](c7bc829))
* use deployment url for metaschema ([f8cd870](f8cd870))
  • Loading branch information
openrpc-bastion authored and semantic-release-bot committed Feb 1, 2023
1 parent 66a3295 commit 701f849
Show file tree
Hide file tree
Showing 5 changed files with 149 additions and 109 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## [1.14.3](https://github.com/open-rpc/meta-schema/compare/1.14.2...1.14.3) (2023-02-01)


### Bug Fixes

* big bump of the deps ([965ed1e](https://github.com/open-rpc/meta-schema/commit/965ed1ecf10f8a24db8c38d1a1c2bc78bde3005b))
* json-schema-tools/semantic-release-transpiler changed outpath ([45ccbd8](https://github.com/open-rpc/meta-schema/commit/45ccbd8eaba4a28683c85ce4aed252dfff2d5a0c))
* **methodObject:** remove result as required ([37cb075](https://github.com/open-rpc/meta-schema/commit/37cb0750a443124d8202cd310927e925629b9859))
* npm audit fix ([ccbd44f](https://github.com/open-rpc/meta-schema/commit/ccbd44f91363600e6bf481d9ced1fc29f7655fcf))
* npm audit fix and update other dev deps ([6272462](https://github.com/open-rpc/meta-schema/commit/6272462cade414c31a5cf36c457d7a0b8f20ab16))
* **release:** update node and circle images ([4a1850a](https://github.com/open-rpc/meta-schema/commit/4a1850a301b27f03407f9c30905a30db67442dc0))
* update package.lock ([5b832a7](https://github.com/open-rpc/meta-schema/commit/5b832a78d6de45a0d28758c4e2c30280a1d1c2f8))
* update sem rel deps ([c7bc829](https://github.com/open-rpc/meta-schema/commit/c7bc829a61a44e2aeeb318fcedef0eaf8a92b43a))
* use deployment url for metaschema ([f8cd870](https://github.com/open-rpc/meta-schema/commit/f8cd8704cdaf3e30fe198388252f70225817fc69))

## [1.14.2](https://github.com/open-rpc/meta-schema/compare/1.14.1...1.14.2) (2021-04-16)


Expand Down
38 changes: 24 additions & 14 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export type Openrpc = "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.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 @@ -64,6 +64,7 @@ export interface ServerObject {
variables?: ServerObjectVariables;
[regex: string]: SpecificationExtension | any;
}
type AlwaysFalse = any;
export type Servers = ServerObject[];
/**
*
Expand Down Expand Up @@ -124,13 +125,13 @@ export type ExclusiveMinimum = number;
export type NonNegativeInteger = number;
export type NonNegativeIntegerDefaultZero = number;
export type Pattern = string;
export type SchemaArray = JSONSchema[];
export type SchemaArray = Undefined[];
/**
*
* @default true
*
*/
export type Items = JSONSchema | SchemaArray;
export type Items = Undefined | SchemaArray;
export type UniqueItems = boolean;
export type StringDoaGddGA = string;
/**
Expand All @@ -157,7 +158,7 @@ export interface Properties { [key: string]: any; }
*
*/
export interface PatternProperties { [key: string]: any; }
export type DependenciesSet = JSONSchema | StringArray;
export type DependenciesSet = Undefined | StringArray;
export interface Dependencies { [key: string]: any; }
export type Enum = AlwaysTrue[];
export type SimpleTypes = any;
Expand All @@ -184,34 +185,34 @@ export interface JSONSchemaObject {
maxLength?: NonNegativeInteger;
minLength?: NonNegativeIntegerDefaultZero;
pattern?: Pattern;
additionalItems?: JSONSchema;
additionalItems?: Undefined;
items?: Items;
maxItems?: NonNegativeInteger;
minItems?: NonNegativeIntegerDefaultZero;
uniqueItems?: UniqueItems;
contains?: JSONSchema;
contains?: Undefined;
maxProperties?: NonNegativeInteger;
minProperties?: NonNegativeIntegerDefaultZero;
required?: StringArray;
additionalProperties?: JSONSchema;
additionalProperties?: Undefined;
definitions?: Definitions;
properties?: Properties;
patternProperties?: PatternProperties;
dependencies?: Dependencies;
propertyNames?: JSONSchema;
propertyNames?: Undefined;
const?: AlwaysTrue;
enum?: Enum;
type?: Type;
format?: Format;
contentMediaType?: ContentMediaType;
contentEncoding?: ContentEncoding;
if?: JSONSchema;
then?: JSONSchema;
else?: JSONSchema;
if?: Undefined;
then?: Undefined;
else?: Undefined;
allOf?: SchemaArray;
anyOf?: SchemaArray;
oneOf?: SchemaArray;
not?: JSONSchema;
not?: Undefined;
[k: string]: any;
}
/**
Expand All @@ -232,7 +233,7 @@ export interface ContentDescriptorObject {
name: ContentDescriptorObjectName;
description?: ContentDescriptorObjectDescription;
summary?: ContentDescriptorObjectSummary;
schema: JSONSchema;
schema: Undefined;
required?: ContentDescriptorObjectRequired;
deprecated?: ContentDescriptorObjectDeprecated;
[regex: string]: SpecificationExtension | any;
Expand Down Expand Up @@ -333,7 +334,7 @@ export interface MethodObject {
tags?: MethodObjectTags;
paramStructure?: MethodObjectParamStructure;
params: MethodObjectParams;
result: MethodObjectResult;
result?: MethodObjectResult;
errors?: MethodObjectErrors;
links?: MethodObjectLinks;
examples?: MethodObjectExamples;
Expand All @@ -360,12 +361,21 @@ export interface Components {
tags?: TagComponents;
[k: string]: any;
}
/**
*
* JSON Schema URI (used by some editors)
*
* @default https://meta.open-rpc.org/
*
*/
export type StringPBC4JHUy = string;
export interface OpenrpcDocument {
openrpc: Openrpc;
info: InfoObject;
externalDocs?: ExternalDocumentationObject;
servers?: Servers;
methods: Methods;
components?: Components;
$schema?: StringPBC4JHUy;
[regex: string]: SpecificationExtension | any;
}
Loading

0 comments on commit 701f849

Please sign in to comment.