File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11get :
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 :
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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 } ) ;
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import type { CommunityBoardBudgetRequestAgencyCategoryResponse } from "./Commun
77import 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 */
1212export type FindCommunityBoardBudgetRequestAgencyCategoryResponses200 = {
1313 /**
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { errorSchema } from "./errorSchema";
88import { 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 */
1313export const findCommunityBoardBudgetRequestAgencyCategoryResponses200Schema =
1414 z . object ( {
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments