修复场景合并后的导入排序
Project CI / Repository checks (pull_request) Successful in 1m31s
Project CI / Frontend tests (pull_request) Successful in 4m2s
Project CI / Backend tests (pull_request) Successful in 4m12s
Project CI / Native shell tests (pull_request) Successful in 13m24s

调整共享契约导出顺序
调整编辑器客户端类型导入顺序
This commit is contained in:
2026-08-06 20:27:46 +08:00
parent 0bbe910d69
commit 2fd381fc9e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,8 +5,8 @@ export type * from './contracts/creationAgentDocumentInput';
export type * from './contracts/creationAudio';
export type * from './contracts/creativeAgent';
export type * from './contracts/customWorldAgent';
export * from './contracts/editorScene';
export type * from './contracts/editorAudio';
export * from './contracts/editorScene';
export * from './contracts/edutainmentBabyDrawing';
export * from './contracts/edutainmentBabyObject';
export * from './contracts/externalGeneration';
@@ -1,8 +1,8 @@
import type { EditorSceneGenerationRequest } from '../../../packages/shared/src/contracts/editorScene';
import type {
BackgroundMusicPromptAssistRequest,
BackgroundMusicPromptAssistResponse,
} from '../../../packages/shared/src/contracts/editorAudio';
import type { EditorSceneGenerationRequest } from '../../../packages/shared/src/contracts/editorScene';
import type { ExternalGenerationJobStatusRecord } from '../../../packages/shared/src/contracts/externalGeneration';
import { requestJson } from '../apiClient';
import { EDITOR_GENERATION_REQUEST_RETRY_OPTIONS } from './editorRetryOptions';