Latest generation

This commit is contained in:
ci core model
2025-09-23 08:21:29 +00:00
parent d87796e68d
commit be672d7925
4 changed files with 18 additions and 4 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG # CHANGELOG
Lib version: 1.12.0-SNAPSHOT-250923074209 Lib version: 1.12.0-SNAPSHOT-250923082103

View File

@@ -1000,9 +1000,11 @@ class ExecutionflowCreateDetectedOrder extends $pb.GeneratedMessage {
class ExecutionflowPropagateLinesToOrderPayload extends $pb.GeneratedMessage { class ExecutionflowPropagateLinesToOrderPayload extends $pb.GeneratedMessage {
factory ExecutionflowPropagateLinesToOrderPayload({ factory ExecutionflowPropagateLinesToOrderPayload({
$core.Iterable<$0.ExeFlowLine>? lines, $core.Iterable<$0.ExeFlowLine>? lines,
$core.String? orderID,
}) { }) {
final result = create(); final result = create();
if (lines != null) result.lines.addAll(lines); if (lines != null) result.lines.addAll(lines);
if (orderID != null) result.orderID = orderID;
return result; return result;
} }
@@ -1013,6 +1015,7 @@ class ExecutionflowPropagateLinesToOrderPayload extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ExecutionflowPropagateLinesToOrderPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ExecutionflowPropagateLinesToOrderPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<$0.ExeFlowLine>(1, _omitFieldNames ? '' : 'Lines', $pb.PbFieldType.PM, protoName: 'Lines', subBuilder: $0.ExeFlowLine.create) ..pc<$0.ExeFlowLine>(1, _omitFieldNames ? '' : 'Lines', $pb.PbFieldType.PM, protoName: 'Lines', subBuilder: $0.ExeFlowLine.create)
..aOS(2, _omitFieldNames ? '' : 'OrderID', protoName: 'OrderID')
..hasRequiredFields = false ..hasRequiredFields = false
; ;
@@ -1036,6 +1039,15 @@ class ExecutionflowPropagateLinesToOrderPayload extends $pb.GeneratedMessage {
/// Lines of the order /// Lines of the order
@$pb.TagNumber(1) @$pb.TagNumber(1)
$pb.PbList<$0.ExeFlowLine> get lines => $_getList(0); $pb.PbList<$0.ExeFlowLine> get lines => $_getList(0);
@$pb.TagNumber(2)
$core.String get orderID => $_getSZ(1);
@$pb.TagNumber(2)
set orderID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasOrderID() => $_has(1);
@$pb.TagNumber(2)
void clearOrderID() => $_clearField(2);
} }
class ExecutionflowPropagateLinesToOrder extends $pb.GeneratedMessage { class ExecutionflowPropagateLinesToOrder extends $pb.GeneratedMessage {

View File

@@ -239,6 +239,7 @@ const ExecutionflowPropagateLinesToOrderPayload$json = {
'1': 'ExecutionflowPropagateLinesToOrderPayload', '1': 'ExecutionflowPropagateLinesToOrderPayload',
'2': [ '2': [
{'1': 'Lines', '3': 1, '4': 3, '5': 11, '6': '.api.ExeFlowLine', '8': {}, '10': 'Lines'}, {'1': 'Lines', '3': 1, '4': 3, '5': 11, '6': '.api.ExeFlowLine', '8': {}, '10': 'Lines'},
{'1': 'OrderID', '3': 2, '4': 1, '5': 9, '10': 'OrderID'},
], ],
'7': {}, '7': {},
}; };
@@ -247,8 +248,9 @@ const ExecutionflowPropagateLinesToOrderPayload$json = {
final $typed_data.Uint8List executionflowPropagateLinesToOrderPayloadDescriptor = $convert.base64Decode( final $typed_data.Uint8List executionflowPropagateLinesToOrderPayloadDescriptor = $convert.base64Decode(
'CilFeGVjdXRpb25mbG93UHJvcGFnYXRlTGluZXNUb09yZGVyUGF5bG9hZBJJCgVMaW5lcxgBIA' 'CilFeGVjdXRpb25mbG93UHJvcGFnYXRlTGluZXNUb09yZGVyUGF5bG9hZBJJCgVMaW5lcxgBIA'
'MoCzIQLmFwaS5FeGVGbG93TGluZUIhkkEUMhJMaW5lcyBvZiB0aGUgb3JkZXLqwRgGTGluZUlE' 'MoCzIQLmFwaS5FeGVGbG93TGluZUIhkkEUMhJMaW5lcyBvZiB0aGUgb3JkZXLqwRgGTGluZUlE'
'UgVMaW5lczpbkkEwCi4yLFByb3BhZ2F0ZXMgbGluZXMgZnJvbSBFeGVjdXRpb25mbG93IHRvIE' 'UgVMaW5lcxIYCgdPcmRlcklEGAIgASgJUgdPcmRlcklEOluSQTAKLjIsUHJvcGFnYXRlcyBsaW'
'9yZGVyorsYB0NvbW1hbmSouxgBsrsYFVByb3BhZ2F0ZUxpbmVzVG9PcmRlcg=='); '5lcyBmcm9tIEV4ZWN1dGlvbmZsb3cgdG8gT3JkZXKiuxgHQ29tbWFuZKi7GAGyuxgVUHJvcGFn'
'YXRlTGluZXNUb09yZGVy');
@$core.Deprecated('Use executionflowPropagateLinesToOrderDescriptor instead') @$core.Deprecated('Use executionflowPropagateLinesToOrderDescriptor instead')
const ExecutionflowPropagateLinesToOrder$json = { const ExecutionflowPropagateLinesToOrder$json = {

View File

@@ -1,6 +1,6 @@
name: dart_core_sdk name: dart_core_sdk
description: dart libs from core model proto files description: dart libs from core model proto files
version: 1.12.0-SNAPSHOT-250923074209 version: 1.12.0-SNAPSHOT-250923082103
homepage: '' homepage: ''
publish_to: '' publish_to: ''
repository: '' repository: ''