diff --git a/apps/docs/docs/decorators/transforms.md b/apps/docs/docs/decorators/transforms.md index dffdd7d..9da1160 100644 --- a/apps/docs/docs/decorators/transforms.md +++ b/apps/docs/docs/decorators/transforms.md @@ -45,7 +45,6 @@ app.get('/search', bindingCargo(SearchRequest), (req: Request, res: Response) => // Verify the type of the transformed data sortByType: typeof searchParams.sortBy, countType: typeof searchParams.count, - doubleCount: searchParams.count, }) }) @@ -66,10 +65,9 @@ When the example request URL is accessed, the `bindingCargo` middleware processe "message": "Search parameters transformed successfully!", "data": { "sortBy": "title", - "count": 10 + "count": 20 }, "sortByType": "string", - "countType": "number", - "doubleCount": 10 + "countType": "number" } ``` diff --git a/apps/docs/i18n/de/docusaurus-plugin-content-docs/current/decorators/transforms.md b/apps/docs/i18n/de/docusaurus-plugin-content-docs/current/decorators/transforms.md index 642232f..5bb9232 100644 --- a/apps/docs/i18n/de/docusaurus-plugin-content-docs/current/decorators/transforms.md +++ b/apps/docs/i18n/de/docusaurus-plugin-content-docs/current/decorators/transforms.md @@ -45,7 +45,6 @@ app.get('/search', bindingCargo(SearchRequest), (req: Request, res: Response) => // Überprüfen Sie den Typ der transformierten Daten sortByType: typeof searchParams.sortBy, countType: typeof searchParams.count, - doubleCount: searchParams.count, }) }) @@ -66,10 +65,9 @@ Wenn auf die Beispiel-Anfrage-URL zugegriffen wird, verarbeitet die `bindingCarg "message": "Suchparameter erfolgreich transformiert!", "data": { "sortBy": "title", - "count": 10 + "count": 20 }, "sortByType": "string", - "countType": "number", - "doubleCount": 10 + "countType": "number" } ``` diff --git a/apps/docs/i18n/fr/docusaurus-plugin-content-docs/current/decorators/transforms.md b/apps/docs/i18n/fr/docusaurus-plugin-content-docs/current/decorators/transforms.md index 991dfe8..31b6253 100644 --- a/apps/docs/i18n/fr/docusaurus-plugin-content-docs/current/decorators/transforms.md +++ b/apps/docs/i18n/fr/docusaurus-plugin-content-docs/current/decorators/transforms.md @@ -45,7 +45,6 @@ app.get('/search', bindingCargo(SearchRequest), (req: Request, res: Response) => // Vérifier le type des données transformées sortByType: typeof searchParams.sortBy, countType: typeof searchParams.count, - doubleCount: searchParams.count, }) }) @@ -66,10 +65,9 @@ Lorsque l'URL de requête d'exemple est accédée, le middleware `bindingCargo` "message": "Paramètres de recherche transformés avec succès !", "data": { "sortBy": "title", - "count": 10 + "count": 20 }, "sortByType": "string", - "countType": "number", - "doubleCount": 10 + "countType": "number" } ``` diff --git a/apps/docs/i18n/ja/docusaurus-plugin-content-docs/current/decorators/transforms.md b/apps/docs/i18n/ja/docusaurus-plugin-content-docs/current/decorators/transforms.md index 03d896d..536e51d 100644 --- a/apps/docs/i18n/ja/docusaurus-plugin-content-docs/current/decorators/transforms.md +++ b/apps/docs/i18n/ja/docusaurus-plugin-content-docs/current/decorators/transforms.md @@ -45,7 +45,6 @@ app.get('/search', bindingCargo(SearchRequest), (req: Request, res: Response) => // 変換されたデータの型を確認 sortByType: typeof searchParams.sortBy, countType: typeof searchParams.count, - doubleCount: searchParams.count, }) }) @@ -66,10 +65,9 @@ http://localhost:3000/search?sortBy=TITLE&count=10 "message": "Search parameters transformed successfully!", "data": { "sortBy": "title", - "count": 10 + "count": 20 }, "sortByType": "string", - "countType": "number", - "doubleCount": 10 + "countType": "number" } ``` \ No newline at end of file diff --git a/apps/docs/i18n/ko/docusaurus-plugin-content-docs/current/decorators/transforms.md b/apps/docs/i18n/ko/docusaurus-plugin-content-docs/current/decorators/transforms.md index 30d0a57..d04c742 100644 --- a/apps/docs/i18n/ko/docusaurus-plugin-content-docs/current/decorators/transforms.md +++ b/apps/docs/i18n/ko/docusaurus-plugin-content-docs/current/decorators/transforms.md @@ -50,7 +50,6 @@ app.get('/search', bindingCargo(SearchRequest), (req: Request, res: Response) => // 변환된 데이터와 그 타입 확인 sortByType: typeof searchParams.sortBy, countType: typeof searchParams.count, - doubleCount: searchParams.count, }) }) @@ -71,10 +70,9 @@ http://localhost:3000/search?sortBy=TITLE&count=10 "message": "Search parameters transformed successfully!", "data": { "sortBy": "title", - "count": 10 + "count": 20 }, "sortByType": "string", - "countType": "number", - "doubleCount": 10 + "countType": "number" } ``` diff --git a/apps/docs/i18n/ru/docusaurus-plugin-content-docs/current/decorators/transforms.md b/apps/docs/i18n/ru/docusaurus-plugin-content-docs/current/decorators/transforms.md index 7a0c8aa..3216909 100644 --- a/apps/docs/i18n/ru/docusaurus-plugin-content-docs/current/decorators/transforms.md +++ b/apps/docs/i18n/ru/docusaurus-plugin-content-docs/current/decorators/transforms.md @@ -45,7 +45,6 @@ app.get('/search', bindingCargo(SearchRequest), (req: Request, res: Response) => // Проверьте тип преобразованных данных sortByType: typeof searchParams.sortBy, countType: typeof searchParams.count, - doubleCount: searchParams.count, }) }) @@ -66,10 +65,9 @@ http://localhost:3000/search?sortBy=TITLE&count=10 "message": "Параметры поиска успешно преобразованы!", "data": { "sortBy": "title", - "count": 10 + "count": 20 }, "sortByType": "string", - "countType": "number", - "doubleCount": 10 + "countType": "number" } ```