Latest generation

This commit is contained in:
ci core model
2025-11-18 09:49:43 +00:00
parent 20c40cae73
commit f653d5ac74
4 changed files with 347 additions and 49 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG
Lib version: 1.12.0-SNAPSHOT-251118094448
Lib version: 1.12.0-SNAPSHOT-251118094918

View File

@@ -34,6 +34,7 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
$core.bool? hasCommission,
$core.bool? instructionAck,
$core.Iterable<$2.MetadataElement>? carrierInformation,
$core.String? actorID,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
@@ -48,6 +49,7 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
if (hasCommission != null) result.hasCommission = hasCommission;
if (instructionAck != null) result.instructionAck = instructionAck;
if (carrierInformation != null) result.carrierInformation.addAll(carrierInformation);
if (actorID != null) result.actorID = actorID;
return result;
}
@@ -69,6 +71,7 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
..aOB(13, _omitFieldNames ? '' : 'HasCommission', protoName: 'HasCommission')
..aOB(14, _omitFieldNames ? '' : 'InstructionAck', protoName: 'InstructionAck')
..pc<$2.MetadataElement>(15, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $2.MetadataElement.create)
..aOS(16, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -176,6 +179,15 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
/// Carrier information metadata
@$pb.TagNumber(15)
$pb.PbList<$2.MetadataElement> get carrierInformation => $_getList(11);
@$pb.TagNumber(16)
$core.String get actorID => $_getSZ(12);
@$pb.TagNumber(16)
set actorID($core.String value) => $_setString(12, value);
@$pb.TagNumber(16)
$core.bool hasActorID() => $_has(12);
@$pb.TagNumber(16)
void clearActorID() => $_clearField(16);
}
/// Event message
@@ -397,7 +409,13 @@ class AppointmentCreatedResponse extends $pb.GeneratedMessage {
/// Event Payload
class AppointmentCanceledPayload extends $pb.GeneratedMessage {
factory AppointmentCanceledPayload() => create();
factory AppointmentCanceledPayload({
$core.String? actorID,
}) {
final result = create();
if (actorID != null) result.actorID = actorID;
return result;
}
AppointmentCanceledPayload._();
@@ -405,6 +423,7 @@ class AppointmentCanceledPayload extends $pb.GeneratedMessage {
factory AppointmentCanceledPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentCanceledPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -424,6 +443,15 @@ class AppointmentCanceledPayload extends $pb.GeneratedMessage {
@$core.pragma('dart2js:noInline')
static AppointmentCanceledPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentCanceledPayload>(create);
static AppointmentCanceledPayload? _defaultInstance;
@$pb.TagNumber(1)
$core.String get actorID => $_getSZ(0);
@$pb.TagNumber(1)
set actorID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasActorID() => $_has(0);
@$pb.TagNumber(1)
void clearActorID() => $_clearField(1);
}
/// Event message
@@ -647,9 +675,11 @@ class AppointmentCanceledResponse extends $pb.GeneratedMessage {
class AppointmentSlotUpdatedPayload extends $pb.GeneratedMessage {
factory AppointmentSlotUpdatedPayload({
$1.Slot? slot,
$core.String? actorID,
}) {
final result = create();
if (slot != null) result.slot = slot;
if (actorID != null) result.actorID = actorID;
return result;
}
@@ -660,6 +690,7 @@ class AppointmentSlotUpdatedPayload extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentSlotUpdatedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.Slot>(1, _omitFieldNames ? '' : 'Slot', protoName: 'Slot', subBuilder: $1.Slot.create)
..aOS(2, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -690,6 +721,15 @@ class AppointmentSlotUpdatedPayload extends $pb.GeneratedMessage {
void clearSlot() => $_clearField(1);
@$pb.TagNumber(1)
$1.Slot ensureSlot() => $_ensure(0);
@$pb.TagNumber(2)
$core.String get actorID => $_getSZ(1);
@$pb.TagNumber(2)
set actorID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasActorID() => $_has(1);
@$pb.TagNumber(2)
void clearActorID() => $_clearField(2);
}
/// Event message
@@ -912,9 +952,11 @@ class AppointmentSlotUpdatedResponse extends $pb.GeneratedMessage {
/// Event Payload
class AppointmentCommissionsUpdatedPayload extends $pb.GeneratedMessage {
factory AppointmentCommissionsUpdatedPayload({
$core.String? actorID,
$core.Iterable<$1.AppointmentCommission>? commissions,
}) {
final result = create();
if (actorID != null) result.actorID = actorID;
if (commissions != null) result.commissions.addAll(commissions);
return result;
}
@@ -925,6 +967,7 @@ class AppointmentCommissionsUpdatedPayload extends $pb.GeneratedMessage {
factory AppointmentCommissionsUpdatedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentCommissionsUpdatedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..pc<$1.AppointmentCommission>(2, _omitFieldNames ? '' : 'Commissions', $pb.PbFieldType.PM, protoName: 'Commissions', subBuilder: $1.AppointmentCommission.create)
..hasRequiredFields = false
;
@@ -946,8 +989,17 @@ class AppointmentCommissionsUpdatedPayload extends $pb.GeneratedMessage {
static AppointmentCommissionsUpdatedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentCommissionsUpdatedPayload>(create);
static AppointmentCommissionsUpdatedPayload? _defaultInstance;
@$pb.TagNumber(1)
$core.String get actorID => $_getSZ(0);
@$pb.TagNumber(1)
set actorID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasActorID() => $_has(0);
@$pb.TagNumber(1)
void clearActorID() => $_clearField(1);
@$pb.TagNumber(2)
$pb.PbList<$1.AppointmentCommission> get commissions => $_getList(0);
$pb.PbList<$1.AppointmentCommission> get commissions => $_getList(1);
}
/// Event message
@@ -1170,9 +1222,11 @@ class AppointmentCommissionsUpdatedResponse extends $pb.GeneratedMessage {
class AppointmentAttachmentAddedPayload extends $pb.GeneratedMessage {
factory AppointmentAttachmentAddedPayload({
$core.Iterable<$2.AttachmentSummary>? attachments,
$core.String? actorID,
}) {
final result = create();
if (attachments != null) result.attachments.addAll(attachments);
if (actorID != null) result.actorID = actorID;
return result;
}
@@ -1183,6 +1237,7 @@ class AppointmentAttachmentAddedPayload extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAttachmentAddedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<$2.AttachmentSummary>(1, _omitFieldNames ? '' : 'Attachments', $pb.PbFieldType.PM, protoName: 'Attachments', subBuilder: $2.AttachmentSummary.create)
..aOS(2, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -1205,6 +1260,15 @@ class AppointmentAttachmentAddedPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$pb.PbList<$2.AttachmentSummary> get attachments => $_getList(0);
@$pb.TagNumber(2)
$core.String get actorID => $_getSZ(1);
@$pb.TagNumber(2)
set actorID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasActorID() => $_has(1);
@$pb.TagNumber(2)
void clearActorID() => $_clearField(2);
}
class AppointmentAttachmentAddedEvent extends $pb.GeneratedMessage {
@@ -1424,9 +1488,11 @@ class AppointmentAttachmentAddedResponse extends $pb.GeneratedMessage {
class AppointmentAttachmentRemovedPayload extends $pb.GeneratedMessage {
factory AppointmentAttachmentRemovedPayload({
$core.Iterable<$2.AttachmentSummary>? attachments,
$core.String? actorID,
}) {
final result = create();
if (attachments != null) result.attachments.addAll(attachments);
if (actorID != null) result.actorID = actorID;
return result;
}
@@ -1437,6 +1503,7 @@ class AppointmentAttachmentRemovedPayload extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAttachmentRemovedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<$2.AttachmentSummary>(1, _omitFieldNames ? '' : 'Attachments', $pb.PbFieldType.PM, protoName: 'Attachments', subBuilder: $2.AttachmentSummary.create)
..aOS(2, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -1459,6 +1526,15 @@ class AppointmentAttachmentRemovedPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$pb.PbList<$2.AttachmentSummary> get attachments => $_getList(0);
@$pb.TagNumber(2)
$core.String get actorID => $_getSZ(1);
@$pb.TagNumber(2)
set actorID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasActorID() => $_has(1);
@$pb.TagNumber(2)
void clearActorID() => $_clearField(2);
}
class AppointmentAttachmentRemovedEvent extends $pb.GeneratedMessage {
@@ -1678,9 +1754,11 @@ class AppointmentAttachmentRemovedResponse extends $pb.GeneratedMessage {
/// Event Payload
class AppointmentCarrierInformationUpdatedPayload extends $pb.GeneratedMessage {
factory AppointmentCarrierInformationUpdatedPayload({
$core.String? actorID,
$core.Iterable<$2.MetadataElement>? carrierInformation,
}) {
final result = create();
if (actorID != null) result.actorID = actorID;
if (carrierInformation != null) result.carrierInformation.addAll(carrierInformation);
return result;
}
@@ -1691,6 +1769,7 @@ class AppointmentCarrierInformationUpdatedPayload extends $pb.GeneratedMessage {
factory AppointmentCarrierInformationUpdatedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentCarrierInformationUpdatedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..pc<$2.MetadataElement>(2, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $2.MetadataElement.create)
..hasRequiredFields = false
;
@@ -1712,9 +1791,18 @@ class AppointmentCarrierInformationUpdatedPayload extends $pb.GeneratedMessage {
static AppointmentCarrierInformationUpdatedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentCarrierInformationUpdatedPayload>(create);
static AppointmentCarrierInformationUpdatedPayload? _defaultInstance;
@$pb.TagNumber(1)
$core.String get actorID => $_getSZ(0);
@$pb.TagNumber(1)
set actorID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasActorID() => $_has(0);
@$pb.TagNumber(1)
void clearActorID() => $_clearField(1);
/// Carrier information metadata
@$pb.TagNumber(2)
$pb.PbList<$2.MetadataElement> get carrierInformation => $_getList(0);
$pb.PbList<$2.MetadataElement> get carrierInformation => $_getList(1);
}
/// Event message
@@ -1936,7 +2024,13 @@ class AppointmentCarrierInformationUpdatedResponse extends $pb.GeneratedMessage
/// Event Payload
class AppointmentCarrierExpectedPayload extends $pb.GeneratedMessage {
factory AppointmentCarrierExpectedPayload() => create();
factory AppointmentCarrierExpectedPayload({
$core.String? actorID,
}) {
final result = create();
if (actorID != null) result.actorID = actorID;
return result;
}
AppointmentCarrierExpectedPayload._();
@@ -1944,6 +2038,7 @@ class AppointmentCarrierExpectedPayload extends $pb.GeneratedMessage {
factory AppointmentCarrierExpectedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentCarrierExpectedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -1963,6 +2058,15 @@ class AppointmentCarrierExpectedPayload extends $pb.GeneratedMessage {
@$core.pragma('dart2js:noInline')
static AppointmentCarrierExpectedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentCarrierExpectedPayload>(create);
static AppointmentCarrierExpectedPayload? _defaultInstance;
@$pb.TagNumber(1)
$core.String get actorID => $_getSZ(0);
@$pb.TagNumber(1)
set actorID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasActorID() => $_has(0);
@$pb.TagNumber(1)
void clearActorID() => $_clearField(1);
}
/// Event message
@@ -2184,7 +2288,13 @@ class AppointmentCarrierExpectedResponse extends $pb.GeneratedMessage {
/// Event Payload
class AppointmentCarrierArrivedPayload extends $pb.GeneratedMessage {
factory AppointmentCarrierArrivedPayload() => create();
factory AppointmentCarrierArrivedPayload({
$core.String? actorID,
}) {
final result = create();
if (actorID != null) result.actorID = actorID;
return result;
}
AppointmentCarrierArrivedPayload._();
@@ -2192,6 +2302,7 @@ class AppointmentCarrierArrivedPayload extends $pb.GeneratedMessage {
factory AppointmentCarrierArrivedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentCarrierArrivedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -2211,6 +2322,15 @@ class AppointmentCarrierArrivedPayload extends $pb.GeneratedMessage {
@$core.pragma('dart2js:noInline')
static AppointmentCarrierArrivedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentCarrierArrivedPayload>(create);
static AppointmentCarrierArrivedPayload? _defaultInstance;
@$pb.TagNumber(1)
$core.String get actorID => $_getSZ(0);
@$pb.TagNumber(1)
set actorID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasActorID() => $_has(0);
@$pb.TagNumber(1)
void clearActorID() => $_clearField(1);
}
/// Event message
@@ -2432,7 +2552,13 @@ class AppointmentCarrierArrivedResponse extends $pb.GeneratedMessage {
/// Event Payload
class AppointmentExpeditionStartedPayload extends $pb.GeneratedMessage {
factory AppointmentExpeditionStartedPayload() => create();
factory AppointmentExpeditionStartedPayload({
$core.String? actorID,
}) {
final result = create();
if (actorID != null) result.actorID = actorID;
return result;
}
AppointmentExpeditionStartedPayload._();
@@ -2440,6 +2566,7 @@ class AppointmentExpeditionStartedPayload extends $pb.GeneratedMessage {
factory AppointmentExpeditionStartedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentExpeditionStartedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -2459,6 +2586,15 @@ class AppointmentExpeditionStartedPayload extends $pb.GeneratedMessage {
@$core.pragma('dart2js:noInline')
static AppointmentExpeditionStartedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentExpeditionStartedPayload>(create);
static AppointmentExpeditionStartedPayload? _defaultInstance;
@$pb.TagNumber(1)
$core.String get actorID => $_getSZ(0);
@$pb.TagNumber(1)
set actorID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasActorID() => $_has(0);
@$pb.TagNumber(1)
void clearActorID() => $_clearField(1);
}
/// Event message
@@ -2680,7 +2816,13 @@ class AppointmentExpeditionStartedResponse extends $pb.GeneratedMessage {
/// Event Payload
class AppointmentExpeditionLoadedPayload extends $pb.GeneratedMessage {
factory AppointmentExpeditionLoadedPayload() => create();
factory AppointmentExpeditionLoadedPayload({
$core.String? actorID,
}) {
final result = create();
if (actorID != null) result.actorID = actorID;
return result;
}
AppointmentExpeditionLoadedPayload._();
@@ -2688,6 +2830,7 @@ class AppointmentExpeditionLoadedPayload extends $pb.GeneratedMessage {
factory AppointmentExpeditionLoadedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentExpeditionLoadedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -2707,6 +2850,15 @@ class AppointmentExpeditionLoadedPayload extends $pb.GeneratedMessage {
@$core.pragma('dart2js:noInline')
static AppointmentExpeditionLoadedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentExpeditionLoadedPayload>(create);
static AppointmentExpeditionLoadedPayload? _defaultInstance;
@$pb.TagNumber(1)
$core.String get actorID => $_getSZ(0);
@$pb.TagNumber(1)
set actorID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasActorID() => $_has(0);
@$pb.TagNumber(1)
void clearActorID() => $_clearField(1);
}
/// Event message
@@ -2928,7 +3080,13 @@ class AppointmentExpeditionLoadedResponse extends $pb.GeneratedMessage {
/// Event Payload
class AppointmentReceptionStartedPayload extends $pb.GeneratedMessage {
factory AppointmentReceptionStartedPayload() => create();
factory AppointmentReceptionStartedPayload({
$core.String? actorID,
}) {
final result = create();
if (actorID != null) result.actorID = actorID;
return result;
}
AppointmentReceptionStartedPayload._();
@@ -2936,6 +3094,7 @@ class AppointmentReceptionStartedPayload extends $pb.GeneratedMessage {
factory AppointmentReceptionStartedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentReceptionStartedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -2955,6 +3114,15 @@ class AppointmentReceptionStartedPayload extends $pb.GeneratedMessage {
@$core.pragma('dart2js:noInline')
static AppointmentReceptionStartedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentReceptionStartedPayload>(create);
static AppointmentReceptionStartedPayload? _defaultInstance;
@$pb.TagNumber(1)
$core.String get actorID => $_getSZ(0);
@$pb.TagNumber(1)
set actorID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasActorID() => $_has(0);
@$pb.TagNumber(1)
void clearActorID() => $_clearField(1);
}
/// Event message
@@ -3176,7 +3344,13 @@ class AppointmentReceptionStartedResponse extends $pb.GeneratedMessage {
/// Event Payload
class AppointmentReceptionUnloadedPayload extends $pb.GeneratedMessage {
factory AppointmentReceptionUnloadedPayload() => create();
factory AppointmentReceptionUnloadedPayload({
$core.String? actorID,
}) {
final result = create();
if (actorID != null) result.actorID = actorID;
return result;
}
AppointmentReceptionUnloadedPayload._();
@@ -3184,6 +3358,7 @@ class AppointmentReceptionUnloadedPayload extends $pb.GeneratedMessage {
factory AppointmentReceptionUnloadedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentReceptionUnloadedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -3203,6 +3378,15 @@ class AppointmentReceptionUnloadedPayload extends $pb.GeneratedMessage {
@$core.pragma('dart2js:noInline')
static AppointmentReceptionUnloadedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentReceptionUnloadedPayload>(create);
static AppointmentReceptionUnloadedPayload? _defaultInstance;
@$pb.TagNumber(1)
$core.String get actorID => $_getSZ(0);
@$pb.TagNumber(1)
set actorID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasActorID() => $_has(0);
@$pb.TagNumber(1)
void clearActorID() => $_clearField(1);
}
/// Event message
@@ -3424,7 +3608,13 @@ class AppointmentReceptionUnloadedResponse extends $pb.GeneratedMessage {
/// Event Payload
class AppointmentCarrierDepartedPayload extends $pb.GeneratedMessage {
factory AppointmentCarrierDepartedPayload() => create();
factory AppointmentCarrierDepartedPayload({
$core.String? actorID,
}) {
final result = create();
if (actorID != null) result.actorID = actorID;
return result;
}
AppointmentCarrierDepartedPayload._();
@@ -3432,6 +3622,7 @@ class AppointmentCarrierDepartedPayload extends $pb.GeneratedMessage {
factory AppointmentCarrierDepartedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentCarrierDepartedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -3451,6 +3642,15 @@ class AppointmentCarrierDepartedPayload extends $pb.GeneratedMessage {
@$core.pragma('dart2js:noInline')
static AppointmentCarrierDepartedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentCarrierDepartedPayload>(create);
static AppointmentCarrierDepartedPayload? _defaultInstance;
@$pb.TagNumber(1)
$core.String get actorID => $_getSZ(0);
@$pb.TagNumber(1)
set actorID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasActorID() => $_has(0);
@$pb.TagNumber(1)
void clearActorID() => $_clearField(1);
}
/// Event message
@@ -3673,9 +3873,11 @@ class AppointmentCarrierDepartedResponse extends $pb.GeneratedMessage {
class AppointmentMetaDataUpdatedPayload extends $pb.GeneratedMessage {
factory AppointmentMetaDataUpdatedPayload({
$core.Iterable<$2.MetadataElement>? metaData,
$core.String? actorID,
}) {
final result = create();
if (metaData != null) result.metaData.addAll(metaData);
if (actorID != null) result.actorID = actorID;
return result;
}
@@ -3686,6 +3888,7 @@ class AppointmentMetaDataUpdatedPayload extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentMetaDataUpdatedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<$2.MetadataElement>(1, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $2.MetadataElement.create)
..aOS(2, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -3709,6 +3912,15 @@ class AppointmentMetaDataUpdatedPayload extends $pb.GeneratedMessage {
/// Metadata are characteristics specific to the site. They can be of several data form (string, integer, float, boolean or timestamp)
@$pb.TagNumber(1)
$pb.PbList<$2.MetadataElement> get metaData => $_getList(0);
@$pb.TagNumber(2)
$core.String get actorID => $_getSZ(1);
@$pb.TagNumber(2)
set actorID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasActorID() => $_has(1);
@$pb.TagNumber(2)
void clearActorID() => $_clearField(2);
}
class AppointmentMetaDataUpdatedEvent extends $pb.GeneratedMessage {
@@ -3929,9 +4141,11 @@ class AppointmentMetaDataUpdatedResponse extends $pb.GeneratedMessage {
class AppointmentEmailsAddedPayload extends $pb.GeneratedMessage {
factory AppointmentEmailsAddedPayload({
$core.Iterable<$core.String>? emails,
$core.String? actorID,
}) {
final result = create();
if (emails != null) result.emails.addAll(emails);
if (actorID != null) result.actorID = actorID;
return result;
}
@@ -3942,6 +4156,7 @@ class AppointmentEmailsAddedPayload extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentEmailsAddedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pPS(1, _omitFieldNames ? '' : 'Emails', protoName: 'Emails')
..aOS(2, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -3965,6 +4180,15 @@ class AppointmentEmailsAddedPayload extends $pb.GeneratedMessage {
/// Contacts assigned on the appointment
@$pb.TagNumber(1)
$pb.PbList<$core.String> get emails => $_getList(0);
@$pb.TagNumber(2)
$core.String get actorID => $_getSZ(1);
@$pb.TagNumber(2)
set actorID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasActorID() => $_has(1);
@$pb.TagNumber(2)
void clearActorID() => $_clearField(2);
}
/// Event message
@@ -4188,9 +4412,11 @@ class AppointmentEmailsAddedResponse extends $pb.GeneratedMessage {
class AppointmentEmailsRemovedPayload extends $pb.GeneratedMessage {
factory AppointmentEmailsRemovedPayload({
$core.Iterable<$core.String>? removedEmails,
$core.String? actorID,
}) {
final result = create();
if (removedEmails != null) result.removedEmails.addAll(removedEmails);
if (actorID != null) result.actorID = actorID;
return result;
}
@@ -4201,6 +4427,7 @@ class AppointmentEmailsRemovedPayload extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentEmailsRemovedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pPS(1, _omitFieldNames ? '' : 'RemovedEmails', protoName: 'RemovedEmails')
..aOS(2, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -4224,6 +4451,15 @@ class AppointmentEmailsRemovedPayload extends $pb.GeneratedMessage {
/// Contacts removed from the appointment
@$pb.TagNumber(1)
$pb.PbList<$core.String> get removedEmails => $_getList(0);
@$pb.TagNumber(2)
$core.String get actorID => $_getSZ(1);
@$pb.TagNumber(2)
set actorID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasActorID() => $_has(1);
@$pb.TagNumber(2)
void clearActorID() => $_clearField(2);
}
/// Event message
@@ -4444,7 +4680,13 @@ class AppointmentEmailsRemovedResponse extends $pb.GeneratedMessage {
}
class AppointmentSanitisedPayload extends $pb.GeneratedMessage {
factory AppointmentSanitisedPayload() => create();
factory AppointmentSanitisedPayload({
$core.String? actorID,
}) {
final result = create();
if (actorID != null) result.actorID = actorID;
return result;
}
AppointmentSanitisedPayload._();
@@ -4452,6 +4694,7 @@ class AppointmentSanitisedPayload extends $pb.GeneratedMessage {
factory AppointmentSanitisedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentSanitisedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -4471,6 +4714,15 @@ class AppointmentSanitisedPayload extends $pb.GeneratedMessage {
@$core.pragma('dart2js:noInline')
static AppointmentSanitisedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentSanitisedPayload>(create);
static AppointmentSanitisedPayload? _defaultInstance;
@$pb.TagNumber(1)
$core.String get actorID => $_getSZ(0);
@$pb.TagNumber(1)
set actorID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasActorID() => $_has(0);
@$pb.TagNumber(1)
void clearActorID() => $_clearField(1);
}
class AppointmentSanitisedEvent extends $pb.GeneratedMessage {

View File

@@ -30,6 +30,7 @@ const AppointmentCreatedPayload$json = {
{'1': 'Reason', '3': 12, '4': 1, '5': 9, '10': 'Reason'},
{'1': 'HasCommission', '3': 13, '4': 1, '5': 8, '10': 'HasCommission'},
{'1': 'InstructionAck', '3': 14, '4': 1, '5': 8, '10': 'InstructionAck'},
{'1': 'ActorID', '3': 16, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
@@ -52,8 +53,8 @@ final $typed_data.Uint8List appointmentCreatedPayloadDescriptor = $convert.base6
'RhEhwKCUNhcnJpZXJJRBgKIAEoCVIJQ2FycmllcklEEiAKC0NhcnJpZXJOYW1lGAsgASgJUgtD'
'YXJyaWVyTmFtZRIWCgZSZWFzb24YDCABKAlSBlJlYXNvbhIkCg1IYXNDb21taXNzaW9uGA0gAS'
'gIUg1IYXNDb21taXNzaW9uEiYKDkluc3RydWN0aW9uQWNrGA4gASgIUg5JbnN0cnVjdGlvbkFj'
'azo+kkEjCiEyDUV2ZW50IFBheWxvYWTSAQ9BcHBvaW50bWVudFR5cGWiuxgFRXZlbnSouxgBur'
'sYB0NyZWF0ZWQ=');
'axIYCgdBY3RvcklEGBAgASgJUgdBY3RvcklEOj6SQSMKITINRXZlbnQgUGF5bG9hZNIBD0FwcG'
'9pbnRtZW50VHlwZaK7GAVFdmVudKi7GAG6uxgHQ3JlYXRlZA==');
@$core.Deprecated('Use appointmentCreatedEventDescriptor instead')
const AppointmentCreatedEvent$json = {
@@ -112,13 +113,16 @@ final $typed_data.Uint8List appointmentCreatedResponseDescriptor = $convert.base
@$core.Deprecated('Use appointmentCanceledPayloadDescriptor instead')
const AppointmentCanceledPayload$json = {
'1': 'AppointmentCanceledPayload',
'2': [
{'1': 'ActorID', '3': 1, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
/// Descriptor for `AppointmentCanceledPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentCanceledPayloadDescriptor = $convert.base64Decode(
'ChpBcHBvaW50bWVudENhbmNlbGVkUGF5bG9hZDotkkERCg8yDUV2ZW50IFBheWxvYWSiuxgFRX'
'ZlbnSouxgBursYCENhbmNlbGVk');
'ChpBcHBvaW50bWVudENhbmNlbGVkUGF5bG9hZBIYCgdBY3RvcklEGAEgASgJUgdBY3RvcklEOi'
'2SQREKDzINRXZlbnQgUGF5bG9hZKK7GAVFdmVudKi7GAG6uxgIQ2FuY2VsZWQ=');
@$core.Deprecated('Use appointmentCanceledEventDescriptor instead')
const AppointmentCanceledEvent$json = {
@@ -179,6 +183,7 @@ const AppointmentSlotUpdatedPayload$json = {
'1': 'AppointmentSlotUpdatedPayload',
'2': [
{'1': 'Slot', '3': 1, '4': 1, '5': 11, '6': '.api.Slot', '10': 'Slot'},
{'1': 'ActorID', '3': 2, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
@@ -186,8 +191,8 @@ const AppointmentSlotUpdatedPayload$json = {
/// Descriptor for `AppointmentSlotUpdatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentSlotUpdatedPayloadDescriptor = $convert.base64Decode(
'Ch1BcHBvaW50bWVudFNsb3RVcGRhdGVkUGF5bG9hZBIdCgRTbG90GAEgASgLMgkuYXBpLlNsb3'
'RSBFNsb3Q6MJJBEQoPMg1FdmVudCBQYXlsb2FkorsYBUV2ZW50qLsYAbq7GAtTbG90VXBkYXRl'
'ZA==');
'RSBFNsb3QSGAoHQWN0b3JJRBgCIAEoCVIHQWN0b3JJRDowkkERCg8yDUV2ZW50IFBheWxvYWSi'
'uxgFRXZlbnSouxgBursYC1Nsb3RVcGRhdGVk');
@$core.Deprecated('Use appointmentSlotUpdatedEventDescriptor instead')
const AppointmentSlotUpdatedEvent$json = {
@@ -248,6 +253,7 @@ const AppointmentCommissionsUpdatedPayload$json = {
'1': 'AppointmentCommissionsUpdatedPayload',
'2': [
{'1': 'Commissions', '3': 2, '4': 3, '5': 11, '6': '.api.AppointmentCommission', '10': 'Commissions'},
{'1': 'ActorID', '3': 1, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
@@ -255,8 +261,9 @@ const AppointmentCommissionsUpdatedPayload$json = {
/// Descriptor for `AppointmentCommissionsUpdatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentCommissionsUpdatedPayloadDescriptor = $convert.base64Decode(
'CiRBcHBvaW50bWVudENvbW1pc3Npb25zVXBkYXRlZFBheWxvYWQSPAoLQ29tbWlzc2lvbnMYAi'
'ADKAsyGi5hcGkuQXBwb2ludG1lbnRDb21taXNzaW9uUgtDb21taXNzaW9uczo3kkERCg8yDUV2'
'ZW50IFBheWxvYWSiuxgFRXZlbnSouxgBursYEkNvbW1pc3Npb25zVXBkYXRlZA==');
'ADKAsyGi5hcGkuQXBwb2ludG1lbnRDb21taXNzaW9uUgtDb21taXNzaW9ucxIYCgdBY3RvcklE'
'GAEgASgJUgdBY3RvcklEOjeSQREKDzINRXZlbnQgUGF5bG9hZKK7GAVFdmVudKi7GAG6uxgSQ2'
'9tbWlzc2lvbnNVcGRhdGVk');
@$core.Deprecated('Use appointmentCommissionsUpdatedEventDescriptor instead')
const AppointmentCommissionsUpdatedEvent$json = {
@@ -318,6 +325,7 @@ const AppointmentAttachmentAddedPayload$json = {
'1': 'AppointmentAttachmentAddedPayload',
'2': [
{'1': 'Attachments', '3': 1, '4': 3, '5': 11, '6': '.api.AttachmentSummary', '8': {}, '10': 'Attachments'},
{'1': 'ActorID', '3': 2, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
@@ -326,8 +334,8 @@ const AppointmentAttachmentAddedPayload$json = {
final $typed_data.Uint8List appointmentAttachmentAddedPayloadDescriptor = $convert.base64Decode(
'CiFBcHBvaW50bWVudEF0dGFjaG1lbnRBZGRlZFBheWxvYWQSYwoLQXR0YWNobWVudHMYASADKA'
'syFi5hcGkuQXR0YWNobWVudFN1bW1hcnlCKZJBJjIkTnVtYmVyIG9mIGF0dGFjaG1lbnRzIGFk'
'ZGVkIHBlciB0eXBlUgtBdHRhY2htZW50czogorsYBUV2ZW50qLsYAbq7GA9BdHRhY2htZW50QW'
'RkZWQ=');
'ZGVkIHBlciB0eXBlUgtBdHRhY2htZW50cxIYCgdBY3RvcklEGAIgASgJUgdBY3RvcklEOiCiux'
'gFRXZlbnSouxgBursYD0F0dGFjaG1lbnRBZGRlZA==');
@$core.Deprecated('Use appointmentAttachmentAddedEventDescriptor instead')
const AppointmentAttachmentAddedEvent$json = {
@@ -388,6 +396,7 @@ const AppointmentAttachmentRemovedPayload$json = {
'1': 'AppointmentAttachmentRemovedPayload',
'2': [
{'1': 'Attachments', '3': 1, '4': 3, '5': 11, '6': '.api.AttachmentSummary', '8': {}, '10': 'Attachments'},
{'1': 'ActorID', '3': 2, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
@@ -396,8 +405,8 @@ const AppointmentAttachmentRemovedPayload$json = {
final $typed_data.Uint8List appointmentAttachmentRemovedPayloadDescriptor = $convert.base64Decode(
'CiNBcHBvaW50bWVudEF0dGFjaG1lbnRSZW1vdmVkUGF5bG9hZBJlCgtBdHRhY2htZW50cxgBIA'
'MoCzIWLmFwaS5BdHRhY2htZW50U3VtbWFyeUIrkkEoMiZOdW1iZXIgb2YgYXR0YWNobWVudHMg'
'cmVtb3ZlZCBwZXIgdHlwZVILQXR0YWNobWVudHM6IqK7GAVFdmVudKi7GAG6uxgRQXR0YWNobW'
'VudFJlbW92ZWQ=');
'cmVtb3ZlZCBwZXIgdHlwZVILQXR0YWNobWVudHMSGAoHQWN0b3JJRBgCIAEoCVIHQWN0b3JJRD'
'oiorsYBUV2ZW50qLsYAbq7GBFBdHRhY2htZW50UmVtb3ZlZA==');
@$core.Deprecated('Use appointmentAttachmentRemovedEventDescriptor instead')
const AppointmentAttachmentRemovedEvent$json = {
@@ -459,6 +468,7 @@ const AppointmentCarrierInformationUpdatedPayload$json = {
'1': 'AppointmentCarrierInformationUpdatedPayload',
'2': [
{'1': 'CarrierInformation', '3': 2, '4': 3, '5': 11, '6': '.api.MetadataElement', '8': {}, '10': 'CarrierInformation'},
{'1': 'ActorID', '3': 1, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
@@ -467,9 +477,9 @@ const AppointmentCarrierInformationUpdatedPayload$json = {
final $typed_data.Uint8List appointmentCarrierInformationUpdatedPayloadDescriptor = $convert.base64Decode(
'CitBcHBvaW50bWVudENhcnJpZXJJbmZvcm1hdGlvblVwZGF0ZWRQYXlsb2FkEnIKEkNhcnJpZX'
'JJbmZvcm1hdGlvbhgCIAMoCzIULmFwaS5NZXRhZGF0YUVsZW1lbnRCLJJBHjIcQ2FycmllciBp'
'bmZvcm1hdGlvbiBtZXRhZGF0YcDBGAHqwRgDS2V5UhJDYXJyaWVySW5mb3JtYXRpb246PpJBEQ'
'oPMg1FdmVudCBQYXlsb2FkorsYBUV2ZW50qLsYAbq7GBlDYXJyaWVySW5mb3JtYXRpb25VcGRh'
'dGVk');
'bmZvcm1hdGlvbiBtZXRhZGF0YcDBGAHqwRgDS2V5UhJDYXJyaWVySW5mb3JtYXRpb24SGAoHQW'
'N0b3JJRBgBIAEoCVIHQWN0b3JJRDo+kkERCg8yDUV2ZW50IFBheWxvYWSiuxgFRXZlbnSouxgB'
'ursYGUNhcnJpZXJJbmZvcm1hdGlvblVwZGF0ZWQ=');
@$core.Deprecated('Use appointmentCarrierInformationUpdatedEventDescriptor instead')
const AppointmentCarrierInformationUpdatedEvent$json = {
@@ -530,13 +540,17 @@ final $typed_data.Uint8List appointmentCarrierInformationUpdatedResponseDescript
@$core.Deprecated('Use appointmentCarrierExpectedPayloadDescriptor instead')
const AppointmentCarrierExpectedPayload$json = {
'1': 'AppointmentCarrierExpectedPayload',
'2': [
{'1': 'ActorID', '3': 1, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
/// Descriptor for `AppointmentCarrierExpectedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentCarrierExpectedPayloadDescriptor = $convert.base64Decode(
'CiFBcHBvaW50bWVudENhcnJpZXJFeHBlY3RlZFBheWxvYWQ6NJJBEQoPMg1FdmVudCBQYXlsb2'
'FkorsYBUV2ZW50qLsYAbq7GA9DYXJyaWVyRXhwZWN0ZWQ=');
'CiFBcHBvaW50bWVudENhcnJpZXJFeHBlY3RlZFBheWxvYWQSGAoHQWN0b3JJRBgBIAEoCVIHQW'
'N0b3JJRDo0kkERCg8yDUV2ZW50IFBheWxvYWSiuxgFRXZlbnSouxgBursYD0NhcnJpZXJFeHBl'
'Y3RlZA==');
@$core.Deprecated('Use appointmentCarrierExpectedEventDescriptor instead')
const AppointmentCarrierExpectedEvent$json = {
@@ -595,13 +609,17 @@ final $typed_data.Uint8List appointmentCarrierExpectedResponseDescriptor = $conv
@$core.Deprecated('Use appointmentCarrierArrivedPayloadDescriptor instead')
const AppointmentCarrierArrivedPayload$json = {
'1': 'AppointmentCarrierArrivedPayload',
'2': [
{'1': 'ActorID', '3': 1, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
/// Descriptor for `AppointmentCarrierArrivedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentCarrierArrivedPayloadDescriptor = $convert.base64Decode(
'CiBBcHBvaW50bWVudENhcnJpZXJBcnJpdmVkUGF5bG9hZDozkkERCg8yDUV2ZW50IFBheWxvYW'
'SiuxgFRXZlbnSouxgBursYDkNhcnJpZXJBcnJpdmVk');
'CiBBcHBvaW50bWVudENhcnJpZXJBcnJpdmVkUGF5bG9hZBIYCgdBY3RvcklEGAEgASgJUgdBY3'
'RvcklEOjOSQREKDzINRXZlbnQgUGF5bG9hZKK7GAVFdmVudKi7GAG6uxgOQ2FycmllckFycml2'
'ZWQ=');
@$core.Deprecated('Use appointmentCarrierArrivedEventDescriptor instead')
const AppointmentCarrierArrivedEvent$json = {
@@ -660,13 +678,17 @@ final $typed_data.Uint8List appointmentCarrierArrivedResponseDescriptor = $conve
@$core.Deprecated('Use appointmentExpeditionStartedPayloadDescriptor instead')
const AppointmentExpeditionStartedPayload$json = {
'1': 'AppointmentExpeditionStartedPayload',
'2': [
{'1': 'ActorID', '3': 1, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
/// Descriptor for `AppointmentExpeditionStartedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentExpeditionStartedPayloadDescriptor = $convert.base64Decode(
'CiNBcHBvaW50bWVudEV4cGVkaXRpb25TdGFydGVkUGF5bG9hZDo2kkERCg8yDUV2ZW50IFBheW'
'xvYWSiuxgFRXZlbnSouxgBursYEUV4cGVkaXRpb25TdGFydGVk');
'CiNBcHBvaW50bWVudEV4cGVkaXRpb25TdGFydGVkUGF5bG9hZBIYCgdBY3RvcklEGAEgASgJUg'
'dBY3RvcklEOjaSQREKDzINRXZlbnQgUGF5bG9hZKK7GAVFdmVudKi7GAG6uxgRRXhwZWRpdGlv'
'blN0YXJ0ZWQ=');
@$core.Deprecated('Use appointmentExpeditionStartedEventDescriptor instead')
const AppointmentExpeditionStartedEvent$json = {
@@ -726,13 +748,17 @@ final $typed_data.Uint8List appointmentExpeditionStartedResponseDescriptor = $co
@$core.Deprecated('Use appointmentExpeditionLoadedPayloadDescriptor instead')
const AppointmentExpeditionLoadedPayload$json = {
'1': 'AppointmentExpeditionLoadedPayload',
'2': [
{'1': 'ActorID', '3': 1, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
/// Descriptor for `AppointmentExpeditionLoadedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentExpeditionLoadedPayloadDescriptor = $convert.base64Decode(
'CiJBcHBvaW50bWVudEV4cGVkaXRpb25Mb2FkZWRQYXlsb2FkOjWSQREKDzINRXZlbnQgUGF5bG'
'9hZKK7GAVFdmVudKi7GAG6uxgQRXhwZWRpdGlvbkxvYWRlZA==');
'CiJBcHBvaW50bWVudEV4cGVkaXRpb25Mb2FkZWRQYXlsb2FkEhgKB0FjdG9ySUQYASABKAlSB0'
'FjdG9ySUQ6NZJBEQoPMg1FdmVudCBQYXlsb2FkorsYBUV2ZW50qLsYAbq7GBBFeHBlZGl0aW9u'
'TG9hZGVk');
@$core.Deprecated('Use appointmentExpeditionLoadedEventDescriptor instead')
const AppointmentExpeditionLoadedEvent$json = {
@@ -792,13 +818,17 @@ final $typed_data.Uint8List appointmentExpeditionLoadedResponseDescriptor = $con
@$core.Deprecated('Use appointmentReceptionStartedPayloadDescriptor instead')
const AppointmentReceptionStartedPayload$json = {
'1': 'AppointmentReceptionStartedPayload',
'2': [
{'1': 'ActorID', '3': 1, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
/// Descriptor for `AppointmentReceptionStartedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentReceptionStartedPayloadDescriptor = $convert.base64Decode(
'CiJBcHBvaW50bWVudFJlY2VwdGlvblN0YXJ0ZWRQYXlsb2FkOjWSQREKDzINRXZlbnQgUGF5bG'
'9hZKK7GAVFdmVudKi7GAG6uxgQUmVjZXB0aW9uU3RhcnRlZA==');
'CiJBcHBvaW50bWVudFJlY2VwdGlvblN0YXJ0ZWRQYXlsb2FkEhgKB0FjdG9ySUQYASABKAlSB0'
'FjdG9ySUQ6NZJBEQoPMg1FdmVudCBQYXlsb2FkorsYBUV2ZW50qLsYAbq7GBBSZWNlcHRpb25T'
'dGFydGVk');
@$core.Deprecated('Use appointmentReceptionStartedEventDescriptor instead')
const AppointmentReceptionStartedEvent$json = {
@@ -858,13 +888,17 @@ final $typed_data.Uint8List appointmentReceptionStartedResponseDescriptor = $con
@$core.Deprecated('Use appointmentReceptionUnloadedPayloadDescriptor instead')
const AppointmentReceptionUnloadedPayload$json = {
'1': 'AppointmentReceptionUnloadedPayload',
'2': [
{'1': 'ActorID', '3': 1, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
/// Descriptor for `AppointmentReceptionUnloadedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentReceptionUnloadedPayloadDescriptor = $convert.base64Decode(
'CiNBcHBvaW50bWVudFJlY2VwdGlvblVubG9hZGVkUGF5bG9hZDo2kkERCg8yDUV2ZW50IFBheW'
'xvYWSiuxgFRXZlbnSouxgBursYEVJlY2VwdGlvblVubG9hZGVk');
'CiNBcHBvaW50bWVudFJlY2VwdGlvblVubG9hZGVkUGF5bG9hZBIYCgdBY3RvcklEGAEgASgJUg'
'dBY3RvcklEOjaSQREKDzINRXZlbnQgUGF5bG9hZKK7GAVFdmVudKi7GAG6uxgRUmVjZXB0aW9u'
'VW5sb2FkZWQ=');
@$core.Deprecated('Use appointmentReceptionUnloadedEventDescriptor instead')
const AppointmentReceptionUnloadedEvent$json = {
@@ -924,13 +958,17 @@ final $typed_data.Uint8List appointmentReceptionUnloadedResponseDescriptor = $co
@$core.Deprecated('Use appointmentCarrierDepartedPayloadDescriptor instead')
const AppointmentCarrierDepartedPayload$json = {
'1': 'AppointmentCarrierDepartedPayload',
'2': [
{'1': 'ActorID', '3': 1, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
/// Descriptor for `AppointmentCarrierDepartedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentCarrierDepartedPayloadDescriptor = $convert.base64Decode(
'CiFBcHBvaW50bWVudENhcnJpZXJEZXBhcnRlZFBheWxvYWQ6NJJBEQoPMg1FdmVudCBQYXlsb2'
'FkorsYBUV2ZW50qLsYAbq7GA9DYXJyaWVyRGVwYXJ0ZWQ=');
'CiFBcHBvaW50bWVudENhcnJpZXJEZXBhcnRlZFBheWxvYWQSGAoHQWN0b3JJRBgBIAEoCVIHQW'
'N0b3JJRDo0kkERCg8yDUV2ZW50IFBheWxvYWSiuxgFRXZlbnSouxgBursYD0NhcnJpZXJEZXBh'
'cnRlZA==');
@$core.Deprecated('Use appointmentCarrierDepartedEventDescriptor instead')
const AppointmentCarrierDepartedEvent$json = {
@@ -991,6 +1029,7 @@ const AppointmentMetaDataUpdatedPayload$json = {
'1': 'AppointmentMetaDataUpdatedPayload',
'2': [
{'1': 'MetaData', '3': 1, '4': 3, '5': 11, '6': '.api.MetadataElement', '8': {}, '10': 'MetaData'},
{'1': 'ActorID', '3': 2, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
@@ -1001,7 +1040,8 @@ final $typed_data.Uint8List appointmentMetaDataUpdatedPayloadDescriptor = $conve
'QuYXBpLk1ldGFkYXRhRWxlbWVudEKUAZJBhQEyggFNZXRhZGF0YSBhcmUgY2hhcmFjdGVyaXN0'
'aWNzIHNwZWNpZmljIHRvIHRoZSBzaXRlLiBUaGV5IGNhbiBiZSBvZiBzZXZlcmFsIGRhdGEgZm'
'9ybSAoc3RyaW5nLCBpbnRlZ2VyLCBmbG9hdCwgYm9vbGVhbiBvciB0aW1lc3RhbXApwMEYAerB'
'GANLZXlSCE1ldGFEYXRhOiCiuxgFRXZlbnSouxgBursYD01ldGFEYXRhVXBkYXRlZA==');
'GANLZXlSCE1ldGFEYXRhEhgKB0FjdG9ySUQYAiABKAlSB0FjdG9ySUQ6IKK7GAVFdmVudKi7GA'
'G6uxgPTWV0YURhdGFVcGRhdGVk');
@$core.Deprecated('Use appointmentMetaDataUpdatedEventDescriptor instead')
const AppointmentMetaDataUpdatedEvent$json = {
@@ -1062,6 +1102,7 @@ const AppointmentEmailsAddedPayload$json = {
'1': 'AppointmentEmailsAddedPayload',
'2': [
{'1': 'Emails', '3': 1, '4': 3, '5': 9, '8': {}, '10': 'Emails'},
{'1': 'ActorID', '3': 2, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
@@ -1070,8 +1111,8 @@ const AppointmentEmailsAddedPayload$json = {
final $typed_data.Uint8List appointmentEmailsAddedPayloadDescriptor = $convert.base64Decode(
'Ch1BcHBvaW50bWVudEVtYWlsc0FkZGVkUGF5bG9hZBJcCgZFbWFpbHMYASADKAlCRJJBMkowWy'
'JKb2huLmRvZUByZWZsZXguY29tIiwgIndpbGwuc21pdGhAcmVmbGV4LmNvbSJd+kIMkgEJIgdy'
'BWAB8AEBUgZFbWFpbHM6OZJBGgoYMg1FdmVudCBQYXlsb2Fk0gEGRW1haWxzorsYBUV2ZW50qL'
'sYAbq7GAtFbWFpbHNBZGRlZA==');
'BWAB8AEBUgZFbWFpbHMSGAoHQWN0b3JJRBgCIAEoCVIHQWN0b3JJRDo5kkEaChgyDUV2ZW50IF'
'BheWxvYWTSAQZFbWFpbHOiuxgFRXZlbnSouxgBursYC0VtYWlsc0FkZGVk');
@$core.Deprecated('Use appointmentEmailsAddedEventDescriptor instead')
const AppointmentEmailsAddedEvent$json = {
@@ -1132,6 +1173,7 @@ const AppointmentEmailsRemovedPayload$json = {
'1': 'AppointmentEmailsRemovedPayload',
'2': [
{'1': 'RemovedEmails', '3': 1, '4': 3, '5': 9, '8': {}, '10': 'RemovedEmails'},
{'1': 'ActorID', '3': 2, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
@@ -1140,8 +1182,9 @@ const AppointmentEmailsRemovedPayload$json = {
final $typed_data.Uint8List appointmentEmailsRemovedPayloadDescriptor = $convert.base64Decode(
'Ch9BcHBvaW50bWVudEVtYWlsc1JlbW92ZWRQYXlsb2FkEmoKDVJlbW92ZWRFbWFpbHMYASADKA'
'lCRJJBMkowWyJKb2huLmRvZUByZWZsZXguY29tIiwgIndpbGwuc21pdGhAcmVmbGV4LmNvbSJd'
'+kIMkgEJIgdyBWAB8AEBUg1SZW1vdmVkRW1haWxzOkKSQSEKHzINRXZlbnQgUGF5bG9hZNIBDV'
'JlbW92ZWRFbWFpbHOiuxgFRXZlbnSouxgBursYDUVtYWlsc1JlbW92ZWQ=');
'+kIMkgEJIgdyBWAB8AEBUg1SZW1vdmVkRW1haWxzEhgKB0FjdG9ySUQYAiABKAlSB0FjdG9ySU'
'Q6QpJBIQofMg1FdmVudCBQYXlsb2Fk0gENUmVtb3ZlZEVtYWlsc6K7GAVFdmVudKi7GAG6uxgN'
'RW1haWxzUmVtb3ZlZA==');
@$core.Deprecated('Use appointmentEmailsRemovedEventDescriptor instead')
const AppointmentEmailsRemovedEvent$json = {
@@ -1200,13 +1243,16 @@ final $typed_data.Uint8List appointmentEmailsRemovedResponseDescriptor = $conver
@$core.Deprecated('Use appointmentSanitisedPayloadDescriptor instead')
const AppointmentSanitisedPayload$json = {
'1': 'AppointmentSanitisedPayload',
'2': [
{'1': 'ActorID', '3': 1, '4': 1, '5': 9, '10': 'ActorID'},
],
'7': {},
};
/// Descriptor for `AppointmentSanitisedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentSanitisedPayloadDescriptor = $convert.base64Decode(
'ChtBcHBvaW50bWVudFNhbml0aXNlZFBheWxvYWQ6GqK7GAVFdmVudKi7GAG6uxgJU2FuaXRpc2'
'Vk');
'ChtBcHBvaW50bWVudFNhbml0aXNlZFBheWxvYWQSGAoHQWN0b3JJRBgBIAEoCVIHQWN0b3JJRD'
'oaorsYBUV2ZW50qLsYAbq7GAlTYW5pdGlzZWQ=');
@$core.Deprecated('Use appointmentSanitisedEventDescriptor instead')
const AppointmentSanitisedEvent$json = {

View File

@@ -1,6 +1,6 @@
name: dart_core_sdk
description: dart libs from core model proto files
version: 1.12.0-SNAPSHOT-251118094448
version: 1.12.0-SNAPSHOT-251118094918
homepage: ''
publish_to: ''
repository: ''