You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
Lib version: 1.15.0-SNAPSHOT-260914085910
|
Lib version: 1.15.0-SNAPSHOT-260914090554
|
||||||
|
|||||||
@@ -364,11 +364,139 @@ class ClaimCreatedResponse extends $pb.GeneratedMessage {
|
|||||||
$1.EntityID ensureID() => $_ensure(1);
|
$1.EntityID ensureID() => $_ensure(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class ClaimInternalCreatedPayload extends $pb.GeneratedMessage {
|
||||||
|
factory ClaimInternalCreatedPayload({
|
||||||
|
$core.String? claimTypeID,
|
||||||
|
$core.String? entityID,
|
||||||
|
$core.Iterable<$core.String>? assignees,
|
||||||
|
$1.Amount? amount,
|
||||||
|
$core.Iterable<$1.MetadataElement>? metaData,
|
||||||
|
$core.String? title,
|
||||||
|
$1.ClaimCriticality? criticality,
|
||||||
|
$core.String? displayID,
|
||||||
|
}) {
|
||||||
|
final result = create();
|
||||||
|
if (claimTypeID != null) result.claimTypeID = claimTypeID;
|
||||||
|
if (entityID != null) result.entityID = entityID;
|
||||||
|
if (assignees != null) result.assignees.addAll(assignees);
|
||||||
|
if (amount != null) result.amount = amount;
|
||||||
|
if (metaData != null) result.metaData.addAll(metaData);
|
||||||
|
if (title != null) result.title = title;
|
||||||
|
if (criticality != null) result.criticality = criticality;
|
||||||
|
if (displayID != null) result.displayID = displayID;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
ClaimInternalCreatedPayload._();
|
||||||
|
|
||||||
|
factory ClaimInternalCreatedPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
|
factory ClaimInternalCreatedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimInternalCreatedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||||
|
..aOS(1, _omitFieldNames ? '' : 'ClaimTypeID', protoName: 'ClaimTypeID')
|
||||||
|
..aOS(2, _omitFieldNames ? '' : 'EntityID', protoName: 'EntityID')
|
||||||
|
..pPS(5, _omitFieldNames ? '' : 'Assignees', protoName: 'Assignees')
|
||||||
|
..aOM<$1.Amount>(6, _omitFieldNames ? '' : 'Amount', protoName: 'Amount', subBuilder: $1.Amount.create)
|
||||||
|
..pc<$1.MetadataElement>(7, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $1.MetadataElement.create)
|
||||||
|
..aOS(8, _omitFieldNames ? '' : 'Title', protoName: 'Title')
|
||||||
|
..e<$1.ClaimCriticality>(9, _omitFieldNames ? '' : 'Criticality', $pb.PbFieldType.OE, protoName: 'Criticality', defaultOrMaker: $1.ClaimCriticality.CLAIM_CRITICALITY_UNKNOWN, valueOf: $1.ClaimCriticality.valueOf, enumValues: $1.ClaimCriticality.values)
|
||||||
|
..aOS(10, _omitFieldNames ? '' : 'DisplayID', protoName: 'DisplayID')
|
||||||
|
..hasRequiredFields = false
|
||||||
|
;
|
||||||
|
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
ClaimInternalCreatedPayload clone() => ClaimInternalCreatedPayload()..mergeFromMessage(this);
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
ClaimInternalCreatedPayload copyWith(void Function(ClaimInternalCreatedPayload) updates) => super.copyWith((message) => updates(message as ClaimInternalCreatedPayload)) as ClaimInternalCreatedPayload;
|
||||||
|
|
||||||
|
@$core.override
|
||||||
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static ClaimInternalCreatedPayload create() => ClaimInternalCreatedPayload._();
|
||||||
|
@$core.override
|
||||||
|
ClaimInternalCreatedPayload createEmptyInstance() => create();
|
||||||
|
static $pb.PbList<ClaimInternalCreatedPayload> createRepeated() => $pb.PbList<ClaimInternalCreatedPayload>();
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static ClaimInternalCreatedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimInternalCreatedPayload>(create);
|
||||||
|
static ClaimInternalCreatedPayload? _defaultInstance;
|
||||||
|
|
||||||
|
/// Identifier of the claim type
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.String get claimTypeID => $_getSZ(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
set claimTypeID($core.String value) => $_setString(0, value);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.bool hasClaimTypeID() => $_has(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
void clearClaimTypeID() => $_clearField(1);
|
||||||
|
|
||||||
|
/// Identifier of the targetted entity
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$core.String get entityID => $_getSZ(1);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
set entityID($core.String value) => $_setString(1, value);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$core.bool hasEntityID() => $_has(1);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
void clearEntityID() => $_clearField(2);
|
||||||
|
|
||||||
|
/// Contacts assigned on the claim
|
||||||
|
@$pb.TagNumber(5)
|
||||||
|
$pb.PbList<$core.String> get assignees => $_getList(2);
|
||||||
|
|
||||||
|
/// Amount of the claim
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
$1.Amount get amount => $_getN(3);
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
set amount($1.Amount value) => $_setField(6, value);
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
$core.bool hasAmount() => $_has(3);
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
void clearAmount() => $_clearField(6);
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
$1.Amount ensureAmount() => $_ensure(3);
|
||||||
|
|
||||||
|
/// Metadata are characteristics specific to the project. They can be of several data form (string, integer, float, boolean or timestamp)
|
||||||
|
@$pb.TagNumber(7)
|
||||||
|
$pb.PbList<$1.MetadataElement> get metaData => $_getList(4);
|
||||||
|
|
||||||
|
/// Title of the claim
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
$core.String get title => $_getSZ(5);
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
set title($core.String value) => $_setString(5, value);
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
$core.bool hasTitle() => $_has(5);
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
void clearTitle() => $_clearField(8);
|
||||||
|
|
||||||
|
/// Criticality of the claim
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
$1.ClaimCriticality get criticality => $_getN(6);
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
set criticality($1.ClaimCriticality value) => $_setField(9, value);
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
$core.bool hasCriticality() => $_has(6);
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
void clearCriticality() => $_clearField(9);
|
||||||
|
|
||||||
|
/// Identifier to display, because it may differ from the EntityID
|
||||||
|
@$pb.TagNumber(10)
|
||||||
|
$core.String get displayID => $_getSZ(7);
|
||||||
|
@$pb.TagNumber(10)
|
||||||
|
set displayID($core.String value) => $_setString(7, value);
|
||||||
|
@$pb.TagNumber(10)
|
||||||
|
$core.bool hasDisplayID() => $_has(7);
|
||||||
|
@$pb.TagNumber(10)
|
||||||
|
void clearDisplayID() => $_clearField(10);
|
||||||
|
}
|
||||||
|
|
||||||
class ClaimInternalCreatedRequest extends $pb.GeneratedMessage {
|
class ClaimInternalCreatedRequest extends $pb.GeneratedMessage {
|
||||||
factory ClaimInternalCreatedRequest({
|
factory ClaimInternalCreatedRequest({
|
||||||
$core.String? projectID,
|
$core.String? projectID,
|
||||||
$1.EntityID? iD,
|
$1.EntityID? iD,
|
||||||
ClaimCreatedPayload? payload,
|
ClaimInternalCreatedPayload? payload,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (projectID != null) result.projectID = projectID;
|
if (projectID != null) result.projectID = projectID;
|
||||||
@@ -385,7 +513,7 @@ class ClaimInternalCreatedRequest extends $pb.GeneratedMessage {
|
|||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimInternalCreatedRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimInternalCreatedRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||||
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
||||||
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
|
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
|
||||||
..aOM<ClaimCreatedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ClaimCreatedPayload.create)
|
..aOM<ClaimInternalCreatedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ClaimInternalCreatedPayload.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -427,15 +555,78 @@ class ClaimInternalCreatedRequest extends $pb.GeneratedMessage {
|
|||||||
$1.EntityID ensureID() => $_ensure(1);
|
$1.EntityID ensureID() => $_ensure(1);
|
||||||
|
|
||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
ClaimCreatedPayload get payload => $_getN(2);
|
ClaimInternalCreatedPayload get payload => $_getN(2);
|
||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
set payload(ClaimCreatedPayload value) => $_setField(3, value);
|
set payload(ClaimInternalCreatedPayload value) => $_setField(3, value);
|
||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
$core.bool hasPayload() => $_has(2);
|
$core.bool hasPayload() => $_has(2);
|
||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
void clearPayload() => $_clearField(3);
|
void clearPayload() => $_clearField(3);
|
||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
ClaimCreatedPayload ensurePayload() => $_ensure(2);
|
ClaimInternalCreatedPayload ensurePayload() => $_ensure(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// API Response
|
||||||
|
class ClaimInternalCreatedResponse extends $pb.GeneratedMessage {
|
||||||
|
factory ClaimInternalCreatedResponse({
|
||||||
|
$1.ResponseHeader? header,
|
||||||
|
$1.EntityID? iD,
|
||||||
|
}) {
|
||||||
|
final result = create();
|
||||||
|
if (header != null) result.header = header;
|
||||||
|
if (iD != null) result.iD = iD;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
ClaimInternalCreatedResponse._();
|
||||||
|
|
||||||
|
factory ClaimInternalCreatedResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
|
factory ClaimInternalCreatedResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimInternalCreatedResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||||
|
..aOM<$1.ResponseHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.ResponseHeader.create)
|
||||||
|
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
|
||||||
|
..hasRequiredFields = false
|
||||||
|
;
|
||||||
|
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
ClaimInternalCreatedResponse clone() => ClaimInternalCreatedResponse()..mergeFromMessage(this);
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
ClaimInternalCreatedResponse copyWith(void Function(ClaimInternalCreatedResponse) updates) => super.copyWith((message) => updates(message as ClaimInternalCreatedResponse)) as ClaimInternalCreatedResponse;
|
||||||
|
|
||||||
|
@$core.override
|
||||||
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static ClaimInternalCreatedResponse create() => ClaimInternalCreatedResponse._();
|
||||||
|
@$core.override
|
||||||
|
ClaimInternalCreatedResponse createEmptyInstance() => create();
|
||||||
|
static $pb.PbList<ClaimInternalCreatedResponse> createRepeated() => $pb.PbList<ClaimInternalCreatedResponse>();
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static ClaimInternalCreatedResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimInternalCreatedResponse>(create);
|
||||||
|
static ClaimInternalCreatedResponse? _defaultInstance;
|
||||||
|
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$1.ResponseHeader get header => $_getN(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
set header($1.ResponseHeader value) => $_setField(1, value);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.bool hasHeader() => $_has(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
void clearHeader() => $_clearField(1);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$1.ResponseHeader ensureHeader() => $_ensure(0);
|
||||||
|
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$1.EntityID get iD => $_getN(1);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
set iD($1.EntityID value) => $_setField(2, value);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$core.bool hasID() => $_has(1);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
void clearID() => $_clearField(2);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$1.EntityID ensureID() => $_ensure(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Event Payload
|
/// Event Payload
|
||||||
|
|||||||
@@ -104,13 +104,49 @@ final $typed_data.Uint8List claimCreatedResponseDescriptor = $convert.base64Deco
|
|||||||
'FkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQ6F6K7GAhSZXNwb25z'
|
'FkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQ6F6K7GAhSZXNwb25z'
|
||||||
'Zbq7GAdDcmVhdGVk');
|
'Zbq7GAdDcmVhdGVk');
|
||||||
|
|
||||||
|
@$core.Deprecated('Use claimInternalCreatedPayloadDescriptor instead')
|
||||||
|
const ClaimInternalCreatedPayload$json = {
|
||||||
|
'1': 'ClaimInternalCreatedPayload',
|
||||||
|
'2': [
|
||||||
|
{'1': 'ClaimTypeID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ClaimTypeID'},
|
||||||
|
{'1': 'EntityID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'EntityID'},
|
||||||
|
{'1': 'Assignees', '3': 5, '4': 3, '5': 9, '8': {}, '10': 'Assignees'},
|
||||||
|
{'1': 'Amount', '3': 6, '4': 1, '5': 11, '6': '.api.Amount', '8': {}, '10': 'Amount'},
|
||||||
|
{'1': 'MetaData', '3': 7, '4': 3, '5': 11, '6': '.api.MetadataElement', '8': {}, '10': 'MetaData'},
|
||||||
|
{'1': 'Title', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'Title'},
|
||||||
|
{'1': 'Criticality', '3': 9, '4': 1, '5': 14, '6': '.api.ClaimCriticality', '8': {}, '10': 'Criticality'},
|
||||||
|
{'1': 'DisplayID', '3': 10, '4': 1, '5': 9, '8': {}, '10': 'DisplayID'},
|
||||||
|
],
|
||||||
|
'7': {},
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `ClaimInternalCreatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
|
final $typed_data.Uint8List claimInternalCreatedPayloadDescriptor = $convert.base64Decode(
|
||||||
|
'ChtDbGFpbUludGVybmFsQ3JlYXRlZFBheWxvYWQSSwoLQ2xhaW1UeXBlSUQYASABKAlCKZJBHj'
|
||||||
|
'IcSWRlbnRpZmllciBvZiB0aGUgY2xhaW0gdHlwZbqBAQRyAhABUgtDbGFpbVR5cGVJRBJLCghF'
|
||||||
|
'bnRpdHlJRBgCIAEoCUIvkkEkMiJJZGVudGlmaWVyIG9mIHRoZSB0YXJnZXR0ZWQgZW50aXR5uo'
|
||||||
|
'EBBHICEAFSCEVudGl0eUlEEpcBCglBc3NpZ25lZXMYBSADKAlCeZJBLTIrQ29udGFjdHMgYXNz'
|
||||||
|
'aWduZWQgb24gdGhlIGNsYWltcyAodXNlciB1dWlkKbqBAUWSAUIiQHI+MjxbMC05YS1mXXs4fS'
|
||||||
|
'1bMC05YS1mXXs0fS1bMC05YS1mXXs0fS1bMC05YS1mXXs0fS1bMC05YS1mXXsxMn1SCUFzc2ln'
|
||||||
|
'bmVlcxI9CgZBbW91bnQYBiABKAsyCy5hcGkuQW1vdW50QhiSQRUyE0Ftb3VudCBvZiB0aGUgY2'
|
||||||
|
'xhaW1SBkFtb3VudBLKAQoITWV0YURhdGEYByADKAsyFC5hcGkuTWV0YWRhdGFFbGVtZW50QpcB'
|
||||||
|
'kkGIATKFAU1ldGFkYXRhIGFyZSBjaGFyYWN0ZXJpc3RpY3Mgc3BlY2lmaWMgdG8gdGhlIHByb2'
|
||||||
|
'plY3QuIFRoZXkgY2FuIGJlIG9mIHNldmVyYWwgZGF0YSBmb3JtIChzdHJpbmcsIGludGVnZXIs'
|
||||||
|
'IGZsb2F0LCBib29sZWFuIG9yIHRpbWVzdGFtcCnAwRgB6sEYA0tleVIITWV0YURhdGESLQoFVG'
|
||||||
|
'l0bGUYCCABKAlCF5JBFDISVGl0bGUgb2YgdGhlIGNsYWltUgVUaXRsZRJWCgtDcml0aWNhbGl0'
|
||||||
|
'eRgJIAEoDjIVLmFwaS5DbGFpbUNyaXRpY2FsaXR5Qh2SQRoyGENyaXRpY2FsaXR5IG9mIHRoZS'
|
||||||
|
'BjbGFpbVILQ3JpdGljYWxpdHkSYQoJRGlzcGxheUlEGAogASgJQkOSQUAyPklkZW50aWZpZXIg'
|
||||||
|
'dG8gZGlzcGxheSwgYmVjYXVzZSBpdCBtYXkgZGlmZmVyIGZyb20gdGhlIEVudGl0eUlEUglEaX'
|
||||||
|
'NwbGF5SUQ6RZJBKgooMg1FdmVudCBQYXlsb2Fk0gELQ2xhaW1UeXBlSUTSAQhFbnRpdHlJRKK7'
|
||||||
|
'GAVFdmVudKi7GAG6uxgHQ3JlYXRlZA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use claimInternalCreatedRequestDescriptor instead')
|
@$core.Deprecated('Use claimInternalCreatedRequestDescriptor instead')
|
||||||
const ClaimInternalCreatedRequest$json = {
|
const ClaimInternalCreatedRequest$json = {
|
||||||
'1': 'ClaimInternalCreatedRequest',
|
'1': 'ClaimInternalCreatedRequest',
|
||||||
'2': [
|
'2': [
|
||||||
{'1': 'ProjectID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ProjectID'},
|
{'1': 'ProjectID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ProjectID'},
|
||||||
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
|
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
|
||||||
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ClaimCreatedPayload', '8': {}, '10': 'Payload'},
|
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ClaimInternalCreatedPayload', '8': {}, '10': 'Payload'},
|
||||||
],
|
],
|
||||||
'7': {},
|
'7': {},
|
||||||
};
|
};
|
||||||
@@ -119,9 +155,25 @@ const ClaimInternalCreatedRequest$json = {
|
|||||||
final $typed_data.Uint8List claimInternalCreatedRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List claimInternalCreatedRequestDescriptor = $convert.base64Decode(
|
||||||
'ChtDbGFpbUludGVybmFsQ3JlYXRlZFJlcXVlc3QSJgoJUHJvamVjdElEGAEgASgJQgi6gQEEcg'
|
'ChtDbGFpbUludGVybmFsQ3JlYXRlZFJlcXVlc3QSJgoJUHJvamVjdElEGAEgASgJQgi6gQEEcg'
|
||||||
'IQAVIJUHJvamVjdElEEigKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQgm6gQEFigECEAFSAklE'
|
'IQAVIJUHJvamVjdElEEigKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQgm6gQEFigECEAFSAklE'
|
||||||
'Ej0KB1BheWxvYWQYAyABKAsyGC5hcGkuQ2xhaW1DcmVhdGVkUGF5bG9hZEIJuoEBBYoBAhABUg'
|
'EkUKB1BheWxvYWQYAyABKAsyIC5hcGkuQ2xhaW1JbnRlcm5hbENyZWF0ZWRQYXlsb2FkQgm6gQ'
|
||||||
'dQYXlsb2FkOj6SQR0KG9IBCVByb2plY3RJRNIBAklE0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursY'
|
'EFigECEAFSB1BheWxvYWQ6PpJBHQob0gEJUHJvamVjdElE0gECSUTSAQdQYXlsb2FkorsYB1Jl'
|
||||||
'D0ludGVybmFsQ3JlYXRlZA==');
|
'cXVlc3S6uxgPSW50ZXJuYWxDcmVhdGVk');
|
||||||
|
|
||||||
|
@$core.Deprecated('Use claimInternalCreatedResponseDescriptor instead')
|
||||||
|
const ClaimInternalCreatedResponse$json = {
|
||||||
|
'1': 'ClaimInternalCreatedResponse',
|
||||||
|
'2': [
|
||||||
|
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResponseHeader', '10': 'Header'},
|
||||||
|
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
|
||||||
|
],
|
||||||
|
'7': {},
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `ClaimInternalCreatedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
|
final $typed_data.Uint8List claimInternalCreatedResponseDescriptor = $convert.base64Decode(
|
||||||
|
'ChxDbGFpbUludGVybmFsQ3JlYXRlZFJlc3BvbnNlEisKBkhlYWRlchgBIAEoCzITLmFwaS5SZX'
|
||||||
|
'Nwb25zZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRDoforsY'
|
||||||
|
'CFJlc3BvbnNlursYD0ludGVybmFsQ3JlYXRlZA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use claimCompletedPayloadDescriptor instead')
|
@$core.Deprecated('Use claimCompletedPayloadDescriptor instead')
|
||||||
const ClaimCompletedPayload$json = {
|
const ClaimCompletedPayload$json = {
|
||||||
|
|||||||
@@ -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.15.0-SNAPSHOT-260914085910
|
version: 1.15.0-SNAPSHOT-260914090554
|
||||||
homepage: ''
|
homepage: ''
|
||||||
publish_to: ''
|
publish_to: ''
|
||||||
repository: ''
|
repository: ''
|
||||||
|
|||||||
Reference in New Issue
Block a user