Malarg commented on code in PR #24708:
URL: https://github.com/apache/beam/pull/24708#discussion_r1053234227
##########
playground/frontend/playground_components/lib/src/repositories/models/run_code_request.dart:
##########
@@ -16,16 +16,19 @@
* limitations under the License.
*/
+import '../../api/v1/api.pb.dart' show Dataset;
import '../../models/sdk.dart';
class RunCodeRequest {
final String code;
final Sdk sdk;
final Map<String, String> pipelineOptions;
+ final List<Dataset> datasets;
Review Comment:
done
##########
playground/frontend/playground_components/lib/src/repositories/models/run_code_request.dart:
##########
@@ -16,16 +16,19 @@
* limitations under the License.
*/
+import '../../api/v1/api.pb.dart' show Dataset;
import '../../models/sdk.dart';
class RunCodeRequest {
final String code;
final Sdk sdk;
final Map<String, String> pipelineOptions;
+ final List<Dataset> datasets;
const RunCodeRequest({
required this.code,
required this.sdk,
required this.pipelineOptions,
+ required this.datasets,
Review Comment:
done
##########
playground/frontend/playground_components/test/src/common/examples.dart:
##########
@@ -50,6 +50,7 @@ const exampleWithoutSourceMock = ExampleBase(
description: 'description',
path: 'SDK_PYTHON/Category/Name',
complexity: Complexity.basic,
+ datasets: [],
Review Comment:
done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]