You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
# CHANGELOG
|
||||
|
||||
Lib version: 1.12.0-SNAPSHOT-251215132626
|
||||
Lib version: 1.12.0-SNAPSHOT-251215134650
|
||||
|
||||
@@ -1729,13 +1729,13 @@ class Commission extends $pb.GeneratedMessage {
|
||||
factory Commission({
|
||||
$core.String? projectID,
|
||||
$core.String? orderID,
|
||||
$core.String? executionflowID,
|
||||
$core.Iterable<QuantityByUnit>? quantities,
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (projectID != null) result.projectID = projectID;
|
||||
if (orderID != null) result.orderID = orderID;
|
||||
if (executionflowID != null) result.executionflowID = executionflowID;
|
||||
if (quantities != null) result.quantities.addAll(quantities);
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
@@ -1748,7 +1748,7 @@ class Commission extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Commission', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
||||
..aOS(2, _omitFieldNames ? '' : 'OrderID', protoName: 'OrderID')
|
||||
..aOS(3, _omitFieldNames ? '' : 'ExecutionflowID', protoName: 'ExecutionflowID')
|
||||
..pc<QuantityByUnit>(3, _omitFieldNames ? '' : 'Quantities', $pb.PbFieldType.PM, protoName: 'Quantities', subBuilder: QuantityByUnit.create)
|
||||
..aOS(4, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
@@ -1789,13 +1789,7 @@ class Commission extends $pb.GeneratedMessage {
|
||||
void clearOrderID() => $_clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get executionflowID => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set executionflowID($core.String value) => $_setString(2, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasExecutionflowID() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearExecutionflowID() => $_clearField(3);
|
||||
$pb.PbList<QuantityByUnit> get quantities => $_getList(2);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get actorID => $_getSZ(3);
|
||||
@@ -1811,14 +1805,14 @@ class WMSCommission extends $pb.GeneratedMessage {
|
||||
factory WMSCommission({
|
||||
$core.String? projectID,
|
||||
$core.String? orderID,
|
||||
$core.Iterable<QuantityByUnit>? quantities,
|
||||
$core.String? actorID,
|
||||
$core.String? executionflowID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (projectID != null) result.projectID = projectID;
|
||||
if (orderID != null) result.orderID = orderID;
|
||||
if (quantities != null) result.quantities.addAll(quantities);
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
if (executionflowID != null) result.executionflowID = executionflowID;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -1830,8 +1824,8 @@ class WMSCommission extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'WMSCommission', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
||||
..aOS(2, _omitFieldNames ? '' : 'OrderID', protoName: 'OrderID')
|
||||
..pc<QuantityByUnit>(3, _omitFieldNames ? '' : 'Quantities', $pb.PbFieldType.PM, protoName: 'Quantities', subBuilder: QuantityByUnit.create)
|
||||
..aOS(4, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..aOS(5, _omitFieldNames ? '' : 'ExecutionflowID', protoName: 'ExecutionflowID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -1870,17 +1864,23 @@ class WMSCommission extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(2)
|
||||
void clearOrderID() => $_clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$pb.PbList<QuantityByUnit> get quantities => $_getList(2);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get actorID => $_getSZ(3);
|
||||
$core.String get actorID => $_getSZ(2);
|
||||
@$pb.TagNumber(4)
|
||||
set actorID($core.String value) => $_setString(3, value);
|
||||
set actorID($core.String value) => $_setString(2, value);
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasActorID() => $_has(3);
|
||||
$core.bool hasActorID() => $_has(2);
|
||||
@$pb.TagNumber(4)
|
||||
void clearActorID() => $_clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$core.String get executionflowID => $_getSZ(3);
|
||||
@$pb.TagNumber(5)
|
||||
set executionflowID($core.String value) => $_setString(3, value);
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasExecutionflowID() => $_has(3);
|
||||
@$pb.TagNumber(5)
|
||||
void clearExecutionflowID() => $_clearField(5);
|
||||
}
|
||||
|
||||
class Booking extends $pb.GeneratedMessage {
|
||||
|
||||
@@ -506,7 +506,7 @@ const Commission$json = {
|
||||
'2': [
|
||||
{'1': 'ProjectID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ProjectID'},
|
||||
{'1': 'OrderID', '3': 2, '4': 1, '5': 9, '10': 'OrderID'},
|
||||
{'1': 'ExecutionflowID', '3': 3, '4': 1, '5': 9, '10': 'ExecutionflowID'},
|
||||
{'1': 'Quantities', '3': 3, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '8': {}, '10': 'Quantities'},
|
||||
{'1': 'ActorID', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'ActorID'},
|
||||
],
|
||||
};
|
||||
@@ -514,8 +514,9 @@ const Commission$json = {
|
||||
/// Descriptor for `Commission`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List commissionDescriptor = $convert.base64Decode(
|
||||
'CgpDb21taXNzaW9uEiUKCVByb2plY3RJRBgBIAEoCUIH+kIEcgIQAVIJUHJvamVjdElEEhgKB0'
|
||||
'9yZGVySUQYAiABKAlSB09yZGVySUQSKAoPRXhlY3V0aW9uZmxvd0lEGAMgASgJUg9FeGVjdXRp'
|
||||
'b25mbG93SUQSIQoHQWN0b3JJRBgEIAEoCUIH+kIEcgIQAVIHQWN0b3JJRA==');
|
||||
'9yZGVySUQYAiABKAlSB09yZGVySUQSPQoKUXVhbnRpdGllcxgDIAMoCzITLmFwaS5RdWFudGl0'
|
||||
'eUJ5VW5pdEII+kIFkgECCAFSClF1YW50aXRpZXMSIQoHQWN0b3JJRBgEIAEoCUIH+kIEcgIQAV'
|
||||
'IHQWN0b3JJRA==');
|
||||
|
||||
@$core.Deprecated('Use wMSCommissionDescriptor instead')
|
||||
const WMSCommission$json = {
|
||||
@@ -523,7 +524,7 @@ const WMSCommission$json = {
|
||||
'2': [
|
||||
{'1': 'ProjectID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ProjectID'},
|
||||
{'1': 'OrderID', '3': 2, '4': 1, '5': 9, '10': 'OrderID'},
|
||||
{'1': 'Quantities', '3': 3, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '8': {}, '10': 'Quantities'},
|
||||
{'1': 'ExecutionflowID', '3': 5, '4': 1, '5': 9, '10': 'ExecutionflowID'},
|
||||
{'1': 'ActorID', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'ActorID'},
|
||||
],
|
||||
};
|
||||
@@ -531,9 +532,8 @@ const WMSCommission$json = {
|
||||
/// Descriptor for `WMSCommission`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List wMSCommissionDescriptor = $convert.base64Decode(
|
||||
'Cg1XTVNDb21taXNzaW9uEiUKCVByb2plY3RJRBgBIAEoCUIH+kIEcgIQAVIJUHJvamVjdElEEh'
|
||||
'gKB09yZGVySUQYAiABKAlSB09yZGVySUQSPQoKUXVhbnRpdGllcxgDIAMoCzITLmFwaS5RdWFu'
|
||||
'dGl0eUJ5VW5pdEII+kIFkgECCAFSClF1YW50aXRpZXMSIQoHQWN0b3JJRBgEIAEoCUIH+kIEcg'
|
||||
'IQAVIHQWN0b3JJRA==');
|
||||
'gKB09yZGVySUQYAiABKAlSB09yZGVySUQSKAoPRXhlY3V0aW9uZmxvd0lEGAUgASgJUg9FeGVj'
|
||||
'dXRpb25mbG93SUQSIQoHQWN0b3JJRBgEIAEoCUIH+kIEcgIQAVIHQWN0b3JJRA==');
|
||||
|
||||
@$core.Deprecated('Use bookingDescriptor instead')
|
||||
const Booking$json = {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: dart_core_sdk
|
||||
description: dart libs from core model proto files
|
||||
version: 1.12.0-SNAPSHOT-251215132626
|
||||
version: 1.12.0-SNAPSHOT-251215134650
|
||||
homepage: ''
|
||||
publish_to: ''
|
||||
repository: ''
|
||||
|
||||
Reference in New Issue
Block a user