{"openapi":"3.0.3","info":{"title":"auth API","version":"1.0.0"},"components":{"schemas":{}},"paths":{"/api/auth/livez":{"get":{"responses":{"200":{"description":"Default Response"}}}},"/api/auth/readyz":{"get":{"responses":{"200":{"description":"Default Response"}}}},"/api/auth/health":{"get":{"responses":{"200":{"description":"Default Response"}}}},"/api/auth/{*}":{"get":{"parameters":[{"schema":{"type":"string"},"in":"path","name":"*","required":true}],"responses":{"200":{"description":"Default Response"}}},"post":{"parameters":[{"schema":{"type":"string"},"in":"path","name":"*","required":true}],"responses":{"200":{"description":"Default Response"}}}},"/api/users/me":{"get":{"summary":"Get current user profile","tags":["Users"],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"name":{"type":"string"},"email":{"type":"string","format":"email"},"emailVerified":{"type":"boolean"},"image":{"type":"string","nullable":true},"phone":{"type":"string","nullable":true},"gender":{"type":"string","nullable":true},"dateOfBirth":{"type":"string","nullable":true},"avatarUrl":{"type":"string","nullable":true},"accountType":{"type":"string"},"themeMode":{"type":"string"},"accentColor":{"type":"string"},"timezone":{"type":"string"},"onboardingCompleted":{"type":"boolean"},"createdAt":{"anyOf":[{"type":"string"},{"type":"string","format":"date-time"}]}},"required":["id","name","email","emailVerified","image","phone","gender","dateOfBirth","avatarUrl","accountType","themeMode","accentColor","timezone","onboardingCompleted","createdAt"],"additionalProperties":false}},"required":["data"],"additionalProperties":false}}}}}},"patch":{"summary":"Update user profile","tags":["Users"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":200},"phone":{"type":"string","maxLength":50},"gender":{"type":"string","enum":["MALE","FEMALE"]},"dateOfBirth":{"type":"string"},"timezone":{"type":"string","maxLength":50}},"additionalProperties":false}}}},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"name":{"type":"string"},"email":{"type":"string","format":"email"},"emailVerified":{"type":"boolean"},"image":{"type":"string","nullable":true},"phone":{"type":"string","nullable":true},"gender":{"type":"string","nullable":true},"dateOfBirth":{"type":"string","nullable":true},"avatarUrl":{"type":"string","nullable":true},"accountType":{"type":"string"},"themeMode":{"type":"string"},"accentColor":{"type":"string"},"timezone":{"type":"string"},"onboardingCompleted":{"type":"boolean"},"createdAt":{"anyOf":[{"type":"string"},{"type":"string","format":"date-time"}]}},"required":["id","name","email","emailVerified","image","phone","gender","dateOfBirth","avatarUrl","accountType","themeMode","accentColor","timezone","onboardingCompleted","createdAt"],"additionalProperties":false}},"required":["data"],"additionalProperties":false}}}}}},"delete":{"summary":"Delete user account","tags":["Users"],"responses":{"204":{"description":"Default Response","content":{"application/json":{"schema":{"enum":["null"],"nullable":true}}}}}}},"/api/users/me/settings":{"patch":{"summary":"Update user settings","tags":["Users"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"themeMode":{"type":"string","enum":["LIGHT","DARK","SYSTEM"]},"accentColor":{"type":"string","enum":["PINK","BLUE","GREEN","ORANGE","PURPLE"]}},"additionalProperties":false}}}},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"themeMode":{"type":"string"},"accentColor":{"type":"string"}},"required":["themeMode","accentColor"],"additionalProperties":false}},"required":["data"],"additionalProperties":false}}}}}}}}}