Skip to content

Commit

Permalink
Merge pull request #986 from samchon/feature/status
Browse files Browse the repository at this point in the history
Fix a little bit weird equal comparison.
  • Loading branch information
samchon authored Aug 14, 2024
2 parents b1b111c + c668b2e commit 6916a8d
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@nestia/station",
"version": "3.11.0-dev.20240814-3",
"version": "3.11.0",
"description": "Nestia station",
"scripts": {
"build": "node build/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nestia",
"version": "5.7.0-dev.20240814",
"version": "5.7.0",
"description": "Nestia CLI tool",
"main": "bin/index.js",
"bin": {
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestia/core",
"version": "3.11.0-dev.20240814-3",
"version": "3.11.0",
"description": "Super-fast validation decorators of NestJS",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -36,7 +36,7 @@
},
"homepage": "https://nestia.io",
"dependencies": {
"@nestia/fetcher": "^3.11.0-dev.20240814-3",
"@nestia/fetcher": "^3.11.0",
"@nestjs/common": ">=7.0.1",
"@nestjs/core": ">=7.0.1",
"@samchon/openapi": "^0.4.5",
Expand All @@ -53,7 +53,7 @@
"ws": "^7.5.3"
},
"peerDependencies": {
"@nestia/fetcher": ">=3.11.0-dev.20240814-3",
"@nestia/fetcher": ">=3.11.0",
"@nestjs/common": ">=7.0.1",
"@nestjs/core": ">=7.0.1",
"reflect-metadata": ">=0.1.12",
Expand Down
2 changes: 1 addition & 1 deletion packages/fetcher/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestia/fetcher",
"version": "3.11.0-dev.20240814-3",
"version": "3.11.0",
"description": "Fetcher library of Nestia SDK",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/fetcher/src/internal/FetcherBase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export namespace FetcherBase {
success:
response.status === 200 ||
response.status === 201 ||
response.status == route.status,
response.status === route.status,
status: response.status,
headers: response_headers_to_object(response.headers),
data: undefined!,
Expand Down
10 changes: 5 additions & 5 deletions packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestia/sdk",
"version": "3.11.0-dev.20240814-3",
"version": "3.11.0",
"description": "Nestia SDK and Swagger generator",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -32,8 +32,8 @@
},
"homepage": "https://nestia.io",
"dependencies": {
"@nestia/core": "^3.11.0-dev.20240814-3",
"@nestia/fetcher": "^3.11.0-dev.20240814-3",
"@nestia/core": "^3.11.0",
"@nestia/fetcher": "^3.11.0",
"@samchon/openapi": "^0.4.5",
"@wrtnio/openai-function-schema": "^0.2.3",
"cli": "^1.0.1",
Expand All @@ -48,8 +48,8 @@
"typia": "^6.8.0"
},
"peerDependencies": {
"@nestia/core": ">=3.11.0-dev.20240814-3",
"@nestia/fetcher": ">=3.11.0-dev.20240814-3",
"@nestia/core": ">=3.11.0",
"@nestia/fetcher": ">=3.11.0",
"@nestjs/common": ">=7.0.1",
"@nestjs/core": ">=7.0.1",
"reflect-metadata": ">=0.1.12",
Expand Down
8 changes: 4 additions & 4 deletions test/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@samchon/nestia-test",
"version": "3.11.0-dev.20240814-3",
"version": "3.11.0",
"description": "Test program of Nestia",
"main": "index.js",
"scripts": {
Expand All @@ -26,7 +26,7 @@
},
"homepage": "https://nestia.io",
"devDependencies": {
"@nestia/sdk": "^3.11.0-dev.20240814-3",
"@nestia/sdk": "^3.11.0",
"@nestjs/swagger": "^7.1.2",
"@samchon/openapi": "^0.4.5",
"@types/express": "^4.17.17",
Expand All @@ -40,9 +40,9 @@
},
"dependencies": {
"@fastify/multipart": "^8.1.0",
"@nestia/core": "^3.11.0-dev.20240814-3",
"@nestia/core": "^3.11.0",
"@nestia/e2e": "^0.7.0",
"@nestia/fetcher": "^3.11.0-dev.20240814-3",
"@nestia/fetcher": "^3.11.0",
"@nestjs/common": "^10.3.5",
"@nestjs/core": "^10.3.5",
"@nestjs/platform-express": "^10.3.5",
Expand Down

0 comments on commit 6916a8d

Please sign in to comment.