CD/CD consolidation
This commit is contained in:
30
devops/tools/__fixtures__/api-compat/new.yaml
Normal file
30
devops/tools/__fixtures__/api-compat/new.yaml
Normal file
@@ -0,0 +1,30 @@
|
||||
openapi: 3.1.0
|
||||
info:
|
||||
title: Demo API
|
||||
version: 1.1.0
|
||||
paths:
|
||||
/foo:
|
||||
get:
|
||||
parameters:
|
||||
- in: query
|
||||
name: tenant
|
||||
required: true
|
||||
responses:
|
||||
"201":
|
||||
description: created
|
||||
/bar:
|
||||
get:
|
||||
responses:
|
||||
"200":
|
||||
description: ok
|
||||
/baz:
|
||||
post:
|
||||
requestBody:
|
||||
required: true
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
type: object
|
||||
responses:
|
||||
"201":
|
||||
description: created
|
||||
29
devops/tools/__fixtures__/api-compat/old.yaml
Normal file
29
devops/tools/__fixtures__/api-compat/old.yaml
Normal file
@@ -0,0 +1,29 @@
|
||||
openapi: 3.1.0
|
||||
info:
|
||||
title: Demo API
|
||||
version: 1.0.0
|
||||
paths:
|
||||
/foo:
|
||||
get:
|
||||
parameters:
|
||||
- in: query
|
||||
name: filter
|
||||
required: false
|
||||
responses:
|
||||
"200":
|
||||
description: ok
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
type: string
|
||||
/baz:
|
||||
post:
|
||||
requestBody:
|
||||
required: false
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
type: object
|
||||
responses:
|
||||
"201":
|
||||
description: created
|
||||
Reference in New Issue
Block a user