chore: update demo bundle

This commit is contained in:
Alex Varchuk 2022-02-04 12:00:46 +02:00
parent 615e3b6f8e
commit 504fd2cafc
3 changed files with 1914 additions and 3 deletions

47
.gitignore vendored Normal file
View File

@ -0,0 +1,47 @@
### Linux ###
*~
# KDE directory preferences
.directory
# OS X folder attributes
.DS_Store
# Linux trash folder which might appear on any partition or disk
.Trash-*
demo/dist/
### Node ###
# Logs
logs
*.log
npm-debug.log*
# Dependency directory
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
node_modules
lib/
stats.json
cypress/
bundles/
typings/*
!typings/styled-patch.d.ts
cli/index.js
/benchmark/revisions
/coverage
.ghpages-tmp
stats.json
yarn.lock
.idea
.vscode
.eslintcache

View File

@ -377,7 +377,9 @@ paths:
application/xml: application/xml:
schema: schema:
type: array type: array
maxItems: 999
items: items:
maxItems: 111
$ref: '#/components/schemas/Pet' $ref: '#/components/schemas/Pet'
'400': '400':
description: Invalid tag value description: Invalid tag value
@ -1193,7 +1195,7 @@ x-webhooks:
summary: New pet summary: New pet
description: Information about a new pet in the systems description: Information about a new pet in the systems
operationId: newPet operationId: newPet
tags: tags:
- pet - pet
requestBody: requestBody:
content: content:
@ -1202,4 +1204,4 @@ x-webhooks:
$ref: "#/components/schemas/Pet" $ref: "#/components/schemas/Pet"
responses: responses:
"200": "200":
description: Return a 200 status to indicate that the data was received successfully description: Return a 200 status to indicate that the data was received successfully

File diff suppressed because one or more lines are too long