bump-cli
Version:
The Bump CLI is used to interact with your API documentation hosted on Bump.sh by using the APIs of developers.bump.sh
15 lines (14 loc) • 515 B
JavaScript
// All spec version definitions are copied from the official
// spec repo https://spec.openapis.org/oas/
import schemaV20 from './v2.0/schema.json' with { type: 'json' };
import schemaV30 from './v3.0/schema.json' with { type: 'json' };
import schemaV31 from './v3.1/schema.json' with { type: 'json' };
import schemaV32 from './v3.2/schema.json' with { type: 'json' };
export default {
schemas: {
'2.0': schemaV20,
'3.0': schemaV30,
'3.1': schemaV31,
'3.2': schemaV32,
},
};