mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-07-03 06:00:52 +00:00
Merge branch 'master' of https://github.com/openapitools/openapi-generator
This commit is contained in:
commit
a6ba8d58d4
@ -24,8 +24,8 @@
|
||||
},
|
||||
{{/npmRepository}}
|
||||
"dependencies": {
|
||||
"portable-fetch": "^3.0.0",
|
||||
"node-fetch": ">=2.6.1"
|
||||
"node-fetch": ">=2.6.1",
|
||||
"portable-fetch": "^3.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.0.0",
|
||||
@ -34,7 +34,7 @@
|
||||
"@babel/preset-flow": "^7.0.0",
|
||||
"babel-preset-react-app": "^7.0.0",
|
||||
"flow-copy-source": "^2.0.0",
|
||||
"rimraf": "^2.6.2",
|
||||
"lodash": ">=4.17.19"
|
||||
"lodash": ">=4.17.19",
|
||||
"rimraf": "^2.6.2"
|
||||
}
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
5.2.0-SNAPSHOT
|
||||
5.3.0-SNAPSHOT
|
File diff suppressed because it is too large
Load Diff
@ -19,8 +19,8 @@
|
||||
"build:flow": "flow-copy-source -v -i '**/__tests__/**' src lib"
|
||||
},
|
||||
"dependencies": {
|
||||
"portable-fetch": "^3.0.0",
|
||||
"node-fetch": ">=2.6.1"
|
||||
"node-fetch": ">=2.6.1",
|
||||
"portable-fetch": "^3.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.0.0",
|
||||
@ -29,7 +29,7 @@
|
||||
"@babel/preset-flow": "^7.0.0",
|
||||
"babel-preset-react-app": "^7.0.0",
|
||||
"flow-copy-source": "^2.0.0",
|
||||
"rimraf": "^2.6.2",
|
||||
"lodash": ">=4.17.19"
|
||||
"lodash": ">=4.17.19",
|
||||
"rimraf": "^2.6.2"
|
||||
}
|
||||
}
|
||||
|
@ -93,7 +93,6 @@ export type ApiResponse = {
|
||||
message?: string;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* A category for a pet
|
||||
* @export
|
||||
@ -114,7 +113,6 @@ export type Category = {
|
||||
}
|
||||
|
||||
|
||||
|
||||
export type OrderStatusEnum = 'placed' | 'approved' | 'delivered';
|
||||
/**
|
||||
* An order for a pets from the pet store
|
||||
@ -160,7 +158,6 @@ export type Order = {
|
||||
}
|
||||
|
||||
|
||||
|
||||
export type PetStatusEnum = 'available' | 'pending' | 'sold';
|
||||
/**
|
||||
* A pet for sale in the pet store
|
||||
@ -205,7 +202,6 @@ export type Pet = {
|
||||
status?: PetStatusEnum;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* A tag for a pet
|
||||
* @export
|
||||
@ -225,7 +221,6 @@ export type Tag = {
|
||||
name?: string;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* A User who is purchasing from the pet store
|
||||
* @export
|
||||
@ -283,7 +278,6 @@ export type User = {
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* PetApi - fetch parameter creator
|
||||
* @export
|
||||
|
Loading…
x
Reference in New Issue
Block a user