Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
ui-middleware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Open Source Software
OX App Suite
Core
ui-middleware
Commits
ec2822a3
Commit
ec2822a3
authored
3 years ago
by
david.bauer
Committed by
david.bauer
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add @open-xchange/metrics and update dependencies
parent
4a45145b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
package.json
+2
-3
2 additions, 3 deletions
package.json
src/createApp.js
+4
-5
4 additions, 5 deletions
src/createApp.js
yarn.lock
+87
-86
87 additions, 86 deletions
yarn.lock
with
93 additions
and
94 deletions
package.json
+
2
−
3
View file @
ec2822a3
...
@@ -16,14 +16,13 @@
...
@@ -16,14 +16,13 @@
"dependencies"
:
{
"dependencies"
:
{
"
@cloudnative/health-connect
"
:
"
^2.1.0
"
,
"
@cloudnative/health-connect
"
:
"
^2.1.0
"
,
"
@open-xchange/logging
"
:
"
^0.0.9
"
,
"
@open-xchange/logging
"
:
"
^0.0.9
"
,
"
@open-xchange/metrics
"
:
"
^0.0.1
"
,
"
dotenv-defaults
"
:
"
^5.0.0
"
,
"
dotenv-defaults
"
:
"
^5.0.0
"
,
"
eslint-config-standard
"
:
"
^16.0.2
"
,
"
eslint-config-standard
"
:
"
^16.0.2
"
,
"
express
"
:
"
^4.17.1
"
,
"
express
"
:
"
^4.17.1
"
,
"
express-prom-bundle
"
:
"
^6.4.1
"
,
"
helmet
"
:
"
^5.0.1
"
,
"
helmet
"
:
"
^5.0.1
"
,
"
js-yaml
"
:
"
^4.0.0
"
,
"
js-yaml
"
:
"
^4.0.0
"
,
"
node-fetch
"
:
"
^3.1.0
"
,
"
node-fetch
"
:
"
^3.1.0
"
,
"
prom-client
"
:
"
^14.0.1
"
,
"
swagger-ui-express
"
:
"
^4.1.6
"
"
swagger-ui-express
"
:
"
^4.1.6
"
},
},
"devDependencies"
:
{
"devDependencies"
:
{
...
@@ -31,7 +30,7 @@
...
@@ -31,7 +30,7 @@
"
babel-preset-env
"
:
"
^1.7.0
"
,
"
babel-preset-env
"
:
"
^1.7.0
"
,
"
eslint
"
:
"
^8.6.0
"
,
"
eslint
"
:
"
^8.6.0
"
,
"
eslint-plugin-import
"
:
"
^2.22.1
"
,
"
eslint-plugin-import
"
:
"
^2.22.1
"
,
"
eslint-plugin-jest
"
:
"
^2
5.3.4
"
,
"
eslint-plugin-jest
"
:
"
^2
6.0.0
"
,
"
eslint-plugin-node
"
:
"
^11.1.0
"
,
"
eslint-plugin-node
"
:
"
^11.1.0
"
,
"
eslint-plugin-promise
"
:
"
^6.0.0
"
,
"
eslint-plugin-promise
"
:
"
^6.0.0
"
,
"
husky
"
:
"
>=6
"
,
"
husky
"
:
"
>=6
"
,
...
...
This diff is collapsed.
Click to expand it.
src/createApp.js
+
4
−
5
View file @
ec2822a3
...
@@ -11,7 +11,7 @@ import { httpLogger, logger } from './logger.js'
...
@@ -11,7 +11,7 @@ import { httpLogger, logger } from './logger.js'
import
health
from
'
@cloudnative/health-connect
'
import
health
from
'
@cloudnative/health-connect
'
// Prometheus middleware for standard api metrics
// Prometheus middleware for standard api metrics
import
promBundle
from
'
express-prom-bundle
'
import
{
metricsMiddleware
}
from
'
@open-xchange/metrics
'
import
promClient
from
'
prom-client
'
import
promClient
from
'
prom-client
'
// Swagger UI for api-docs
// Swagger UI for api-docs
...
@@ -22,16 +22,15 @@ import { getCSSDependenciesFor, getDependencies, getOxManifests, getVersion, loa
...
@@ -22,16 +22,15 @@ import { getCSSDependenciesFor, getDependencies, getOxManifests, getVersion, loa
import
{
fileCache
}
from
'
./files.js
'
import
{
fileCache
}
from
'
./files.js
'
import
{
getMergedMetadata
}
from
'
./meta.js
'
import
{
getMergedMetadata
}
from
'
./meta.js
'
const
ignorePaths
=
[
'
/ready
'
,
'
/healthy
'
]
const
swaggerDocument
=
yaml
.
load
(
fs
.
readFileSync
(
'
./src/swagger.yaml
'
,
'
utf8
'
))
const
swaggerDocument
=
yaml
.
load
(
fs
.
readFileSync
(
'
./src/swagger.yaml
'
,
'
utf8
'
))
const
bypass
=
(
request
)
=>
ignorePaths
.
includes
(
request
.
path
)
const
metricsMiddleware
=
promBundle
({
bypass
,
includePath
:
true
})
const
startUpTimeGauge
=
new
promClient
.
Gauge
({
const
startUpTimeGauge
=
new
promClient
.
Gauge
({
name
:
'
manifest_service_startup_time
'
,
name
:
'
manifest_service_startup_time
'
,
help
:
'
Time to warm up cache
'
help
:
'
Time to warm up cache
'
})
})
const
metricsMiddlewareInstance
=
metricsMiddleware
()
export
function
createApp
()
{
export
function
createApp
()
{
// The app returned by express() is in fact a JavaScript Function, designed to be passed to Node’s HTTP servers as a callback to handle requests.
// The app returned by express() is in fact a JavaScript Function, designed to be passed to Node’s HTTP servers as a callback to handle requests.
...
@@ -67,7 +66,7 @@ export function createApp () {
...
@@ -67,7 +66,7 @@ export function createApp () {
}))
}))
app
.
use
(
'
/healthy
'
,
health
.
LivenessEndpoint
(
healthCheck
))
app
.
use
(
'
/healthy
'
,
health
.
LivenessEndpoint
(
healthCheck
))
app
.
use
(
'
/ready
'
,
health
.
ReadinessEndpoint
(
healthCheck
))
app
.
use
(
'
/ready
'
,
health
.
ReadinessEndpoint
(
healthCheck
))
app
.
use
(
metricsMiddleware
)
app
.
use
(
metricsMiddleware
Instance
)
app
.
use
(
'
/api-docs
'
,
swaggerUi
.
serve
,
swaggerUi
.
setup
(
swaggerDocument
))
app
.
use
(
'
/api-docs
'
,
swaggerUi
.
serve
,
swaggerUi
.
setup
(
swaggerDocument
))
app
.
use
(
'
/swagger.json
'
,
(
req
,
res
)
=>
res
.
json
(
swaggerDocument
))
app
.
use
(
'
/swagger.json
'
,
(
req
,
res
)
=>
res
.
json
(
swaggerDocument
))
app
.
timeout
=
30000
app
.
timeout
=
30000
...
...
This diff is collapsed.
Click to expand it.
yarn.lock
+
87
−
86
View file @
ec2822a3
...
@@ -15,16 +15,16 @@
...
@@ -15,16 +15,16 @@
integrity sha512-m7OkX0IdKLKPpBlJtF561YJal5y/jyI5fNfWbPxh2D/nbzzGI4qRyrD8xO2jB24u7l+5I2a43scCG2IrfjC50Q==
integrity sha512-m7OkX0IdKLKPpBlJtF561YJal5y/jyI5fNfWbPxh2D/nbzzGI4qRyrD8xO2jB24u7l+5I2a43scCG2IrfjC50Q==
"@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.7.2", "@babel/core@^7.8.0":
"@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.7.2", "@babel/core@^7.8.0":
version "7.16.1
0
"
version "7.16.1
2
"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.16.1
0
.tgz#
ebd034f8e7ac2b6bfcdaa83a161141a646f74b50
"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.16.1
2
.tgz#
5edc53c1b71e54881315923ae2aedea2522bb784
"
integrity sha512-
pbiIdZbCiMx/MM6toR+OfXarYix3uz0oVsnNtfdAGTcCTu3w/JGF8JhirevXLBJUu0WguSZI12qpKnx7EeMyLA
==
integrity sha512-
dK5PtG1uiN2ikk++5OzSYsitZKny4wOCD0nrO4TqnW4BVBTQ2NGS3NgilvT/TEyxTST7LNyWV/T4tXDoD3fOgg
==
dependencies:
dependencies:
"@babel/code-frame" "^7.16.7"
"@babel/code-frame" "^7.16.7"
"@babel/generator" "^7.16.8"
"@babel/generator" "^7.16.8"
"@babel/helper-compilation-targets" "^7.16.7"
"@babel/helper-compilation-targets" "^7.16.7"
"@babel/helper-module-transforms" "^7.16.7"
"@babel/helper-module-transforms" "^7.16.7"
"@babel/helpers" "^7.16.7"
"@babel/helpers" "^7.16.7"
"@babel/parser" "^7.16.1
0
"
"@babel/parser" "^7.16.1
2
"
"@babel/template" "^7.16.7"
"@babel/template" "^7.16.7"
"@babel/traverse" "^7.16.10"
"@babel/traverse" "^7.16.10"
"@babel/types" "^7.16.8"
"@babel/types" "^7.16.8"
...
@@ -152,10 +152,10 @@
...
@@ -152,10 +152,10 @@
chalk "^2.0.0"
chalk "^2.0.0"
js-tokens "^4.0.0"
js-tokens "^4.0.0"
"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.10", "@babel/parser@^7.16.7":
"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.10",
"@babel/parser@^7.16.12",
"@babel/parser@^7.16.7":
version "7.16.1
0
"
version "7.16.1
2
"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.1
0
.tgz#
aba1b1cb9696a24a19f59c41af9cf17d1c716a88
"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.1
2
.tgz#
9474794f9a650cf5e2f892444227f98e28cdf8b6
"
integrity sha512-
Sm/S9Or6nN8uiFsQU1yodyDW3MWXQhFeqzMPM+t8MJjM+pLsnFVxFZzkpXKvUXh+Gz9cbMoYYs484+Jw/NTEFQ
==
integrity sha512-
VfaV15po8RiZssrkPweyvbGVSe4x2y+aciFCgn0n0/SJMR22cwofRV1mtnJQYcSB1wUTaA/X1LnA3es66MCO5A
==
"@babel/plugin-syntax-async-generators@^7.8.4":
"@babel/plugin-syntax-async-generators@^7.8.4":
version "7.8.4"
version "7.8.4"
...
@@ -553,6 +553,14 @@
...
@@ -553,6 +553,14 @@
pino-http "^6.5.0"
pino-http "^6.5.0"
pino-pretty "^7.4.0"
pino-pretty "^7.4.0"
"@open-xchange/metrics@^0.0.1":
version "0.0.1"
resolved "https://registry.yarnpkg.com/@open-xchange/metrics/-/metrics-0.0.1.tgz#2531f053137077e1c89ad1fc42d3ed59df68f2ff"
integrity sha512-Z2gH3USWzXDvZwxhecfZOOT1Ixse7n1aiq1Q87pFAQAyGVZeUJOIgIeCpU2m39SXFlI0Z2hwepa6Eapa+Ujj8g==
dependencies:
express-prom-bundle "^6.4.1"
prom-client "^14.0.1"
"@sindresorhus/is@^0.14.0":
"@sindresorhus/is@^0.14.0":
version "0.14.0"
version "0.14.0"
resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea"
resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea"
...
@@ -654,9 +662,9 @@
...
@@ -654,9 +662,9 @@
integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
"@types/node@*":
"@types/node@*":
version "17.0.1
0
"
version "17.0.1
2
"
resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.1
0
.tgz#
616f16e9d3a2a3d618136b1be244315d95bd7cab
"
resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.1
2
.tgz#
f7aa331b27f08244888c47b7df126184bc2339c5
"
integrity sha512-
S/3xB4KzyFxYGCppyDt68yzBU9ysL88lSdIah4D6cptdcltc4NCPCAMc0+PCpg/lLIyC7IPvj2Z52OJWeIUkog
==
integrity sha512-
4YpbAsnJXWYK/fpTVFlMIcUIho2AYCi4wg5aNPrG1ng7fn/1/RZfCIpRCiBX+12RVa34RluilnvCqD+g3KiSiA
==
"@types/prettier@^2.1.5":
"@types/prettier@^2.1.5":
version "2.4.3"
version "2.4.3"
...
@@ -687,57 +695,50 @@
...
@@ -687,57 +695,50 @@
dependencies:
dependencies:
"@types/yargs-parser" "*"
"@types/yargs-parser" "*"
"@typescript-eslint/experimental-utils@^5.0.0":
"@typescript-eslint/scope-manager@5.10.1":
version "5.10.0"
version "5.10.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.10.0.tgz#e039664f294eb7ab1d3ede7125f5e01be67acc7f"
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.10.1.tgz#f0539c73804d2423506db2475352a4dec36cd809"
integrity sha512-GeQAPqQMI5DVMGOUwGbSR+NdsirryyKOgUFRTWInhlsKUArns/MVnXmPpzxfrzB1nU36cT5WJAwmfCsjoaVBWg==
integrity sha512-Lyvi559Gvpn94k7+ElXNMEnXu/iundV5uFmCUNnftbFrUbAJ1WBoaGgkbOBm07jVZa682oaBU37ao/NGGX4ZDg==
dependencies:
"@typescript-eslint/utils" "5.10.0"
"@typescript-eslint/scope-manager@5.10.0":
version "5.10.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.10.0.tgz#bb5d872e8b9e36203908595507fbc4d3105329cb"
integrity sha512-tgNgUgb4MhqK6DoKn3RBhyZ9aJga7EQrw+2/OiDk5hKf3pTVZWyqBi7ukP+Z0iEEDMF5FDa64LqODzlfE4O/Dg==
dependencies:
dependencies:
"@typescript-eslint/types" "5.10.
0
"
"@typescript-eslint/types" "5.10.
1
"
"@typescript-eslint/visitor-keys" "5.10.
0
"
"@typescript-eslint/visitor-keys" "5.10.
1
"
"@typescript-eslint/types@5.10.
0
":
"@typescript-eslint/types@5.10.
1
":
version "5.10.
0
"
version "5.10.
1
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.10.
0
.tgz#
beb3cb345076f5b088afe996d57bcd1dfddaa75c
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.10.
1
.tgz#
dca9bd4cb8c067fc85304a31f38ec4766ba2d1ea
"
integrity sha512-
wUljCgkqHsMZbw60IbOqT/puLfyqqD5PquGiBo1u1IS3PLxdi3RDGlyf032IJyh+eQoGhz9kzhtZa+VC4eWTl
Q==
integrity sha512-
ZvxQ2QMy49bIIBpTqFiOenucqUyjTQ0WNLhBM6X1fh1NNlYAC6Kxsx8bRTY3jdYsYg44a0Z/uEgQkohbR0H87
Q==
"@typescript-eslint/typescript-estree@5.10.
0
":
"@typescript-eslint/typescript-estree@5.10.
1
":
version "5.10.
0
"
version "5.10.
1
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.10.
0
.tgz#
4be24a3dea0f930bb1397c46187d0efdd955a224
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.10.
1
.tgz#
b268e67be0553f8790ba3fe87113282977adda15
"
integrity sha512-
x+7e5IqfwLwsxTdliHRtlIYkgdtYXzE0CkFeV6ytAqq431ZyxCFzNMNR5sr3WOlIG/ihVZr9K/y71VHTF/DUQA
==
integrity sha512-
PwIGnH7jIueXv4opcwEbVGDATjGPO1dx9RkUl5LlHDSe+FXxPwFL5W/qYd5/NHr7f6lo/vvTrAzd0KlQtRusJQ
==
dependencies:
dependencies:
"@typescript-eslint/types" "5.10.
0
"
"@typescript-eslint/types" "5.10.
1
"
"@typescript-eslint/visitor-keys" "5.10.
0
"
"@typescript-eslint/visitor-keys" "5.10.
1
"
debug "^4.3.2"
debug "^4.3.2"
globby "^11.0.4"
globby "^11.0.4"
is-glob "^4.0.3"
is-glob "^4.0.3"
semver "^7.3.5"
semver "^7.3.5"
tsutils "^3.21.0"
tsutils "^3.21.0"
"@typescript-eslint/utils@5.10.0":
"@typescript-eslint/utils@
^
5.10.0":
version "5.10.
0
"
version "5.10.
1
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.10.
0
.tgz#
c3d152a85da77c400e37281355561c72fb1b5a65
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.10.
1
.tgz#
fa682a33af47080ba2c4368ee0ad2128213a1196
"
integrity sha512-
IGYwlt1CVcFoE2ueW4/ioEwybR60RAdGeiJX/iDAw0t5w0wK3S7QncDwpmsM70nKgGTuVchEWB8lwZwHqPAWRg
==
integrity sha512-
RRmlITiUbLuTRtn/gcPRi4202niF+q7ylFLCKu4c+O/PcpRvZ/nAUwQ2G00bZgpWkhrNLNnvhZLbDn8Ml0qsQw
==
dependencies:
dependencies:
"@types/json-schema" "^7.0.9"
"@types/json-schema" "^7.0.9"
"@typescript-eslint/scope-manager" "5.10.
0
"
"@typescript-eslint/scope-manager" "5.10.
1
"
"@typescript-eslint/types" "5.10.
0
"
"@typescript-eslint/types" "5.10.
1
"
"@typescript-eslint/typescript-estree" "5.10.
0
"
"@typescript-eslint/typescript-estree" "5.10.
1
"
eslint-scope "^5.1.1"
eslint-scope "^5.1.1"
eslint-utils "^3.0.0"
eslint-utils "^3.0.0"
"@typescript-eslint/visitor-keys@5.10.
0
":
"@typescript-eslint/visitor-keys@5.10.
1
":
version "5.10.
0
"
version "5.10.
1
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.10.
0
.tgz#
770215497ad67cd15a572b52089991d5dfe06281
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.10.
1
.tgz#
29102de692f59d7d34ecc457ed59ab5fc558010b
"
integrity sha512-
GMxj0K1uyrFLPKASLmZzCuSddmjZVbVj3Ouy5QVuIGKZopxvOr24JsS7gruz6C3GExE01mublZ3mIBOaon9zu
Q==
integrity sha512-
NjQ0Xinhy9IL979tpoTRuLKxMc0zJC7QVSdeerXs2/QvOy2yRkzX5dRb10X5woNUdJgU8G3nYRDlI33sq1K4Y
Q==
dependencies:
dependencies:
"@typescript-eslint/types" "5.10.
0
"
"@typescript-eslint/types" "5.10.
1
"
eslint-visitor-keys "^3.0.0"
eslint-visitor-keys "^3.0.0"
abab@^2.0.3, abab@^2.0.5:
abab@^2.0.3, abab@^2.0.5:
...
@@ -1815,9 +1816,9 @@ camelcase@^6.2.0:
...
@@ -1815,9 +1816,9 @@ camelcase@^6.2.0:
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
caniuse-lite@^1.0.30000844, caniuse-lite@^1.0.30001286:
caniuse-lite@^1.0.30000844, caniuse-lite@^1.0.30001286:
version "1.0.3000130
1
"
version "1.0.3000130
2
"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.3000130
1
.tgz#
ebc9086026534cab0dab99425d9c3b4425e5f450
"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.3000130
2
.tgz#
da57ce61c51177ef3661eeed7faef392d3790aaa
"
integrity sha512-
csfD/GpHMqgEL3V3uIgosvh+SVIQvCh43SNu9HRbP1lnxkKm1kjDG4f32PP571JplkLjfS+mg2p1gxR7MYrrIA
==
integrity sha512-
YYTMO+tfwvgUN+1ZnRViE53Ma1S/oETg+J2lISsqi/ZTNThj3ZYBOKP2rHwJc37oCsPqAzJ3w2puZHn0xlLPPw
==
chalk@2.4.2, chalk@^2.0.0:
chalk@2.4.2, chalk@^2.0.0:
version "2.4.2"
version "2.4.2"
...
@@ -2322,9 +2323,9 @@ dotenv-defaults@^5.0.0:
...
@@ -2322,9 +2323,9 @@ dotenv-defaults@^5.0.0:
dotenv "^14.0.0"
dotenv "^14.0.0"
dotenv@^14.0.0:
dotenv@^14.0.0:
version "14.
2.0
"
version "14.
3.2
"
resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-14.
2.0
.tgz#7
e77fd5dd6cff5942c4496e1acf2d0f37a9e67aa
"
resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-14.
3.2
.tgz#7
c30b3a5f777c79a3429cb2db358eef6751e8369
"
integrity sha512-
05POuPJyPpO6jqzTNweQFfAyMSD4qa4lvsMOWyTRTdpHKy6nnnN+IYWaXF+lHivhBH/ufDKlR4IWCAN3oPnHuw
==
integrity sha512-
vwEppIphpFdvaMCaHfCEv9IgwcxMljMw2TnAQBB4VWPvzXQLTb82jwmdOKzlEVUL3gNFT4l4TPKO+Bn+sqcrVQ
==
duplexer3@^0.1.4:
duplexer3@^0.1.4:
version "0.1.4"
version "0.1.4"
...
@@ -2352,9 +2353,9 @@ ee-first@1.1.1:
...
@@ -2352,9 +2353,9 @@ ee-first@1.1.1:
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
electron-to-chromium@^1.3.47, electron-to-chromium@^1.4.17:
electron-to-chromium@^1.3.47, electron-to-chromium@^1.4.17:
version "1.4.
49
"
version "1.4.
53
"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.
49
.tgz#5
b6a3dc032590beef4be485a4b0b3fe7d0e3dfd7
"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.
53
.tgz#5
d80a91c399b44952ef485857fb5b9d4387d2e60
"
integrity sha512-
k/0t1TRfonHIp8TJKfjBu2cKj8MqYTiEpOhci+q7CVEE5xnCQnx1pTa+V8b/sdhe4S3PR4p4iceEQWhGrKQORQ
==
integrity sha512-
rFveSKQczlcav+H3zkKqykU6ANseFwXwkl855jOIap5/0gnEcuIhv2ecz6aoTrXavF6I/CEBeRnBnkB51k06ew
==
emittery@^0.8.1:
emittery@^0.8.1:
version "0.8.1"
version "0.8.1"
...
@@ -2508,12 +2509,12 @@ eslint-plugin-import@^2.22.1:
...
@@ -2508,12 +2509,12 @@ eslint-plugin-import@^2.22.1:
resolve "^1.20.0"
resolve "^1.20.0"
tsconfig-paths "^3.12.0"
tsconfig-paths "^3.12.0"
eslint-plugin-jest@^2
5.3.4
:
eslint-plugin-jest@^2
6.0.0
:
version "2
5.7
.0"
version "2
6.0
.0"
resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-2
5.7
.0.tgz#f
f4ac97520b53a96187bad9c9814e7d00de09a6a
"
resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-2
6.0
.0.tgz#f
83a25a23ab90ce5b375b1d44389b8c391be5ce8
"
integrity sha512-
PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ
==
integrity sha512-
Fvs0YgJ/nw9FTrnqTuMGVrkozkd07jkQzWm0ajqyHlfcsdkxGfAuv30fgfWHOnHiCr9+1YQ365CcDX7vrNhqQg
==
dependencies:
dependencies:
"@typescript-eslint/
experimental-
utils" "^5.0.0"
"@typescript-eslint/utils" "^5.
1
0.0"
eslint-plugin-node@^11.1.0:
eslint-plugin-node@^11.1.0:
version "11.1.0"
version "11.1.0"
...
@@ -3296,9 +3297,9 @@ has@^1.0.3:
...
@@ -3296,9 +3297,9 @@ has@^1.0.3:
function-bind "^1.1.1"
function-bind "^1.1.1"
helmet@^5.0.1:
helmet@^5.0.1:
version "5.0.
1
"
version "5.0.
2
"
resolved "https://registry.yarnpkg.com/helmet/-/helmet-5.0.
1
.tgz#
e8b2aacf881dd5cffadbb640f23155f23de485ae
"
resolved "https://registry.yarnpkg.com/helmet/-/helmet-5.0.
2
.tgz#
3264ec6bab96c82deaf65e3403c369424cb2366c
"
integrity sha512-
iyYpGYH2nbQVaQtauYDnemWg45S2RyGvJ+iKj+V9jp7Dc1NTtAJHmD+hFOSYS7Xdwe1GeyVEYSydggXLOg6TKQ
==
integrity sha512-
QWlwUZZ8BtlvwYVTSDTBChGf8EOcQ2LkGMnQJxSzD1mUu8CCjXJZq/BXP8eWw4kikRnzlhtYo3lCk0ucmYA3Vg
==
hexoid@1.0.0:
hexoid@1.0.0:
version "1.0.0"
version "1.0.0"
...
@@ -3525,7 +3526,7 @@ is-ci@^2.0.0:
...
@@ -3525,7 +3526,7 @@ is-ci@^2.0.0:
dependencies:
dependencies:
ci-info "^2.0.0"
ci-info "^2.0.0"
is-core-module@^2.8.0:
is-core-module@^2.8.0
, is-core-module@^2.8.1
:
version "2.8.1"
version "2.8.1"
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211"
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211"
integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==
integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==
...
@@ -4494,9 +4495,9 @@ lilconfig@2.0.4:
...
@@ -4494,9 +4495,9 @@ lilconfig@2.0.4:
integrity sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==
integrity sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==
lint-staged@>=10:
lint-staged@>=10:
version "12.
2.2
"
version "12.
3.1
"
resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-12.
2.2
.tgz#
e03d93b41092316e0f38b37c9630da807aae3cca
"
resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-12.
3.1
.tgz#
d475b0c0d0a12d91dde58a429ac6268dea485f06
"
integrity sha512-
bcHEoM1M/f+K1BYdHcEuIn8K+zMOSJR3mkny6PAuQiTgcSUcRbUWaUD6porAYypxF4k1vYZZ2HutZt1p94Z1jQ
==
integrity sha512-
Ocht/eT+4/siWOZDJpNUKcKX2UeWW/pDbohJ4gRsrafAjBi79JK8kiNVk2ciIVNKdw0Q4ABptl2nr6uQAlRImw
==
dependencies:
dependencies:
cli-truncate "^3.1.0"
cli-truncate "^3.1.0"
colorette "^2.0.16"
colorette "^2.0.16"
...
@@ -4504,25 +4505,25 @@ lint-staged@>=10:
...
@@ -4504,25 +4505,25 @@ lint-staged@>=10:
debug "^4.3.3"
debug "^4.3.3"
execa "^5.1.1"
execa "^5.1.1"
lilconfig "2.0.4"
lilconfig "2.0.4"
listr2 "^
3.13.5
"
listr2 "^
4.0.1
"
micromatch "^4.0.4"
micromatch "^4.0.4"
normalize-path "^3.0.0"
normalize-path "^3.0.0"
object-inspect "^1.1
1.1
"
object-inspect "^1.1
2.0
"
string-argv "^0.3.1"
string-argv "^0.3.1"
supports-color "^9.2.1"
supports-color "^9.2.1"
yaml "^1.10.2"
yaml "^1.10.2"
listr2@^
3.13.5
:
listr2@^
4.0.1
:
version "
3.1
4.0"
version "4.0
.1
"
resolved "https://registry.yarnpkg.com/listr2/-/listr2-
3.1
4.0.tgz#
23101cc62e1375fd5836b248276d1d2b51fdbe9e
"
resolved "https://registry.yarnpkg.com/listr2/-/listr2-4.0.
1.
tgz#
e050c1fd390276e191f582603d6e3531cd6fd2b3
"
integrity sha512-
TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g
==
integrity sha512-
D65Nl+zyYHL2jQBGmxtH/pU8koPZo5C8iCNE8EoB04RwPgQG1wuaKwVbeZv9LJpiH4Nxs0FCp+nNcG8OqpniiA
==
dependencies:
dependencies:
cli-truncate "^2.1.0"
cli-truncate "^2.1.0"
colorette "^2.0.16"
colorette "^2.0.16"
log-update "^4.0.0"
log-update "^4.0.0"
p-map "^4.0.0"
p-map "^4.0.0"
rfdc "^1.3.0"
rfdc "^1.3.0"
rxjs "^7.5.
1
"
rxjs "^7.5.
2
"
through "^2.3.8"
through "^2.3.8"
wrap-ansi "^7.0.0"
wrap-ansi "^7.0.0"
...
@@ -4898,7 +4899,7 @@ object-copy@^0.1.0:
...
@@ -4898,7 +4899,7 @@ object-copy@^0.1.0:
define-property "^0.2.5"
define-property "^0.2.5"
kind-of "^3.0.3"
kind-of "^3.0.3"
object-inspect@^1.11.0, object-inspect@^1.1
1.1
, object-inspect@^1.9.0:
object-inspect@^1.11.0, object-inspect@^1.1
2.0
, object-inspect@^1.9.0:
version "1.12.0"
version "1.12.0"
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.0.tgz#6e2c120e868fd1fd18cb4f18c31741d0d6e776f0"
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.0.tgz#6e2c120e868fd1fd18cb4f18c31741d0d6e776f0"
integrity sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==
integrity sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==
...
@@ -5218,9 +5219,9 @@ pino@^7.5.0, pino@^7.6.2:
...
@@ -5218,9 +5219,9 @@ pino@^7.5.0, pino@^7.6.2:
thread-stream "^0.13.0"
thread-stream "^0.13.0"
pirates@^4.0.4:
pirates@^4.0.4:
version "4.0.
4
"
version "4.0.
5
"
resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.
4
.tgz#
07df81e61028e402735cdd49db701e4885b4e6e6
"
resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.
5
.tgz#
feec352ea5c3268fb23a37c702ab1699f35a5f3b
"
integrity sha512-
ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw
==
integrity sha512-
8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ
==
pkg-dir@^4.2.0:
pkg-dir@^4.2.0:
version "4.2.0"
version "4.2.0"
...
@@ -5589,11 +5590,11 @@ resolve.exports@^1.1.0:
...
@@ -5589,11 +5590,11 @@ resolve.exports@^1.1.0:
integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==
integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==
resolve@^1.10.1, resolve@^1.20.0:
resolve@^1.10.1, resolve@^1.20.0:
version "1.2
1.1
"
version "1.2
2.0
"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2
1.1
.tgz#
1a88c73
f5
c
a8
ab0aabc8b888c4170de26c92c4cc
"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2
2.0
.tgz#
5e0b8c67c15d
f5
7
a8
9bdbabe603a002f21731198
"
integrity sha512-
lfEImVbnolPuaSZuLQ52cAxPBHeI77sPwCOWRdy12UG/CNa8an7oBHH1R+Fp1/mUqSJi4c8TIP6FOIPSZAUrEQ
==
integrity sha512-
Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw
==
dependencies:
dependencies:
is-core-module "^2.8.
0
"
is-core-module "^2.8.
1
"
path-parse "^1.0.7"
path-parse "^1.0.7"
supports-preserve-symlinks-flag "^1.0.0"
supports-preserve-symlinks-flag "^1.0.0"
...
@@ -5641,7 +5642,7 @@ run-parallel@^1.1.9:
...
@@ -5641,7 +5642,7 @@ run-parallel@^1.1.9:
dependencies:
dependencies:
queue-microtask "^1.2.2"
queue-microtask "^1.2.2"
rxjs@^7.5.
1
:
rxjs@^7.5.
2
:
version "7.5.2"
version "7.5.2"
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.2.tgz#11e4a3a1dfad85dbf7fb6e33cbba17668497490b"
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.2.tgz#11e4a3a1dfad85dbf7fb6e33cbba17668497490b"
integrity sha512-PwDt186XaL3QN5qXj/H9DGyHhP3/RYYgZZwqBv9Tv8rsAaiwFH1IsJJlcgD37J7UW5a6O67qX0KWKS3/pu0m4w==
integrity sha512-PwDt186XaL3QN5qXj/H9DGyHhP3/RYYgZZwqBv9Tv8rsAaiwFH1IsJJlcgD37J7UW5a6O67qX0KWKS3/pu0m4w==
...
@@ -6124,9 +6125,9 @@ supports-preserve-symlinks-flag@^1.0.0:
...
@@ -6124,9 +6125,9 @@ supports-preserve-symlinks-flag@^1.0.0:
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
swagger-ui-dist@>=4.1.3:
swagger-ui-dist@>=4.1.3:
version "4.
2.1
"
version "4.
3.0
"
resolved "https://registry.yarnpkg.com/swagger-ui-dist/-/swagger-ui-dist-4.
2.1
.tgz#
d42ad2e68048edf61303d03ed9dfaccbbed312e0
"
resolved "https://registry.yarnpkg.com/swagger-ui-dist/-/swagger-ui-dist-4.
3.0
.tgz#
f969bdf8891e39bf7b3310a2091aca58e99ed5fd
"
integrity sha512-
ZzUeNKIIMXmKI53iLscAVCpQ7jblYxI2XX5EBaoBr6UBEfxT3L0vlnE+fzPBbHc9g0sgdOMLZGhC5OW++9pqlw
==
integrity sha512-
RY1c3y6uuHBTu4nZPXcvrv9cnKj6MbaNMZK1NDyGHrUbQOO5WmkuMo6wi93WFzSURJk0SboD1X9nM5CtQAu2Og
==
swagger-ui-express@^4.1.6:
swagger-ui-express@^4.1.6:
version "4.3.0"
version "4.3.0"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment