diff --git a/packages/shared/src/contracts/index.ts b/packages/shared/src/contracts/index.ts index c2c2e38c3..11551d74c 100644 --- a/packages/shared/src/contracts/index.ts +++ b/packages/shared/src/contracts/index.ts @@ -3,3 +3,4 @@ export type * from './editorAudio'; export * from './gameCreationApp'; export * from './hostBridge'; export type * from './hyper3d'; +export type * from './model3d'; diff --git a/packages/shared/src/contracts/model3d/index.ts b/packages/shared/src/contracts/model3d/index.ts new file mode 100644 index 000000000..0c042c42d --- /dev/null +++ b/packages/shared/src/contracts/model3d/index.ts @@ -0,0 +1,18 @@ +export type * from './common/Model3dCompression'; +export type * from './common/Model3dExportOrientation'; +export type * from './common/Model3dGeometryQuality'; +export type * from './common/Model3dInputOrientation'; +export type * from './common/Model3dModelVersion'; +export type * from './common/Model3dOutputFormat'; +export type * from './common/Model3dTaskStatus'; +export type * from './common/Model3dTextureAlignment'; +export type * from './common/Model3dTextureQuality'; +export type * from './common/Model3dTextureVersion'; +export type * from './image-to-model/Model3dImageToModelRequest'; +export type * from './multiview-to-model/Model3dMultiviewInputs'; +export type * from './multiview-to-model/Model3dMultiviewToModelRequest'; +export type * from './text-to-model/Model3dArtifact'; +export type * from './text-to-model/Model3dGenerationJob'; +export type * from './text-to-model/Model3dGenerationResult'; +export type * from './text-to-model/Model3dGenerationSubmission'; +export type * from './text-to-model/Model3dTextToModelRequest'; diff --git a/packages/shared/src/index.ts b/packages/shared/src/index.ts index ab3e62fd0..8c76a7861 100644 --- a/packages/shared/src/index.ts +++ b/packages/shared/src/index.ts @@ -5,6 +5,7 @@ export type * from './contracts/editorAudio'; export * from './contracts/editorScene'; export * from './contracts/externalGeneration'; export type * from './contracts/hyper3d'; +export type * from './contracts/model3d'; export * from './contracts/runtime'; export * from './http'; export * from './llm/narrativeLanguage';