상시 프리렌더와 중복 예약 안내를 없애고, 검수된 발행 버전을 보존한다. 미리보기는 실제 렌더 완료까지 스피너를 표시한다. 사이트 81건, 발행·롤백·서치콘솔 45건, 프로세스 수명 3건 통과. 빌더·사이트 빌드 및 compose 설정 검증 통과.
19 lines
504 B
TypeScript
19 lines
504 B
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* Do not edit manually.
|
|
* Web4Ai API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { ErrorInfoSuccess } from "./errorInfoSuccess";
|
|
import type { ErrorInfoCode } from "./errorInfoCode";
|
|
import type { ErrorInfoDesc } from "./errorInfoDesc";
|
|
|
|
/**
|
|
* 모든 응답에 공통으로 실리는 결과 정보. result.success / code / desc 로 내려간다.
|
|
*/
|
|
export interface ErrorInfo {
|
|
success?: ErrorInfoSuccess;
|
|
code?: ErrorInfoCode;
|
|
desc?: ErrorInfoDesc;
|
|
}
|