bump-cli 2.9.8 → 2.9.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -88,7 +88,7 @@ $ bump --help
88
88
  The Bump.sh CLI is used to interact with your API documentation hosted on Bump.sh by using the API of developers.bump.sh
89
89
 
90
90
  VERSION
91
- bump-cli/2.9.5 linux-x64 node-v20.18.1
91
+ bump-cli/x.y.z linux-x64 node-v20+
92
92
 
93
93
  USAGE
94
94
  $ bump [COMMAND]
@@ -0,0 +1,10 @@
1
+ import type { JSONSchema4, JSONSchema7 } from 'json-schema';
2
+ declare const _default: {
3
+ schemas: {
4
+ '2.0': JSONSchema4;
5
+ '3.0': JSONSchema4;
6
+ '3.1': JSONSchema7;
7
+ '3.2': JSONSchema7;
8
+ };
9
+ };
10
+ export default _default;
@@ -0,0 +1,14 @@
1
+ // All spec version definitions are copied from the official
2
+ // spec repo https://spec.openapis.org/oas/
3
+ import schemaV20 from './v2.0/schema.json' with { type: 'json' };
4
+ import schemaV30 from './v3.0/schema.json' with { type: 'json' };
5
+ import schemaV31 from './v3.1/schema.json' with { type: 'json' };
6
+ import schemaV32 from './v3.2/schema.json' with { type: 'json' };
7
+ export default {
8
+ schemas: {
9
+ '2.0': schemaV20,
10
+ '3.0': schemaV30,
11
+ '3.1': schemaV31,
12
+ '3.2': schemaV32,
13
+ },
14
+ };