feat: complete M5 custom world and agent chain
This commit is contained in:
@@ -60,6 +60,9 @@ pub mod chapter_progression_procedure_result_type;
|
||||
pub mod chapter_progression_snapshot_type;
|
||||
pub mod combat_outcome_type;
|
||||
pub mod consume_inventory_item_input_type;
|
||||
pub mod custom_world_agent_action_execute_input_type;
|
||||
pub mod custom_world_agent_action_execute_result_type;
|
||||
pub mod custom_world_agent_card_detail_get_input_type;
|
||||
pub mod custom_world_agent_message_type;
|
||||
pub mod custom_world_agent_message_snapshot_type;
|
||||
pub mod custom_world_agent_message_submit_input_type;
|
||||
@@ -73,6 +76,9 @@ pub mod custom_world_agent_session_get_input_type;
|
||||
pub mod custom_world_agent_session_procedure_result_type;
|
||||
pub mod custom_world_agent_session_snapshot_type;
|
||||
pub mod custom_world_draft_card_type;
|
||||
pub mod custom_world_draft_card_detail_result_type;
|
||||
pub mod custom_world_draft_card_detail_section_snapshot_type;
|
||||
pub mod custom_world_draft_card_detail_snapshot_type;
|
||||
pub mod custom_world_draft_card_snapshot_type;
|
||||
pub mod custom_world_gallery_detail_input_type;
|
||||
pub mod custom_world_gallery_entry_type;
|
||||
@@ -98,6 +104,9 @@ pub mod custom_world_role_asset_status_type;
|
||||
pub mod custom_world_session_type;
|
||||
pub mod custom_world_session_status_type;
|
||||
pub mod custom_world_theme_mode_type;
|
||||
pub mod custom_world_work_summary_snapshot_type;
|
||||
pub mod custom_world_works_list_input_type;
|
||||
pub mod custom_world_works_list_result_type;
|
||||
pub mod equip_inventory_item_input_type;
|
||||
pub mod grant_inventory_item_input_type;
|
||||
pub mod inventory_container_kind_type;
|
||||
@@ -301,9 +310,11 @@ pub mod create_ai_task_and_return_procedure;
|
||||
pub mod create_battle_state_and_return_procedure;
|
||||
pub mod create_custom_world_agent_session_procedure;
|
||||
pub mod delete_runtime_snapshot_and_return_procedure;
|
||||
pub mod execute_custom_world_agent_action_procedure;
|
||||
pub mod fail_ai_task_and_return_procedure;
|
||||
pub mod get_battle_state_procedure;
|
||||
pub mod get_chapter_progression_procedure;
|
||||
pub mod get_custom_world_agent_card_detail_procedure;
|
||||
pub mod get_custom_world_agent_operation_procedure;
|
||||
pub mod get_custom_world_agent_session_procedure;
|
||||
pub mod get_custom_world_gallery_detail_procedure;
|
||||
@@ -318,6 +329,7 @@ pub mod get_story_session_state_procedure;
|
||||
pub mod grant_player_progression_experience_and_return_procedure;
|
||||
pub mod list_custom_world_gallery_entries_procedure;
|
||||
pub mod list_custom_world_profiles_procedure;
|
||||
pub mod list_custom_world_works_procedure;
|
||||
pub mod list_platform_browse_history_procedure;
|
||||
pub mod list_profile_save_archives_procedure;
|
||||
pub mod list_profile_wallet_ledger_procedure;
|
||||
@@ -387,6 +399,9 @@ pub use chapter_progression_procedure_result_type::ChapterProgressionProcedureRe
|
||||
pub use chapter_progression_snapshot_type::ChapterProgressionSnapshot;
|
||||
pub use combat_outcome_type::CombatOutcome;
|
||||
pub use consume_inventory_item_input_type::ConsumeInventoryItemInput;
|
||||
pub use custom_world_agent_action_execute_input_type::CustomWorldAgentActionExecuteInput;
|
||||
pub use custom_world_agent_action_execute_result_type::CustomWorldAgentActionExecuteResult;
|
||||
pub use custom_world_agent_card_detail_get_input_type::CustomWorldAgentCardDetailGetInput;
|
||||
pub use custom_world_agent_message_type::CustomWorldAgentMessage;
|
||||
pub use custom_world_agent_message_snapshot_type::CustomWorldAgentMessageSnapshot;
|
||||
pub use custom_world_agent_message_submit_input_type::CustomWorldAgentMessageSubmitInput;
|
||||
@@ -400,6 +415,9 @@ pub use custom_world_agent_session_get_input_type::CustomWorldAgentSessionGetInp
|
||||
pub use custom_world_agent_session_procedure_result_type::CustomWorldAgentSessionProcedureResult;
|
||||
pub use custom_world_agent_session_snapshot_type::CustomWorldAgentSessionSnapshot;
|
||||
pub use custom_world_draft_card_type::CustomWorldDraftCard;
|
||||
pub use custom_world_draft_card_detail_result_type::CustomWorldDraftCardDetailResult;
|
||||
pub use custom_world_draft_card_detail_section_snapshot_type::CustomWorldDraftCardDetailSectionSnapshot;
|
||||
pub use custom_world_draft_card_detail_snapshot_type::CustomWorldDraftCardDetailSnapshot;
|
||||
pub use custom_world_draft_card_snapshot_type::CustomWorldDraftCardSnapshot;
|
||||
pub use custom_world_gallery_detail_input_type::CustomWorldGalleryDetailInput;
|
||||
pub use custom_world_gallery_entry_type::CustomWorldGalleryEntry;
|
||||
@@ -425,6 +443,9 @@ pub use custom_world_role_asset_status_type::CustomWorldRoleAssetStatus;
|
||||
pub use custom_world_session_type::CustomWorldSession;
|
||||
pub use custom_world_session_status_type::CustomWorldSessionStatus;
|
||||
pub use custom_world_theme_mode_type::CustomWorldThemeMode;
|
||||
pub use custom_world_work_summary_snapshot_type::CustomWorldWorkSummarySnapshot;
|
||||
pub use custom_world_works_list_input_type::CustomWorldWorksListInput;
|
||||
pub use custom_world_works_list_result_type::CustomWorldWorksListResult;
|
||||
pub use equip_inventory_item_input_type::EquipInventoryItemInput;
|
||||
pub use grant_inventory_item_input_type::GrantInventoryItemInput;
|
||||
pub use inventory_container_kind_type::InventoryContainerKind;
|
||||
@@ -628,9 +649,11 @@ pub use create_ai_task_and_return_procedure::create_ai_task_and_return;
|
||||
pub use create_battle_state_and_return_procedure::create_battle_state_and_return;
|
||||
pub use create_custom_world_agent_session_procedure::create_custom_world_agent_session;
|
||||
pub use delete_runtime_snapshot_and_return_procedure::delete_runtime_snapshot_and_return;
|
||||
pub use execute_custom_world_agent_action_procedure::execute_custom_world_agent_action;
|
||||
pub use fail_ai_task_and_return_procedure::fail_ai_task_and_return;
|
||||
pub use get_battle_state_procedure::get_battle_state;
|
||||
pub use get_chapter_progression_procedure::get_chapter_progression;
|
||||
pub use get_custom_world_agent_card_detail_procedure::get_custom_world_agent_card_detail;
|
||||
pub use get_custom_world_agent_operation_procedure::get_custom_world_agent_operation;
|
||||
pub use get_custom_world_agent_session_procedure::get_custom_world_agent_session;
|
||||
pub use get_custom_world_gallery_detail_procedure::get_custom_world_gallery_detail;
|
||||
@@ -645,6 +668,7 @@ pub use get_story_session_state_procedure::get_story_session_state;
|
||||
pub use grant_player_progression_experience_and_return_procedure::grant_player_progression_experience_and_return;
|
||||
pub use list_custom_world_gallery_entries_procedure::list_custom_world_gallery_entries;
|
||||
pub use list_custom_world_profiles_procedure::list_custom_world_profiles;
|
||||
pub use list_custom_world_works_procedure::list_custom_world_works;
|
||||
pub use list_platform_browse_history_procedure::list_platform_browse_history;
|
||||
pub use list_profile_save_archives_procedure::list_profile_save_archives;
|
||||
pub use list_profile_wallet_ledger_procedure::list_profile_wallet_ledger;
|
||||
|
||||
Reference in New Issue
Block a user