This commit is contained in:
William Cheng 2021-08-22 13:15:28 +08:00
commit a6ba8d58d4
5 changed files with 7808 additions and 1233 deletions

View File

@ -24,8 +24,8 @@
}, },
{{/npmRepository}} {{/npmRepository}}
"dependencies": { "dependencies": {
"portable-fetch": "^3.0.0", "node-fetch": ">=2.6.1",
"node-fetch": ">=2.6.1" "portable-fetch": "^3.0.0"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.0.0", "@babel/cli": "^7.0.0",
@ -34,7 +34,7 @@
"@babel/preset-flow": "^7.0.0", "@babel/preset-flow": "^7.0.0",
"babel-preset-react-app": "^7.0.0", "babel-preset-react-app": "^7.0.0",
"flow-copy-source": "^2.0.0", "flow-copy-source": "^2.0.0",
"rimraf": "^2.6.2", "lodash": ">=4.17.19",
"lodash": ">=4.17.19" "rimraf": "^2.6.2"
} }
} }

View File

@ -1 +1 @@
5.2.0-SNAPSHOT 5.3.0-SNAPSHOT

File diff suppressed because it is too large Load Diff

View File

@ -19,8 +19,8 @@
"build:flow": "flow-copy-source -v -i '**/__tests__/**' src lib" "build:flow": "flow-copy-source -v -i '**/__tests__/**' src lib"
}, },
"dependencies": { "dependencies": {
"portable-fetch": "^3.0.0", "node-fetch": ">=2.6.1",
"node-fetch": ">=2.6.1" "portable-fetch": "^3.0.0"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.0.0", "@babel/cli": "^7.0.0",
@ -29,7 +29,7 @@
"@babel/preset-flow": "^7.0.0", "@babel/preset-flow": "^7.0.0",
"babel-preset-react-app": "^7.0.0", "babel-preset-react-app": "^7.0.0",
"flow-copy-source": "^2.0.0", "flow-copy-source": "^2.0.0",
"rimraf": "^2.6.2", "lodash": ">=4.17.19",
"lodash": ">=4.17.19" "rimraf": "^2.6.2"
} }
} }

View File

@ -93,7 +93,6 @@ export type ApiResponse = {
message?: string; message?: string;
} }
/** /**
* A category for a pet * A category for a pet
* @export * @export
@ -114,7 +113,6 @@ export type Category = {
} }
export type OrderStatusEnum = 'placed' | 'approved' | 'delivered'; export type OrderStatusEnum = 'placed' | 'approved' | 'delivered';
/** /**
* An order for a pets from the pet store * An order for a pets from the pet store
@ -160,7 +158,6 @@ export type Order = {
} }
export type PetStatusEnum = 'available' | 'pending' | 'sold'; export type PetStatusEnum = 'available' | 'pending' | 'sold';
/** /**
* A pet for sale in the pet store * A pet for sale in the pet store
@ -205,7 +202,6 @@ export type Pet = {
status?: PetStatusEnum; status?: PetStatusEnum;
} }
/** /**
* A tag for a pet * A tag for a pet
* @export * @export
@ -225,7 +221,6 @@ export type Tag = {
name?: string; name?: string;
} }
/** /**
* A User who is purchasing from the pet store * A User who is purchasing from the pet store
* @export * @export
@ -283,7 +278,6 @@ export type User = {
/** /**
* PetApi - fetch parameter creator * PetApi - fetch parameter creator
* @export * @export