This commit is contained in:
@@ -33,12 +33,16 @@ export interface ExecuteSquareHoleActionRequest {
|
||||
summary?: string;
|
||||
tags?: string[];
|
||||
coverImageSrc?: string | null;
|
||||
regenerateVisualAssets?: boolean;
|
||||
visualAssetSlot?: 'cover' | 'background' | 'shape' | string | null;
|
||||
visualAssetOptionId?: string | null;
|
||||
}
|
||||
|
||||
export interface SquareHoleShapeOption {
|
||||
optionId: string;
|
||||
shapeKind: string;
|
||||
label: string;
|
||||
targetHoleId: string;
|
||||
imagePrompt: string;
|
||||
imageSrc?: string | null;
|
||||
}
|
||||
@@ -47,7 +51,8 @@ export interface SquareHoleHoleOption {
|
||||
holeId: string;
|
||||
holeKind: string;
|
||||
label: string;
|
||||
bonus: boolean;
|
||||
imagePrompt: string;
|
||||
imageSrc?: string | null;
|
||||
}
|
||||
|
||||
export interface SquareHoleAnchorItemResponse {
|
||||
|
||||
@@ -36,6 +36,7 @@ export interface SquareHoleShapeSnapshot {
|
||||
shapeId: string;
|
||||
shapeKind: SquareHoleShapeKind;
|
||||
label: string;
|
||||
targetHoleId: string;
|
||||
color: string;
|
||||
imageSrc?: string | null;
|
||||
}
|
||||
@@ -46,7 +47,7 @@ export interface SquareHoleHoleSnapshot {
|
||||
label: string;
|
||||
x: number;
|
||||
y: number;
|
||||
bonus: boolean;
|
||||
imageSrc?: string | null;
|
||||
}
|
||||
|
||||
export interface SquareHoleRunSnapshot {
|
||||
|
||||
@@ -8,6 +8,7 @@ export interface SquareHoleShapeOption {
|
||||
optionId: string;
|
||||
shapeKind: string;
|
||||
label: string;
|
||||
targetHoleId: string;
|
||||
imagePrompt: string;
|
||||
imageSrc?: string | null;
|
||||
}
|
||||
@@ -16,7 +17,8 @@ export interface SquareHoleHoleOption {
|
||||
holeId: string;
|
||||
holeKind: string;
|
||||
label: string;
|
||||
bonus: boolean;
|
||||
imagePrompt: string;
|
||||
imageSrc?: string | null;
|
||||
}
|
||||
|
||||
export interface PutSquareHoleWorkRequest {
|
||||
@@ -34,6 +36,11 @@ export interface PutSquareHoleWorkRequest {
|
||||
difficulty: number;
|
||||
}
|
||||
|
||||
export interface RegenerateSquareHoleWorkImageRequest {
|
||||
visualAssetSlot: 'cover' | 'background' | 'shape' | 'hole' | string;
|
||||
visualAssetOptionId?: string | null;
|
||||
}
|
||||
|
||||
export interface SquareHoleWorkSummary {
|
||||
workId: string;
|
||||
profileId: string;
|
||||
|
||||
Reference in New Issue
Block a user