Update javascript flowed client's package-lock.json file (#10225)

* add @turkeylurkey as microprofile template creator

* update package-lock.json

* rearrange order, update samples
This commit is contained in:
William Cheng
2021-08-22 13:14:42 +08:00
committed by GitHub
parent e89e19e43e
commit 845ce72ecb
6 changed files with 7809 additions and 1233 deletions

View File

@@ -884,6 +884,7 @@ Here is a list of template creators:
* Java (Google APIs Client Library): @charlescapps
* Java (Rest-assured): @viclovsky
* Java (Java 11 Native HTTP client): @bbdouglas
* Java (MicroProfile): @turkeylurkey
* Java (Apache HttpClient): @harrywhite4
* Javascript/NodeJS: @jfiala
* Javascript (Apollo DataSource): @erithmetic

View File

@@ -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"
}
}

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"
},
"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"
}
}

View File

@@ -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