Skip to content

Commit 8b8757b

Browse files
committed
Replace “reponse” with “response”.
1 parent d4c2a58 commit 8b8757b

8 files changed

Lines changed: 12 additions & 12 deletions

openapi/paths/community-board-budget-requests_agency-category-responses.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
get:
2-
summary: Find community board budget request agency reponse categories
2+
summary: Find community board budget request agency response categories
33
operationId: findCommunityBoardBudgetRequestAgencyCategoryResponses
44
tags:
55
- Community Board Budget Requests
66
responses:
77
'200':
8-
description: An object containing a list of agency reponse categories
8+
description: An object containing a list of agency response categories
99
content:
1010
application/json:
1111
schema:

src/borough/borough.repository.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,9 +303,9 @@ export class BoroughRepository {
303303
agencyInitials: sql`${communityBoardBudgetRequest.agency}`.as(
304304
"agencyInitials",
305305
),
306-
agencyCategoryReponseId:
306+
agencyCategoryResponseId:
307307
sql`${communityBoardBudgetRequest.agencyCategoryResponse}`.as(
308-
"agencyCategoryReponseId",
308+
"agencyCategoryResponseId",
309309
),
310310
communityBoardId:
311311
sql`${borough.abbr} || ${communityBoardBudgetRequest.communityDistrictId}`.as(

src/city-council-district/city-council-district.repository.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,9 @@ export class CityCouncilDistrictRepository {
248248
agencyInitials: sql`${communityBoardBudgetRequest.agency}`.as(
249249
"agencyInitials",
250250
),
251-
agencyCategoryReponseId:
251+
agencyCategoryResponseId:
252252
sql`${communityBoardBudgetRequest.agencyCategoryResponse}`.as(
253-
"agencyCategoryReponseId",
253+
"agencyCategoryResponseId",
254254
),
255255
communityBoardId:
256256
sql`${borough.abbr} || ${communityBoardBudgetRequest.communityDistrictId}`.as(

src/community-board-budget-request/community-board-budget-request.repository.schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export const communityBoardBudgetRequestRepoSchema =
6464
cbbrType: communityBoardBudgetRequestEntitySchema.shape.requestType,
6565
isMapped: z.boolean(),
6666
cbbrAgencyCategoryResponseId:
67-
communityBoardBudgetRequestEntitySchema.shape.agencyCategoryReponse,
67+
communityBoardBudgetRequestEntitySchema.shape.agencyCategoryResponse,
6868
cbbrAgencyResponse:
6969
communityBoardBudgetRequestEntitySchema.shape.agencyResponse,
7070
});

src/community-board-budget-request/community-board-budget-request.repository.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -793,9 +793,9 @@ export class CommunityBoardBudgetRequestRepository {
793793
agencyInitials: sql`${communityBoardBudgetRequest.agency}`.as(
794794
"agencyInitials",
795795
),
796-
agencyCategoryReponseId:
796+
agencyCategoryResponseId:
797797
sql`${communityBoardBudgetRequest.agencyCategoryResponse}`.as(
798-
"agencyCategoryReponseId",
798+
"agencyCategoryResponseId",
799799
),
800800
communityBoardId:
801801
sql`${borough.abbr} || ${communityBoardBudgetRequest.communityDistrictId}`.as(

src/gen/types/FindCommunityBoardBudgetRequestAgencyCategoryResponses.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type { CommunityBoardBudgetRequestAgencyCategoryResponse } from "./Commun
77
import type { Error } from "./Error";
88

99
/**
10-
* @description An object containing a list of agency reponse categories
10+
* @description An object containing a list of agency response categories
1111
*/
1212
export type FindCommunityBoardBudgetRequestAgencyCategoryResponses200 = {
1313
/**

src/gen/zod/findCommunityBoardBudgetRequestAgencyCategoryResponsesSchema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { errorSchema } from "./errorSchema";
88
import { z } from "zod";
99

1010
/**
11-
* @description An object containing a list of agency reponse categories
11+
* @description An object containing a list of agency response categories
1212
*/
1313
export const findCommunityBoardBudgetRequestAgencyCategoryResponses200Schema =
1414
z.object({

src/schema/community-board-budget-request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ export const communityBoardBudgetRequestEntitySchema = z.object({
192192
communityDistrictId: communityDistrictEntitySchema.shape.id,
193193
agency: agencyEntitySchema.shape.initials,
194194
managingCode: managingCodeEntitySchema.shape.id,
195-
agencyCategoryReponse:
195+
agencyCategoryResponse:
196196
cbbrAgencyCategoryResponseEntitySchema.shape.id.nullable(),
197197
agencyResponse: z.string().nullable(),
198198
requestType: cbbrRequestTypeEntitySchema,

0 commit comments

Comments
 (0)