This commit is contained in:
2026-05-10 22:20:54 +08:00
parent d6219f1a0c
commit 192accd796
92 changed files with 7045 additions and 1559 deletions

View File

@@ -17,6 +17,7 @@ pub struct Match3DDraftCompileInput {
pub cover_image_src: Option<String>,
pub cover_asset_id: Option<String>,
pub compiled_at_micros: i64,
pub generated_item_assets_json: Option<String>,
}
impl __sdk::InModule for Match3DDraftCompileInput {

View File

@@ -24,6 +24,7 @@ pub struct Match3DWorkProfileRow {
pub play_count: u32,
pub updated_at: __sdk::Timestamp,
pub published_at: Option<__sdk::Timestamp>,
pub generated_item_assets_json: Option<String>,
}
impl __sdk::InModule for Match3DWorkProfileRow {
@@ -51,6 +52,8 @@ pub struct Match3DWorkProfileRowCols {
pub play_count: __sdk::__query_builder::Col<Match3DWorkProfileRow, u32>,
pub updated_at: __sdk::__query_builder::Col<Match3DWorkProfileRow, __sdk::Timestamp>,
pub published_at: __sdk::__query_builder::Col<Match3DWorkProfileRow, Option<__sdk::Timestamp>>,
pub generated_item_assets_json:
__sdk::__query_builder::Col<Match3DWorkProfileRow, Option<String>>,
}
impl __sdk::__query_builder::HasCols for Match3DWorkProfileRow {
@@ -77,6 +80,10 @@ impl __sdk::__query_builder::HasCols for Match3DWorkProfileRow {
play_count: __sdk::__query_builder::Col::new(table_name, "play_count"),
updated_at: __sdk::__query_builder::Col::new(table_name, "updated_at"),
published_at: __sdk::__query_builder::Col::new(table_name, "published_at"),
generated_item_assets_json: __sdk::__query_builder::Col::new(
table_name,
"generated_item_assets_json",
),
}
}
}