-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from academic-relations/56-impl-post-apis-for-…
…filling-dbs 56 impl post apis for filling dbs
- Loading branch information
Showing
5 changed files
with
147 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
packages/interface/src/api/organization/endpoint/apiOrg002.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
import { HttpStatusCode } from "axios"; | ||
import { z } from "zod"; | ||
|
||
import { | ||
zOrgName, | ||
zOrgNameEng, | ||
} from "@sparcs-students/interface/common/stringLength"; | ||
import { OrganizationTypeE } from "@sparcs-students/interface/common/enum"; | ||
import { zId } from "@sparcs-students/interface/common/type/ids"; | ||
|
||
/** | ||
* @version v0.1 | ||
* @description 총학생회장 권한으로 새로운 단체를 생성합니다. | ||
*/ | ||
|
||
const url = () => `/uapresident/organizations/organization`; | ||
const method = "POST"; | ||
|
||
const requestParam = z.object({}); | ||
|
||
const requestQuery = z.object({}); | ||
|
||
const requestBody = z.object({ | ||
name: zOrgName, | ||
nameEng: zOrgNameEng, | ||
organizationTypeId: z.nativeEnum(OrganizationTypeE), | ||
foundingYear: z.coerce.number().int(), | ||
startTerm: z.coerce.date(), | ||
endTerm: z.coerce.date().optional(), | ||
}); | ||
|
||
const responseBodyMap = { | ||
[HttpStatusCode.Ok]: z.object({ | ||
organizationId: zId, | ||
}), | ||
}; | ||
|
||
const responseErrorMap = {}; | ||
|
||
const apiOrg002 = { | ||
url, | ||
method, | ||
requestParam, | ||
requestQuery, | ||
requestBody, | ||
responseBodyMap, | ||
responseErrorMap, | ||
}; | ||
|
||
type ApiOrg002RequestParam = z.infer<typeof apiOrg002.requestParam>; | ||
type ApiOrg002RequestQuery = z.infer<typeof apiOrg002.requestQuery>; | ||
type ApiOrg002RequestBody = z.infer<typeof apiOrg002.requestBody>; | ||
type ApiOrg002ResponseOK = z.infer<(typeof apiOrg002.responseBodyMap)[200]>; | ||
|
||
export default apiOrg002; | ||
|
||
export const ApiOrg002RequestUrl = "/uapresident/organizations/organization"; | ||
|
||
export type { | ||
ApiOrg002RequestParam, | ||
ApiOrg002RequestQuery, | ||
ApiOrg002RequestBody, | ||
ApiOrg002ResponseOK, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
export * from "./endpoint/apiOrg001"; | ||
export { default as apiOrg001 } from "./endpoint/apiOrg001"; // default export 추가 | ||
|
||
export * from "./endpoint/apiOrg002"; | ||
export { default as apiOrg002 } from "./endpoint/apiOrg002"; // default export 추가 |