You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
Lib version: 1.13.0-SNAPSHOT-260226162558
|
Lib version: 1.13.0-SNAPSHOT-260226175428
|
||||||
|
|||||||
@@ -2264,11 +2264,15 @@ class BookableSlot extends $pb.GeneratedMessage {
|
|||||||
Slot? slot,
|
Slot? slot,
|
||||||
$core.int? availability,
|
$core.int? availability,
|
||||||
$core.String? reason,
|
$core.String? reason,
|
||||||
|
SlotAvailabilityReasonCode? reasonCode,
|
||||||
|
$core.Iterable<CapacityDefinition>? reachedLimitations,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (slot != null) result.slot = slot;
|
if (slot != null) result.slot = slot;
|
||||||
if (availability != null) result.availability = availability;
|
if (availability != null) result.availability = availability;
|
||||||
if (reason != null) result.reason = reason;
|
if (reason != null) result.reason = reason;
|
||||||
|
if (reasonCode != null) result.reasonCode = reasonCode;
|
||||||
|
if (reachedLimitations != null) result.reachedLimitations.addAll(reachedLimitations);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2281,6 +2285,8 @@ class BookableSlot extends $pb.GeneratedMessage {
|
|||||||
..aOM<Slot>(1, _omitFieldNames ? '' : 'Slot', protoName: 'Slot', subBuilder: Slot.create)
|
..aOM<Slot>(1, _omitFieldNames ? '' : 'Slot', protoName: 'Slot', subBuilder: Slot.create)
|
||||||
..a<$core.int>(2, _omitFieldNames ? '' : 'Availability', $pb.PbFieldType.O3, protoName: 'Availability')
|
..a<$core.int>(2, _omitFieldNames ? '' : 'Availability', $pb.PbFieldType.O3, protoName: 'Availability')
|
||||||
..aOS(3, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
|
..aOS(3, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
|
||||||
|
..e<SlotAvailabilityReasonCode>(4, _omitFieldNames ? '' : 'ReasonCode', $pb.PbFieldType.OE, protoName: 'ReasonCode', defaultOrMaker: SlotAvailabilityReasonCode.SLOT_REASON_0000_UNKNOWN, valueOf: SlotAvailabilityReasonCode.valueOf, enumValues: SlotAvailabilityReasonCode.values)
|
||||||
|
..pc<CapacityDefinition>(5, _omitFieldNames ? '' : 'ReachedLimitations', $pb.PbFieldType.PM, protoName: 'ReachedLimitations', subBuilder: CapacityDefinition.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -2329,6 +2335,18 @@ class BookableSlot extends $pb.GeneratedMessage {
|
|||||||
$core.bool hasReason() => $_has(2);
|
$core.bool hasReason() => $_has(2);
|
||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
void clearReason() => $_clearField(3);
|
void clearReason() => $_clearField(3);
|
||||||
|
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
SlotAvailabilityReasonCode get reasonCode => $_getN(3);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
set reasonCode(SlotAvailabilityReasonCode value) => $_setField(4, value);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
$core.bool hasReasonCode() => $_has(3);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
void clearReasonCode() => $_clearField(4);
|
||||||
|
|
||||||
|
@$pb.TagNumber(5)
|
||||||
|
$pb.PbList<CapacityDefinition> get reachedLimitations => $_getList(4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -84,5 +84,32 @@ class SegmentationConstraintType extends $pb.ProtobufEnum {
|
|||||||
const SegmentationConstraintType._(super.value, super.name);
|
const SegmentationConstraintType._(super.value, super.name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class SlotAvailabilityReasonCode extends $pb.ProtobufEnum {
|
||||||
|
static const SlotAvailabilityReasonCode SLOT_REASON_0000_UNKNOWN = SlotAvailabilityReasonCode._(0, _omitEnumNames ? '' : 'SLOT_REASON_0000_UNKNOWN');
|
||||||
|
static const SlotAvailabilityReasonCode SLOT_REASON_1000_AVAILABLE = SlotAvailabilityReasonCode._(1000, _omitEnumNames ? '' : 'SLOT_REASON_1000_AVAILABLE');
|
||||||
|
static const SlotAvailabilityReasonCode SLOT_REASON_1100_AVAILABLE_BEFORE_MINIMUM_NOTICE_TIME = SlotAvailabilityReasonCode._(1100, _omitEnumNames ? '' : 'SLOT_REASON_1100_AVAILABLE_BEFORE_MINIMUM_NOTICE_TIME');
|
||||||
|
static const SlotAvailabilityReasonCode SLOT_REASON_1200_AVAILABLE_AFTER_MAXIMUM_NOTICE_TIME = SlotAvailabilityReasonCode._(1200, _omitEnumNames ? '' : 'SLOT_REASON_1200_AVAILABLE_AFTER_MAXIMUM_NOTICE_TIME');
|
||||||
|
static const SlotAvailabilityReasonCode SLOT_REASON_2000_OVERBOOKED = SlotAvailabilityReasonCode._(2000, _omitEnumNames ? '' : 'SLOT_REASON_2000_OVERBOOKED');
|
||||||
|
static const SlotAvailabilityReasonCode SLOT_REASON_2100_OVERBOOKED_BEFORE_MINIMUM_NOTICE_TIME = SlotAvailabilityReasonCode._(2100, _omitEnumNames ? '' : 'SLOT_REASON_2100_OVERBOOKED_BEFORE_MINIMUM_NOTICE_TIME');
|
||||||
|
static const SlotAvailabilityReasonCode SLOT_REASON_2200_OVERBOOKED_AFTER_MAXIMUM_NOTICE_TIME = SlotAvailabilityReasonCode._(2200, _omitEnumNames ? '' : 'SLOT_REASON_2200_OVERBOOKED_AFTER_MAXIMUM_NOTICE_TIME');
|
||||||
|
static const SlotAvailabilityReasonCode SLOT_REASON_4000_CLOSED = SlotAvailabilityReasonCode._(4000, _omitEnumNames ? '' : 'SLOT_REASON_4000_CLOSED');
|
||||||
|
|
||||||
|
static const $core.List<SlotAvailabilityReasonCode> values = <SlotAvailabilityReasonCode> [
|
||||||
|
SLOT_REASON_0000_UNKNOWN,
|
||||||
|
SLOT_REASON_1000_AVAILABLE,
|
||||||
|
SLOT_REASON_1100_AVAILABLE_BEFORE_MINIMUM_NOTICE_TIME,
|
||||||
|
SLOT_REASON_1200_AVAILABLE_AFTER_MAXIMUM_NOTICE_TIME,
|
||||||
|
SLOT_REASON_2000_OVERBOOKED,
|
||||||
|
SLOT_REASON_2100_OVERBOOKED_BEFORE_MINIMUM_NOTICE_TIME,
|
||||||
|
SLOT_REASON_2200_OVERBOOKED_AFTER_MAXIMUM_NOTICE_TIME,
|
||||||
|
SLOT_REASON_4000_CLOSED,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.Map<$core.int, SlotAvailabilityReasonCode> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||||
|
static SlotAvailabilityReasonCode? valueOf($core.int value) => _byValue[value];
|
||||||
|
|
||||||
|
const SlotAvailabilityReasonCode._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|
||||||
|
|||||||
@@ -81,6 +81,32 @@ final $typed_data.Uint8List segmentationConstraintTypeDescriptor = $convert.base
|
|||||||
'SUNFEAESMAosU0VHTUVOVEFUSU9OX0NPTlNUUkFJTlRfVFlQRV9PUkRFUl9BVFRSSUJVVEUQAg'
|
'SUNFEAESMAosU0VHTUVOVEFUSU9OX0NPTlNUUkFJTlRfVFlQRV9PUkRFUl9BVFRSSUJVVEUQAg'
|
||||||
'==');
|
'==');
|
||||||
|
|
||||||
|
@$core.Deprecated('Use slotAvailabilityReasonCodeDescriptor instead')
|
||||||
|
const SlotAvailabilityReasonCode$json = {
|
||||||
|
'1': 'SlotAvailabilityReasonCode',
|
||||||
|
'2': [
|
||||||
|
{'1': 'SLOT_REASON_0000_UNKNOWN', '2': 0},
|
||||||
|
{'1': 'SLOT_REASON_1000_AVAILABLE', '2': 1000},
|
||||||
|
{'1': 'SLOT_REASON_1100_AVAILABLE_BEFORE_MINIMUM_NOTICE_TIME', '2': 1100},
|
||||||
|
{'1': 'SLOT_REASON_1200_AVAILABLE_AFTER_MAXIMUM_NOTICE_TIME', '2': 1200},
|
||||||
|
{'1': 'SLOT_REASON_2000_OVERBOOKED', '2': 2000},
|
||||||
|
{'1': 'SLOT_REASON_2100_OVERBOOKED_BEFORE_MINIMUM_NOTICE_TIME', '2': 2100},
|
||||||
|
{'1': 'SLOT_REASON_2200_OVERBOOKED_AFTER_MAXIMUM_NOTICE_TIME', '2': 2200},
|
||||||
|
{'1': 'SLOT_REASON_4000_CLOSED', '2': 4000},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `SlotAvailabilityReasonCode`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||||
|
final $typed_data.Uint8List slotAvailabilityReasonCodeDescriptor = $convert.base64Decode(
|
||||||
|
'ChpTbG90QXZhaWxhYmlsaXR5UmVhc29uQ29kZRIcChhTTE9UX1JFQVNPTl8wMDAwX1VOS05PV0'
|
||||||
|
'4QABIfChpTTE9UX1JFQVNPTl8xMDAwX0FWQUlMQUJMRRDoBxI6CjVTTE9UX1JFQVNPTl8xMTAw'
|
||||||
|
'X0FWQUlMQUJMRV9CRUZPUkVfTUlOSU1VTV9OT1RJQ0VfVElNRRDMCBI5CjRTTE9UX1JFQVNPTl'
|
||||||
|
'8xMjAwX0FWQUlMQUJMRV9BRlRFUl9NQVhJTVVNX05PVElDRV9USU1FELAJEiAKG1NMT1RfUkVB'
|
||||||
|
'U09OXzIwMDBfT1ZFUkJPT0tFRBDQDxI7CjZTTE9UX1JFQVNPTl8yMTAwX09WRVJCT09LRURfQk'
|
||||||
|
'VGT1JFX01JTklNVU1fTk9USUNFX1RJTUUQtBASOgo1U0xPVF9SRUFTT05fMjIwMF9PVkVSQk9P'
|
||||||
|
'S0VEX0FGVEVSX01BWElNVU1fTk9USUNFX1RJTUUQmBESHAoXU0xPVF9SRUFTT05fNDAwMF9DTE'
|
||||||
|
'9TRUQQoB8=');
|
||||||
|
|
||||||
@$core.Deprecated('Use unitDescriptor instead')
|
@$core.Deprecated('Use unitDescriptor instead')
|
||||||
const Unit$json = {
|
const Unit$json = {
|
||||||
'1': 'Unit',
|
'1': 'Unit',
|
||||||
@@ -645,6 +671,8 @@ const BookableSlot$json = {
|
|||||||
{'1': 'Slot', '3': 1, '4': 1, '5': 11, '6': '.api.Slot', '10': 'Slot'},
|
{'1': 'Slot', '3': 1, '4': 1, '5': 11, '6': '.api.Slot', '10': 'Slot'},
|
||||||
{'1': 'Availability', '3': 2, '4': 1, '5': 5, '8': {}, '10': 'Availability'},
|
{'1': 'Availability', '3': 2, '4': 1, '5': 5, '8': {}, '10': 'Availability'},
|
||||||
{'1': 'Reason', '3': 3, '4': 1, '5': 9, '10': 'Reason'},
|
{'1': 'Reason', '3': 3, '4': 1, '5': 9, '10': 'Reason'},
|
||||||
|
{'1': 'ReasonCode', '3': 4, '4': 1, '5': 14, '6': '.api.SlotAvailabilityReasonCode', '10': 'ReasonCode'},
|
||||||
|
{'1': 'ReachedLimitations', '3': 5, '4': 3, '5': 11, '6': '.api.CapacityDefinition', '10': 'ReachedLimitations'},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -652,5 +680,7 @@ const BookableSlot$json = {
|
|||||||
final $typed_data.Uint8List bookableSlotDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List bookableSlotDescriptor = $convert.base64Decode(
|
||||||
'CgxCb29rYWJsZVNsb3QSHQoEU2xvdBgBIAEoCzIJLmFwaS5TbG90UgRTbG90EjYKDEF2YWlsYW'
|
'CgxCb29rYWJsZVNsb3QSHQoEU2xvdBgBIAEoCzIJLmFwaS5TbG90UgRTbG90EjYKDEF2YWlsYW'
|
||||||
'JpbGl0eRgCIAEoBUIS+kIPGg0YZCj///////////8BUgxBdmFpbGFiaWxpdHkSFgoGUmVhc29u'
|
'JpbGl0eRgCIAEoBUIS+kIPGg0YZCj///////////8BUgxBdmFpbGFiaWxpdHkSFgoGUmVhc29u'
|
||||||
'GAMgASgJUgZSZWFzb24=');
|
'GAMgASgJUgZSZWFzb24SPwoKUmVhc29uQ29kZRgEIAEoDjIfLmFwaS5TbG90QXZhaWxhYmlsaX'
|
||||||
|
'R5UmVhc29uQ29kZVIKUmVhc29uQ29kZRJHChJSZWFjaGVkTGltaXRhdGlvbnMYBSADKAsyFy5h'
|
||||||
|
'cGkuQ2FwYWNpdHlEZWZpbml0aW9uUhJSZWFjaGVkTGltaXRhdGlvbnM=');
|
||||||
|
|
||||||
|
|||||||
@@ -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.13.0-SNAPSHOT-260226162558
|
version: 1.13.0-SNAPSHOT-260226175428
|
||||||
homepage: ''
|
homepage: ''
|
||||||
publish_to: ''
|
publish_to: ''
|
||||||
repository: ''
|
repository: ''
|
||||||
|
|||||||
Reference in New Issue
Block a user