Latest generation

This commit is contained in:
ci core model
2026-05-21 14:07:00 +00:00
parent d4e4ca54f1
commit b2e58a9a38
6 changed files with 106 additions and 5 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG
Lib version: 1.14.0-SNAPSHOT-260520091345
Lib version: 1.14.0-SNAPSHOT-260521140614

View File

@@ -2807,9 +2807,11 @@ class OrderCompletedResponse extends $pb.GeneratedMessage {
class OrderExecutionflowUpdatedPayload extends $pb.GeneratedMessage {
factory OrderExecutionflowUpdatedPayload({
$core.Iterable<$2.ExecutionflowSummary>? executionflowSummary,
$core.Iterable<$2.OrderLine>? lines,
}) {
final result = create();
if (executionflowSummary != null) result.executionflowSummary.addAll(executionflowSummary);
if (lines != null) result.lines.addAll(lines);
return result;
}
@@ -2820,6 +2822,7 @@ class OrderExecutionflowUpdatedPayload extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'OrderExecutionflowUpdatedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<$2.ExecutionflowSummary>(1, _omitFieldNames ? '' : 'ExecutionflowSummary', $pb.PbFieldType.PM, protoName: 'ExecutionflowSummary', subBuilder: $2.ExecutionflowSummary.create)
..pc<$2.OrderLine>(2, _omitFieldNames ? '' : 'Lines', $pb.PbFieldType.PM, protoName: 'Lines', subBuilder: $2.OrderLine.create)
..hasRequiredFields = false
;
@@ -2842,6 +2845,9 @@ class OrderExecutionflowUpdatedPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$pb.PbList<$2.ExecutionflowSummary> get executionflowSummary => $_getList(0);
@$pb.TagNumber(2)
$pb.PbList<$2.OrderLine> get lines => $_getList(1);
}
class OrderExecutionflowUpdatedEvent extends $pb.GeneratedMessage {

View File

@@ -751,6 +751,7 @@ const OrderExecutionflowUpdatedPayload$json = {
'1': 'OrderExecutionflowUpdatedPayload',
'2': [
{'1': 'ExecutionflowSummary', '3': 1, '4': 3, '5': 11, '6': '.api.ExecutionflowSummary', '8': {}, '10': 'ExecutionflowSummary'},
{'1': 'Lines', '3': 2, '4': 3, '5': 11, '6': '.api.OrderLine', '8': {}, '10': 'Lines'},
],
'7': {},
};
@@ -759,8 +760,9 @@ const OrderExecutionflowUpdatedPayload$json = {
final $typed_data.Uint8List orderExecutionflowUpdatedPayloadDescriptor = $convert.base64Decode(
'CiBPcmRlckV4ZWN1dGlvbmZsb3dVcGRhdGVkUGF5bG9hZBJiChRFeGVjdXRpb25mbG93U3VtbW'
'FyeRgBIAMoCzIZLmFwaS5FeGVjdXRpb25mbG93U3VtbWFyeUIT6sEYD0V4ZWN1dGlvbmZsb3dJ'
'RFIURXhlY3V0aW9uZmxvd1N1bW1hcnk6JaK7GAVFdmVudKi7GAG6uxgURXhlY3V0aW9uZmxvd1'
'VwZGF0ZWQ=');
'RFIURXhlY3V0aW9uZmxvd1N1bW1hcnkSPgoFTGluZXMYAiADKAsyDi5hcGkuT3JkZXJMaW5lQh'
'jywRgURXhlY3V0aW9uZmxvd1VwZGF0ZWRSBUxpbmVzOiWiuxgFRXZlbnSouxgBursYFEV4ZWN1'
'dGlvbmZsb3dVcGRhdGVk');
@$core.Deprecated('Use orderExecutionflowUpdatedEventDescriptor instead')
const OrderExecutionflowUpdatedEvent$json = {

View File

@@ -170,12 +170,14 @@ class OrderLine extends $pb.GeneratedMessage {
$1.QuantifiedRequestedGoods? requestedContent,
$core.Iterable<$0.MetadataElement>? metaData,
GoodsMetrics? requestedMetrics,
$1.QuantifiedRequestedGoods? shippedContent,
}) {
final result = create();
if (lineID != null) result.lineID = lineID;
if (requestedContent != null) result.requestedContent = requestedContent;
if (metaData != null) result.metaData.addAll(metaData);
if (requestedMetrics != null) result.requestedMetrics = requestedMetrics;
if (shippedContent != null) result.shippedContent = shippedContent;
return result;
}
@@ -189,6 +191,7 @@ class OrderLine extends $pb.GeneratedMessage {
..aOM<$1.QuantifiedRequestedGoods>(2, _omitFieldNames ? '' : 'RequestedContent', protoName: 'RequestedContent', subBuilder: $1.QuantifiedRequestedGoods.create)
..pc<$0.MetadataElement>(3, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $0.MetadataElement.create)
..aOM<GoodsMetrics>(4, _omitFieldNames ? '' : 'RequestedMetrics', protoName: 'RequestedMetrics', subBuilder: GoodsMetrics.create)
..aOM<$1.QuantifiedRequestedGoods>(5, _omitFieldNames ? '' : 'ShippedContent', protoName: 'ShippedContent', subBuilder: $1.QuantifiedRequestedGoods.create)
..hasRequiredFields = false
;
@@ -243,6 +246,77 @@ class OrderLine extends $pb.GeneratedMessage {
void clearRequestedMetrics() => $_clearField(4);
@$pb.TagNumber(4)
GoodsMetrics ensureRequestedMetrics() => $_ensure(3);
@$pb.TagNumber(5)
$1.QuantifiedRequestedGoods get shippedContent => $_getN(4);
@$pb.TagNumber(5)
set shippedContent($1.QuantifiedRequestedGoods value) => $_setField(5, value);
@$pb.TagNumber(5)
$core.bool hasShippedContent() => $_has(4);
@$pb.TagNumber(5)
void clearShippedContent() => $_clearField(5);
@$pb.TagNumber(5)
$1.QuantifiedRequestedGoods ensureShippedContent() => $_ensure(4);
}
class OrderShippedLine extends $pb.GeneratedMessage {
factory OrderShippedLine({
$core.String? lineID,
$1.QuantifiedRequestedGoods? shippedContent,
}) {
final result = create();
if (lineID != null) result.lineID = lineID;
if (shippedContent != null) result.shippedContent = shippedContent;
return result;
}
OrderShippedLine._();
factory OrderShippedLine.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory OrderShippedLine.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'OrderShippedLine', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'LineID', protoName: 'LineID')
..aOM<$1.QuantifiedRequestedGoods>(2, _omitFieldNames ? '' : 'ShippedContent', protoName: 'ShippedContent', subBuilder: $1.QuantifiedRequestedGoods.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
OrderShippedLine clone() => OrderShippedLine()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
OrderShippedLine copyWith(void Function(OrderShippedLine) updates) => super.copyWith((message) => updates(message as OrderShippedLine)) as OrderShippedLine;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static OrderShippedLine create() => OrderShippedLine._();
@$core.override
OrderShippedLine createEmptyInstance() => create();
static $pb.PbList<OrderShippedLine> createRepeated() => $pb.PbList<OrderShippedLine>();
@$core.pragma('dart2js:noInline')
static OrderShippedLine getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<OrderShippedLine>(create);
static OrderShippedLine? _defaultInstance;
@$pb.TagNumber(1)
$core.String get lineID => $_getSZ(0);
@$pb.TagNumber(1)
set lineID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasLineID() => $_has(0);
@$pb.TagNumber(1)
void clearLineID() => $_clearField(1);
@$pb.TagNumber(2)
$1.QuantifiedRequestedGoods get shippedContent => $_getN(1);
@$pb.TagNumber(2)
set shippedContent($1.QuantifiedRequestedGoods value) => $_setField(2, value);
@$pb.TagNumber(2)
$core.bool hasShippedContent() => $_has(1);
@$pb.TagNumber(2)
void clearShippedContent() => $_clearField(2);
@$pb.TagNumber(2)
$1.QuantifiedRequestedGoods ensureShippedContent() => $_ensure(1);
}
///

View File

@@ -151,6 +151,7 @@ const OrderLine$json = {
{'1': 'RequestedContent', '3': 2, '4': 1, '5': 11, '6': '.api.QuantifiedRequestedGoods', '10': 'RequestedContent'},
{'1': 'MetaData', '3': 3, '4': 3, '5': 11, '6': '.api.MetadataElement', '8': {}, '10': 'MetaData'},
{'1': 'RequestedMetrics', '3': 4, '4': 1, '5': 11, '6': '.api.GoodsMetrics', '8': {}, '10': 'RequestedMetrics'},
{'1': 'ShippedContent', '3': 5, '4': 1, '5': 11, '6': '.api.QuantifiedRequestedGoods', '8': {}, '10': 'ShippedContent'},
],
};
@@ -165,7 +166,25 @@ final $typed_data.Uint8List orderLineDescriptor = $convert.base64Decode(
'bGVhbiBvciB0aW1lc3RhbXApwMEYAerBGANLZXmawhhZCg4KBVN0b2NrEgVzdG9jawoXCgVTdG'
'9jaxIOc3RvY2tfZXh0ZW5kZWQKHgoNRXhlY3V0aW9uZmxvdxINZXhlY3V0aW9uZmxvdwoOCgVP'
'cmRlchIFb3JkZXKqwhgFT3JkZXJSCE1ldGFEYXRhEkwKEFJlcXVlc3RlZE1ldHJpY3MYBCABKA'
'syES5hcGkuR29vZHNNZXRyaWNzQg2SQQJAAfpCBYoBAhgBUhBSZXF1ZXN0ZWRNZXRyaWNz');
'syES5hcGkuR29vZHNNZXRyaWNzQg2SQQJAAfpCBYoBAhgBUhBSZXF1ZXN0ZWRNZXRyaWNzEqQB'
'Cg5TaGlwcGVkQ29udGVudBgFIAEoCzIdLmFwaS5RdWFudGlmaWVkUmVxdWVzdGVkR29vZHNCXZ'
'rCGFkKDgoFU3RvY2sSBXN0b2NrChcKBVN0b2NrEg5zdG9ja19leHRlbmRlZAoeCg1FeGVjdXRp'
'b25mbG93Eg1leGVjdXRpb25mbG93Cg4KBU9yZGVyEgVvcmRlclIOU2hpcHBlZENvbnRlbnQ=');
@$core.Deprecated('Use orderShippedLineDescriptor instead')
const OrderShippedLine$json = {
'1': 'OrderShippedLine',
'2': [
{'1': 'LineID', '3': 1, '4': 1, '5': 9, '10': 'LineID'},
{'1': 'ShippedContent', '3': 2, '4': 1, '5': 11, '6': '.api.QuantifiedRequestedGoods', '10': 'ShippedContent'},
],
};
/// Descriptor for `OrderShippedLine`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List orderShippedLineDescriptor = $convert.base64Decode(
'ChBPcmRlclNoaXBwZWRMaW5lEhYKBkxpbmVJRBgBIAEoCVIGTGluZUlEEkUKDlNoaXBwZWRDb2'
'50ZW50GAIgASgLMh0uYXBpLlF1YW50aWZpZWRSZXF1ZXN0ZWRHb29kc1IOU2hpcHBlZENvbnRl'
'bnQ=');
@$core.Deprecated('Use exeFlowLineDescriptor instead')
const ExeFlowLine$json = {

View File

@@ -1,6 +1,6 @@
name: dart_core_sdk
description: dart libs from core model proto files
version: 1.14.0-SNAPSHOT-260520091345
version: 1.14.0-SNAPSHOT-260521140614
homepage: ''
publish_to: ''
repository: ''