`backend` 옆에 `front` 가 있을 이유가 없었다. negosium 의 negodata/front 를 그대로 베꼈고 그게 왜 front 인지는 따져보지 않았다 — 근거 없이 들여온 이름이라 바로잡는다. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_019uYhHQdssRubirPirrdJJC
28 lines
956 B
TypeScript
28 lines
956 B
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* Do not edit manually.
|
|
* Web4Ai API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { ErrorInfo } from './errorInfo';
|
|
import type { ResVerifyCandidatesMsg } from './resVerifyCandidatesMsg';
|
|
import type { ResVerifyCandidatesSource } from './resVerifyCandidatesSource';
|
|
import type { ResVerifyCandidatesReason } from './resVerifyCandidatesReason';
|
|
import type { PlaceCandidate } from './placeCandidate';
|
|
|
|
/**
|
|
* 동일 업소 후보 목록.
|
|
|
|
★ 자동 판정을 신뢰하지 않는다. outcome 이 MATCHED 여도 후보를 전부 내려보내
|
|
UI 가 사람에게 확인시킬 수 있게 한다 — 남의 가게가 섞이면 그게 제일 비싼 실수다.
|
|
*/
|
|
export interface ResVerifyCandidates {
|
|
result?: ErrorInfo;
|
|
msg?: ResVerifyCandidatesMsg;
|
|
source?: ResVerifyCandidatesSource;
|
|
outcome?: string;
|
|
reason?: ResVerifyCandidatesReason;
|
|
auto_selectable?: boolean;
|
|
candidates?: PlaceCandidate[];
|
|
}
|