- build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
- chore: Other changes that don't modify src or test files
- ci: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
- docs: Documentation only changes
- feat: A new feature
- fix: A bug fix
This file contains hidden or 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
import axios from 'axios'; | |
import { decode } from 'jsonwebtoken'; | |
import { z } from 'zod'; | |
const cotdListSchema = z.object({ | |
monthList: z.array( | |
z.object({ | |
year: z.number(), | |
month: z.number(), | |
lastDay: z.number(), |
OlderNewer