You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
# CHANGELOG
|
||||
|
||||
Lib version: 1.14.0-SNAPSHOT-260505074357
|
||||
Lib version: 1.14.0-SNAPSHOT-260505091717
|
||||
|
||||
@@ -47,6 +47,7 @@ class OrderPayload extends $pb.GeneratedMessage {
|
||||
$core.int? claimNumber,
|
||||
$core.Iterable<$1.ETAbyExecutionflow>? executionflowETAs,
|
||||
$1.ETA? orderETA,
|
||||
$core.bool? anticipated,
|
||||
}) {
|
||||
final result = create();
|
||||
if (creationDateTime != null) result.creationDateTime = creationDateTime;
|
||||
@@ -71,6 +72,7 @@ class OrderPayload extends $pb.GeneratedMessage {
|
||||
if (claimNumber != null) result.claimNumber = claimNumber;
|
||||
if (executionflowETAs != null) result.executionflowETAs.addAll(executionflowETAs);
|
||||
if (orderETA != null) result.orderETA = orderETA;
|
||||
if (anticipated != null) result.anticipated = anticipated;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -102,6 +104,7 @@ class OrderPayload extends $pb.GeneratedMessage {
|
||||
..a<$core.int>(21, _omitFieldNames ? '' : 'ClaimNumber', $pb.PbFieldType.O3, protoName: 'ClaimNumber')
|
||||
..pc<$1.ETAbyExecutionflow>(22, _omitFieldNames ? '' : 'ExecutionflowETAs', $pb.PbFieldType.PM, protoName: 'ExecutionflowETAs', subBuilder: $1.ETAbyExecutionflow.create)
|
||||
..aOM<$1.ETA>(23, _omitFieldNames ? '' : 'OrderETA', protoName: 'OrderETA', subBuilder: $1.ETA.create)
|
||||
..aOB(24, _omitFieldNames ? '' : 'Anticipated', protoName: 'Anticipated')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -318,6 +321,15 @@ class OrderPayload extends $pb.GeneratedMessage {
|
||||
void clearOrderETA() => $_clearField(23);
|
||||
@$pb.TagNumber(23)
|
||||
$1.ETA ensureOrderETA() => $_ensure(21);
|
||||
|
||||
@$pb.TagNumber(24)
|
||||
$core.bool get anticipated => $_getBF(22);
|
||||
@$pb.TagNumber(24)
|
||||
set anticipated($core.bool value) => $_setBool(22, value);
|
||||
@$pb.TagNumber(24)
|
||||
$core.bool hasAnticipated() => $_has(22);
|
||||
@$pb.TagNumber(24)
|
||||
void clearAnticipated() => $_clearField(24);
|
||||
}
|
||||
|
||||
/// Order entity
|
||||
|
||||
@@ -48,6 +48,7 @@ const OrderPayload$json = {
|
||||
{'1': 'ClaimNumber', '3': 21, '4': 1, '5': 5, '8': {}, '10': 'ClaimNumber'},
|
||||
{'1': 'ExecutionflowETAs', '3': 22, '4': 3, '5': 11, '6': '.api.ETAbyExecutionflow', '8': {}, '10': 'ExecutionflowETAs'},
|
||||
{'1': 'OrderETA', '3': 23, '4': 1, '5': 11, '6': '.api.ETA', '8': {}, '10': 'OrderETA'},
|
||||
{'1': 'Anticipated', '3': 24, '4': 1, '5': 8, '8': {}, '10': 'Anticipated'},
|
||||
],
|
||||
};
|
||||
|
||||
@@ -97,7 +98,9 @@ final $typed_data.Uint8List orderPayloadDescriptor = $convert.base64Decode(
|
||||
'xvd0lE8sEYF0V4ZWN1dGlvbmZsb3dFVEFVcGRhdGVkUhFFeGVjdXRpb25mbG93RVRBcxJ7CghP'
|
||||
'cmRlckVUQRgXIAEoCzIILmFwaS5FVEFCVZJBPDI6RVRBIGZvciB0aGUgb3JkZXIsIGNvbXB1dG'
|
||||
'VkIGZyb20gRVRBIG9mIHRoZSBleGVjaXRpb25GbG93c/pCBYoBAhgB8sEYCkVUQVVwZGF0ZWRS'
|
||||
'CE9yZGVyRVRB');
|
||||
'CE9yZGVyRVRBEm4KC0FudGljaXBhdGVkGBggASgIQkySQUkyR0FudGljaXBhdGVkIG9yZGVycy'
|
||||
'BhcmUgbm90IGF1dG9tYXRpY2FsbHkgYXNzb2NpYXRlZCB0byBhbiBleGVjdXRpb25mbG93UgtB'
|
||||
'bnRpY2lwYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use orderDescriptor instead')
|
||||
const Order$json = {
|
||||
|
||||
@@ -36,6 +36,7 @@ class OrderBuildExecutionflowPayload extends $pb.GeneratedMessage {
|
||||
$1.OrderRequestedMilestones? requestedMilestones,
|
||||
$core.Iterable<$1.OrderLine>? lines,
|
||||
$core.String? carrierService,
|
||||
$core.bool? anticipated,
|
||||
}) {
|
||||
final result = create();
|
||||
if (creationDateTime != null) result.creationDateTime = creationDateTime;
|
||||
@@ -50,6 +51,7 @@ class OrderBuildExecutionflowPayload extends $pb.GeneratedMessage {
|
||||
if (requestedMilestones != null) result.requestedMilestones = requestedMilestones;
|
||||
if (lines != null) result.lines.addAll(lines);
|
||||
if (carrierService != null) result.carrierService = carrierService;
|
||||
if (anticipated != null) result.anticipated = anticipated;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -71,6 +73,7 @@ class OrderBuildExecutionflowPayload extends $pb.GeneratedMessage {
|
||||
..aOM<$1.OrderRequestedMilestones>(10, _omitFieldNames ? '' : 'RequestedMilestones', protoName: 'RequestedMilestones', subBuilder: $1.OrderRequestedMilestones.create)
|
||||
..pc<$1.OrderLine>(11, _omitFieldNames ? '' : 'Lines', $pb.PbFieldType.PM, protoName: 'Lines', subBuilder: $1.OrderLine.create)
|
||||
..aOS(16, _omitFieldNames ? '' : 'CarrierService', protoName: 'CarrierService')
|
||||
..aOB(17, _omitFieldNames ? '' : 'Anticipated', protoName: 'Anticipated')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -208,6 +211,15 @@ class OrderBuildExecutionflowPayload extends $pb.GeneratedMessage {
|
||||
$core.bool hasCarrierService() => $_has(11);
|
||||
@$pb.TagNumber(16)
|
||||
void clearCarrierService() => $_clearField(16);
|
||||
|
||||
@$pb.TagNumber(17)
|
||||
$core.bool get anticipated => $_getBF(12);
|
||||
@$pb.TagNumber(17)
|
||||
set anticipated($core.bool value) => $_setBool(12, value);
|
||||
@$pb.TagNumber(17)
|
||||
$core.bool hasAnticipated() => $_has(12);
|
||||
@$pb.TagNumber(17)
|
||||
void clearAnticipated() => $_clearField(17);
|
||||
}
|
||||
|
||||
class OrderBuildExecutionflow extends $pb.GeneratedMessage {
|
||||
@@ -317,9 +329,11 @@ class OrderBuildExecutionflow extends $pb.GeneratedMessage {
|
||||
class OrderPropagateLinesToExecutionflowPayload extends $pb.GeneratedMessage {
|
||||
factory OrderPropagateLinesToExecutionflowPayload({
|
||||
$core.Iterable<$1.OrderLine>? lines,
|
||||
$core.bool? anticipated,
|
||||
}) {
|
||||
final result = create();
|
||||
if (lines != null) result.lines.addAll(lines);
|
||||
if (anticipated != null) result.anticipated = anticipated;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -330,6 +344,7 @@ class OrderPropagateLinesToExecutionflowPayload extends $pb.GeneratedMessage {
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'OrderPropagateLinesToExecutionflowPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pc<$1.OrderLine>(1, _omitFieldNames ? '' : 'Lines', $pb.PbFieldType.PM, protoName: 'Lines', subBuilder: $1.OrderLine.create)
|
||||
..aOB(2, _omitFieldNames ? '' : 'Anticipated', protoName: 'Anticipated')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -353,6 +368,15 @@ class OrderPropagateLinesToExecutionflowPayload extends $pb.GeneratedMessage {
|
||||
/// Lines of the order
|
||||
@$pb.TagNumber(1)
|
||||
$pb.PbList<$1.OrderLine> get lines => $_getList(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool get anticipated => $_getBF(1);
|
||||
@$pb.TagNumber(2)
|
||||
set anticipated($core.bool value) => $_setBool(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasAnticipated() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearAnticipated() => $_clearField(2);
|
||||
}
|
||||
|
||||
class OrderPropagateLinesToExecutionflow extends $pb.GeneratedMessage {
|
||||
|
||||
@@ -30,6 +30,7 @@ const OrderBuildExecutionflowPayload$json = {
|
||||
{'1': 'CarrierService', '3': 16, '4': 1, '5': 9, '8': {}, '10': 'CarrierService'},
|
||||
{'1': 'RequestedMilestones', '3': 10, '4': 1, '5': 11, '6': '.api.OrderRequestedMilestones', '10': 'RequestedMilestones'},
|
||||
{'1': 'Lines', '3': 11, '4': 3, '5': 11, '6': '.api.OrderLine', '8': {}, '10': 'Lines'},
|
||||
{'1': 'Anticipated', '3': 17, '4': 1, '5': 8, '8': {}, '10': 'Anticipated'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -54,9 +55,11 @@ final $typed_data.Uint8List orderBuildExecutionflowPayloadDescriptor = $convert.
|
||||
'FycmllclNlcnZpY2UYECABKAlCHJJBGTIXVHlwZSBvZiBjYXJyaWVyIHNlcnZpY2VSDkNhcnJp'
|
||||
'ZXJTZXJ2aWNlEk8KE1JlcXVlc3RlZE1pbGVzdG9uZXMYCiABKAsyHS5hcGkuT3JkZXJSZXF1ZX'
|
||||
'N0ZWRNaWxlc3RvbmVzUhNSZXF1ZXN0ZWRNaWxlc3RvbmVzEkcKBUxpbmVzGAsgAygLMg4uYXBp'
|
||||
'Lk9yZGVyTGluZUIhkkEUMhJMaW5lcyBvZiB0aGUgb3JkZXLqwRgGTGluZUlEUgVMaW5lczpKkk'
|
||||
'EiCiAyHkJ1aWxkIEV4ZWN1dGlvbmZsb3cgZnJvbSBPcmRlcqK7GAdDb21tYW5kqLsYAbK7GBJC'
|
||||
'dWlsZEV4ZWN1dGlvbmZsb3c=');
|
||||
'Lk9yZGVyTGluZUIhkkEUMhJMaW5lcyBvZiB0aGUgb3JkZXLqwRgGTGluZUlEUgVMaW5lcxJuCg'
|
||||
'tBbnRpY2lwYXRlZBgRIAEoCEJMkkFJMkdBbnRpY2lwYXRlZCBvcmRlcnMgYXJlIG5vdCBhdXRv'
|
||||
'bWF0aWNhbGx5IGFzc29jaWF0ZWQgdG8gYW4gZXhlY3V0aW9uZmxvd1ILQW50aWNpcGF0ZWQ6Sp'
|
||||
'JBIgogMh5CdWlsZCBFeGVjdXRpb25mbG93IGZyb20gT3JkZXKiuxgHQ29tbWFuZKi7GAGyuxgS'
|
||||
'QnVpbGRFeGVjdXRpb25mbG93');
|
||||
|
||||
@$core.Deprecated('Use orderBuildExecutionflowDescriptor instead')
|
||||
const OrderBuildExecutionflow$json = {
|
||||
@@ -87,6 +90,7 @@ const OrderPropagateLinesToExecutionflowPayload$json = {
|
||||
'1': 'OrderPropagateLinesToExecutionflowPayload',
|
||||
'2': [
|
||||
{'1': 'Lines', '3': 1, '4': 3, '5': 11, '6': '.api.OrderLine', '8': {}, '10': 'Lines'},
|
||||
{'1': 'Anticipated', '3': 2, '4': 1, '5': 8, '8': {}, '10': 'Anticipated'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -95,8 +99,10 @@ const OrderPropagateLinesToExecutionflowPayload$json = {
|
||||
final $typed_data.Uint8List orderPropagateLinesToExecutionflowPayloadDescriptor = $convert.base64Decode(
|
||||
'CilPcmRlclByb3BhZ2F0ZUxpbmVzVG9FeGVjdXRpb25mbG93UGF5bG9hZBJHCgVMaW5lcxgBIA'
|
||||
'MoCzIOLmFwaS5PcmRlckxpbmVCIZJBFDISTGluZXMgb2YgdGhlIG9yZGVy6sEYBkxpbmVJRFIF'
|
||||
'TGluZXM6YpJBLwotMitQcm9wYWdhdGUgbGluZXMgZnJvbSBPcmRlciB0byBFeGVjdXRpb25mbG'
|
||||
'93orsYB0NvbW1hbmSouxgBsrsYHVByb3BhZ2F0ZUxpbmVzVG9FeGVjdXRpb25mbG93');
|
||||
'TGluZXMSbgoLQW50aWNpcGF0ZWQYAiABKAhCTJJBSTJHQW50aWNpcGF0ZWQgb3JkZXJzIGFyZS'
|
||||
'Bub3QgYXV0b21hdGljYWxseSBhc3NvY2lhdGVkIHRvIGFuIGV4ZWN1dGlvbmZsb3dSC0FudGlj'
|
||||
'aXBhdGVkOmKSQS8KLTIrUHJvcGFnYXRlIGxpbmVzIGZyb20gT3JkZXIgdG8gRXhlY3V0aW9uZm'
|
||||
'xvd6K7GAdDb21tYW5kqLsYAbK7GB1Qcm9wYWdhdGVMaW5lc1RvRXhlY3V0aW9uZmxvdw==');
|
||||
|
||||
@$core.Deprecated('Use orderPropagateLinesToExecutionflowDescriptor instead')
|
||||
const OrderPropagateLinesToExecutionflow$json = {
|
||||
|
||||
@@ -33,6 +33,7 @@ class OrderCreatedPayload extends $pb.GeneratedMessage {
|
||||
$2.OrderRequestedMilestones? requestedMilestones,
|
||||
$core.Iterable<$2.OrderLine>? lines,
|
||||
$core.String? carrierService,
|
||||
$core.bool? anticipated,
|
||||
}) {
|
||||
final result = create();
|
||||
if (creationDateTime != null) result.creationDateTime = creationDateTime;
|
||||
@@ -47,6 +48,7 @@ class OrderCreatedPayload extends $pb.GeneratedMessage {
|
||||
if (requestedMilestones != null) result.requestedMilestones = requestedMilestones;
|
||||
if (lines != null) result.lines.addAll(lines);
|
||||
if (carrierService != null) result.carrierService = carrierService;
|
||||
if (anticipated != null) result.anticipated = anticipated;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -68,6 +70,7 @@ class OrderCreatedPayload extends $pb.GeneratedMessage {
|
||||
..aOM<$2.OrderRequestedMilestones>(10, _omitFieldNames ? '' : 'RequestedMilestones', protoName: 'RequestedMilestones', subBuilder: $2.OrderRequestedMilestones.create)
|
||||
..pc<$2.OrderLine>(11, _omitFieldNames ? '' : 'Lines', $pb.PbFieldType.PM, protoName: 'Lines', subBuilder: $2.OrderLine.create)
|
||||
..aOS(12, _omitFieldNames ? '' : 'CarrierService', protoName: 'CarrierService')
|
||||
..aOB(13, _omitFieldNames ? '' : 'Anticipated', protoName: 'Anticipated')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -205,6 +208,15 @@ class OrderCreatedPayload extends $pb.GeneratedMessage {
|
||||
$core.bool hasCarrierService() => $_has(11);
|
||||
@$pb.TagNumber(12)
|
||||
void clearCarrierService() => $_clearField(12);
|
||||
|
||||
@$pb.TagNumber(13)
|
||||
$core.bool get anticipated => $_getBF(12);
|
||||
@$pb.TagNumber(13)
|
||||
set anticipated($core.bool value) => $_setBool(12, value);
|
||||
@$pb.TagNumber(13)
|
||||
$core.bool hasAnticipated() => $_has(12);
|
||||
@$pb.TagNumber(13)
|
||||
void clearAnticipated() => $_clearField(13);
|
||||
}
|
||||
|
||||
class OrderCreatedEvent extends $pb.GeneratedMessage {
|
||||
|
||||
@@ -30,6 +30,7 @@ const OrderCreatedPayload$json = {
|
||||
{'1': 'CarrierService', '3': 12, '4': 1, '5': 9, '8': {}, '10': 'CarrierService'},
|
||||
{'1': 'RequestedMilestones', '3': 10, '4': 1, '5': 11, '6': '.api.OrderRequestedMilestones', '10': 'RequestedMilestones'},
|
||||
{'1': 'Lines', '3': 11, '4': 3, '5': 11, '6': '.api.OrderLine', '8': {}, '10': 'Lines'},
|
||||
{'1': 'Anticipated', '3': 13, '4': 1, '5': 8, '8': {}, '10': 'Anticipated'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -55,9 +56,11 @@ final $typed_data.Uint8List orderCreatedPayloadDescriptor = $convert.base64Decod
|
||||
'cmllciBzZXJ2aWNlUg5DYXJyaWVyU2VydmljZRJPChNSZXF1ZXN0ZWRNaWxlc3RvbmVzGAogAS'
|
||||
'gLMh0uYXBpLk9yZGVyUmVxdWVzdGVkTWlsZXN0b25lc1ITUmVxdWVzdGVkTWlsZXN0b25lcxJH'
|
||||
'CgVMaW5lcxgLIAMoCzIOLmFwaS5PcmRlckxpbmVCIZJBFDISTGluZXMgb2YgdGhlIG9yZGVy6s'
|
||||
'EYBkxpbmVJRFIFTGluZXM6cpJBNAoy0gEQQ3JlYXRpb25EYXRlVGltZdIBBlNoaXBUb9IBE0xh'
|
||||
'bmd1YWdlQ29kZUlTTzYzOTGiuxgFRXZlbnSouxgBursYB0NyZWF0ZWTKuxgfY29tcHV0ZUVxdW'
|
||||
'l2YWxlbnRMVkJhc2VRdWFudGl0eQ==');
|
||||
'EYBkxpbmVJRFIFTGluZXMSbgoLQW50aWNpcGF0ZWQYDSABKAhCTJJBSTJHQW50aWNpcGF0ZWQg'
|
||||
'b3JkZXJzIGFyZSBub3QgYXV0b21hdGljYWxseSBhc3NvY2lhdGVkIHRvIGFuIGV4ZWN1dGlvbm'
|
||||
'Zsb3dSC0FudGljaXBhdGVkOnKSQTQKMtIBEENyZWF0aW9uRGF0ZVRpbWXSAQZTaGlwVG/SARNM'
|
||||
'YW5ndWFnZUNvZGVJU082MzkxorsYBUV2ZW50qLsYAbq7GAdDcmVhdGVkyrsYH2NvbXB1dGVFcX'
|
||||
'VpdmFsZW50TFZCYXNlUXVhbnRpdHk=');
|
||||
|
||||
@$core.Deprecated('Use orderCreatedEventDescriptor instead')
|
||||
const OrderCreatedEvent$json = {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: dart_core_sdk
|
||||
description: dart libs from core model proto files
|
||||
version: 1.14.0-SNAPSHOT-260505074357
|
||||
version: 1.14.0-SNAPSHOT-260505091717
|
||||
homepage: ''
|
||||
publish_to: ''
|
||||
repository: ''
|
||||
|
||||
Reference in New Issue
Block a user