Skip to content

Commit 1555abe

Browse files
committed
Fix merge issues
1 parent 6279bed commit 1555abe

3 files changed

Lines changed: 16 additions & 18 deletions

File tree

crates/common-wasm/build.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ const SERDE_DERIVE_PREFIXES: &[&str] = &[
1919
".grpc",
2020
".temporal.api.activity",
2121
".temporal.api.batch",
22+
".temporal.api.callback",
2223
".temporal.api.cloud",
2324
".temporal.api.command",
25+
".temporal.api.compute",
2426
".temporal.api.deployment",
2527
".temporal.api.filter",
2628
".temporal.api.history",

crates/common-wasm/src/protos/mod.rs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,7 @@ pub mod coresdk {
299299
failure_info: Some(failure::FailureInfo::CanceledFailureInfo(
300300
CanceledFailureInfo {
301301
details: details.map(Into::into),
302+
identity: Default::default(),
302303
},
303304
)),
304305
..Default::default()
@@ -1638,6 +1639,11 @@ pub mod temporal {
16381639
tonic::include_proto!("temporal.api.batch.v1");
16391640
}
16401641
}
1642+
pub mod callback {
1643+
pub mod v1 {
1644+
tonic::include_proto!("temporal.api.callback.v1");
1645+
}
1646+
}
16411647
pub mod command {
16421648
pub mod v1 {
16431649
tonic::include_proto!("temporal.api.command.v1");
@@ -2164,6 +2170,11 @@ pub mod temporal {
21642170
}
21652171
}
21662172
}
2173+
pub mod compute {
2174+
pub mod v1 {
2175+
tonic::include_proto!("temporal.api.compute.v1");
2176+
}
2177+
}
21672178
pub mod deployment {
21682179
pub mod v1 {
21692180
tonic::include_proto!("temporal.api.deployment.v1");
@@ -2398,6 +2409,8 @@ pub mod temporal {
23982409
Attributes::WorkflowExecutionPausedEventAttributes(_) => true,
23992410
// !! Ignorable !!
24002411
Attributes::WorkflowExecutionUnpausedEventAttributes(_) => true,
2412+
// !! Ignorable !!
2413+
Attributes::WorkflowExecutionTimeSkippingTransitionedEventAttributes(_) => true,
24012414
}
24022415
} else {
24032416
false
@@ -2479,6 +2492,7 @@ pub mod temporal {
24792492
Attributes::NexusOperationCancelRequestFailedEventAttributes(_) => { EventType::NexusOperationCancelRequestFailed }
24802493
Attributes::WorkflowExecutionPausedEventAttributes(_) => { EventType::WorkflowExecutionPaused }
24812494
Attributes::WorkflowExecutionUnpausedEventAttributes(_) => { EventType::WorkflowExecutionUnpaused }
2495+
Attributes::WorkflowExecutionTimeSkippingTransitionedEventAttributes(_) => { EventType::WorkflowExecutionTimeSkippingTransitioned }
24822496
}
24832497
}
24842498
}

crates/common/src/protos/mod.rs

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,3 @@
33
//! that will match the generated structs in this module.
44
55
pub use temporalio_common_wasm::protos::*;
6-
7-
#[cfg(feature = "test-utilities")]
8-
/// Pre-built test histories for common workflow patterns.
9-
pub mod canned_histories;
10-
#[cfg(feature = "history_builders")]
11-
mod history_builder;
12-
#[cfg(feature = "history_builders")]
13-
mod history_info;
14-
#[cfg(feature = "test-utilities")]
15-
pub mod test_utils;
16-
17-
#[cfg(feature = "history_builders")]
18-
pub use history_builder::{
19-
DEFAULT_ACTIVITY_TYPE, DEFAULT_WORKFLOW_TYPE, TestHistoryBuilder, default_act_sched,
20-
default_wes_attribs,
21-
};
22-
#[cfg(feature = "history_builders")]
23-
pub use history_info::HistoryInfo;

0 commit comments

Comments
 (0)