diff --git a/CHANGELOG.md b/CHANGELOG.md index a229a3f2..206047dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ # CHANGELOG -Lib version: 1.13.0-SNAPSHOT-260217151932 +Lib version: 1.13.0-SNAPSHOT-260218103008 diff --git a/lib/actorAction.pb.dart b/lib/actorAction.pb.dart index fcf0c90a..f1bdebeb 100644 --- a/lib/actorAction.pb.dart +++ b/lib/actorAction.pb.dart @@ -371,7 +371,15 @@ class ActorSetSiteAlias extends $pb.GeneratedMessage { /// /// ClearSiteAlias : clear entry in the SiteActor DB class ActorClearSiteAliasPayload extends $pb.GeneratedMessage { - factory ActorClearSiteAliasPayload() => create(); + factory ActorClearSiteAliasPayload({ + $0.SiteAlias? siteAlias, + $core.bool? isSlotBookingEnabled, + }) { + final result = create(); + if (siteAlias != null) result.siteAlias = siteAlias; + if (isSlotBookingEnabled != null) result.isSlotBookingEnabled = isSlotBookingEnabled; + return result; + } ActorClearSiteAliasPayload._(); @@ -379,6 +387,8 @@ class ActorClearSiteAliasPayload extends $pb.GeneratedMessage { factory ActorClearSiteAliasPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorClearSiteAliasPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) + ..aOM<$0.SiteAlias>(1, _omitFieldNames ? '' : 'SiteAlias', protoName: 'SiteAlias', subBuilder: $0.SiteAlias.create) + ..aOB(2, _omitFieldNames ? '' : 'IsSlotBookingEnabled', protoName: 'IsSlotBookingEnabled') ..hasRequiredFields = false ; @@ -398,6 +408,26 @@ class ActorClearSiteAliasPayload extends $pb.GeneratedMessage { @$core.pragma('dart2js:noInline') static ActorClearSiteAliasPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static ActorClearSiteAliasPayload? _defaultInstance; + + @$pb.TagNumber(1) + $0.SiteAlias get siteAlias => $_getN(0); + @$pb.TagNumber(1) + set siteAlias($0.SiteAlias value) => $_setField(1, value); + @$pb.TagNumber(1) + $core.bool hasSiteAlias() => $_has(0); + @$pb.TagNumber(1) + void clearSiteAlias() => $_clearField(1); + @$pb.TagNumber(1) + $0.SiteAlias ensureSiteAlias() => $_ensure(0); + + @$pb.TagNumber(2) + $core.bool get isSlotBookingEnabled => $_getBF(1); + @$pb.TagNumber(2) + set isSlotBookingEnabled($core.bool value) => $_setBool(1, value); + @$pb.TagNumber(2) + $core.bool hasIsSlotBookingEnabled() => $_has(1); + @$pb.TagNumber(2) + void clearIsSlotBookingEnabled() => $_clearField(2); } class ClearSiteAlias extends $pb.GeneratedMessage { diff --git a/lib/actorAction.pbjson.dart b/lib/actorAction.pbjson.dart index 2bf56341..5b008c57 100644 --- a/lib/actorAction.pbjson.dart +++ b/lib/actorAction.pbjson.dart @@ -99,13 +99,18 @@ final $typed_data.Uint8List actorSetSiteAliasDescriptor = $convert.base64Decode( @$core.Deprecated('Use actorClearSiteAliasPayloadDescriptor instead') const ActorClearSiteAliasPayload$json = { '1': 'ActorClearSiteAliasPayload', + '2': [ + {'1': 'SiteAlias', '3': 1, '4': 1, '5': 11, '6': '.api.SiteAlias', '10': 'SiteAlias'}, + {'1': 'IsSlotBookingEnabled', '3': 2, '4': 1, '5': 8, '10': 'IsSlotBookingEnabled'}, + ], '7': {}, }; /// Descriptor for `ActorClearSiteAliasPayload`. Decode as a `google.protobuf.DescriptorProto`. final $typed_data.Uint8List actorClearSiteAliasPayloadDescriptor = $convert.base64Decode( - 'ChpBY3RvckNsZWFyU2l0ZUFsaWFzUGF5bG9hZDohorsYB0NvbW1hbmSouxgBsrsYDkNsZWFyU2' - 'l0ZUFsaWFz'); + 'ChpBY3RvckNsZWFyU2l0ZUFsaWFzUGF5bG9hZBIsCglTaXRlQWxpYXMYASABKAsyDi5hcGkuU2' + 'l0ZUFsaWFzUglTaXRlQWxpYXMSMgoUSXNTbG90Qm9va2luZ0VuYWJsZWQYAiABKAhSFElzU2xv' + 'dEJvb2tpbmdFbmFibGVkOiGiuxgHQ29tbWFuZKi7GAGyuxgOQ2xlYXJTaXRlQWxpYXM='); @$core.Deprecated('Use clearSiteAliasDescriptor instead') const ClearSiteAlias$json = { diff --git a/pubspec.yaml b/pubspec.yaml index 5365ea7c..ea8d6f29 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: dart_core_sdk description: dart libs from core model proto files -version: 1.13.0-SNAPSHOT-260217151932 +version: 1.13.0-SNAPSHOT-260218103008 homepage: '' publish_to: '' repository: ''