mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-22 11:41:09 +08:00
Refactor member page (#3)
* refactor: member page * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
This commit is contained in:
849
lib/grpc/dagw/component/avatar/v1/avatar.pb.dart
Normal file
849
lib/grpc/dagw/component/avatar/v1/avatar.pb.dart
Normal file
@@ -0,0 +1,849 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: bilibili/dagw/component/avatar/v1/avatar.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||
|
||||
import 'dart:core' as $core;
|
||||
|
||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import '../common/common.pb.dart' as $0;
|
||||
import 'plugin.pb.dart' as $1;
|
||||
|
||||
class AvatarItem extends $pb.GeneratedMessage {
|
||||
factory AvatarItem({
|
||||
$0.SizeSpec? containerSize,
|
||||
$core.Iterable<LayerGroup>? layers,
|
||||
LayerGroup? fallbackLayers,
|
||||
$fixnum.Int64? mid,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (containerSize != null) {
|
||||
$result.containerSize = containerSize;
|
||||
}
|
||||
if (layers != null) {
|
||||
$result.layers.addAll(layers);
|
||||
}
|
||||
if (fallbackLayers != null) {
|
||||
$result.fallbackLayers = fallbackLayers;
|
||||
}
|
||||
if (mid != null) {
|
||||
$result.mid = mid;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
AvatarItem._() : super();
|
||||
factory AvatarItem.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory AvatarItem.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AvatarItem', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1'), createEmptyInstance: create)
|
||||
..aOM<$0.SizeSpec>(1, _omitFieldNames ? '' : 'containerSize', subBuilder: $0.SizeSpec.create)
|
||||
..pc<LayerGroup>(2, _omitFieldNames ? '' : 'layers', $pb.PbFieldType.PM, subBuilder: LayerGroup.create)
|
||||
..aOM<LayerGroup>(3, _omitFieldNames ? '' : 'fallbackLayers', subBuilder: LayerGroup.create)
|
||||
..aInt64(4, _omitFieldNames ? '' : 'mid')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
AvatarItem clone() => AvatarItem()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
AvatarItem copyWith(void Function(AvatarItem) updates) => super.copyWith((message) => updates(message as AvatarItem)) as AvatarItem;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AvatarItem create() => AvatarItem._();
|
||||
AvatarItem createEmptyInstance() => create();
|
||||
static $pb.PbList<AvatarItem> createRepeated() => $pb.PbList<AvatarItem>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AvatarItem getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AvatarItem>(create);
|
||||
static AvatarItem? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$0.SizeSpec get containerSize => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set containerSize($0.SizeSpec v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasContainerSize() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearContainerSize() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$0.SizeSpec ensureContainerSize() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.List<LayerGroup> get layers => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
LayerGroup get fallbackLayers => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set fallbackLayers(LayerGroup v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasFallbackLayers() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearFallbackLayers() => clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
LayerGroup ensureFallbackLayers() => $_ensure(2);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$fixnum.Int64 get mid => $_getI64(3);
|
||||
@$pb.TagNumber(4)
|
||||
set mid($fixnum.Int64 v) { $_setInt64(3, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasMid() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearMid() => clearField(4);
|
||||
}
|
||||
|
||||
enum BasicLayerResource_Payload {
|
||||
resImage,
|
||||
resAnimation,
|
||||
resNativeDraw,
|
||||
notSet
|
||||
}
|
||||
|
||||
class BasicLayerResource extends $pb.GeneratedMessage {
|
||||
factory BasicLayerResource({
|
||||
$core.int? resType,
|
||||
ResImage? resImage,
|
||||
ResAnimation? resAnimation,
|
||||
ResNativeDraw? resNativeDraw,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (resType != null) {
|
||||
$result.resType = resType;
|
||||
}
|
||||
if (resImage != null) {
|
||||
$result.resImage = resImage;
|
||||
}
|
||||
if (resAnimation != null) {
|
||||
$result.resAnimation = resAnimation;
|
||||
}
|
||||
if (resNativeDraw != null) {
|
||||
$result.resNativeDraw = resNativeDraw;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
BasicLayerResource._() : super();
|
||||
factory BasicLayerResource.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory BasicLayerResource.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static const $core.Map<$core.int, BasicLayerResource_Payload> _BasicLayerResource_PayloadByTag = {
|
||||
2 : BasicLayerResource_Payload.resImage,
|
||||
3 : BasicLayerResource_Payload.resAnimation,
|
||||
4 : BasicLayerResource_Payload.resNativeDraw,
|
||||
0 : BasicLayerResource_Payload.notSet
|
||||
};
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'BasicLayerResource', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1'), createEmptyInstance: create)
|
||||
..oo(0, [2, 3, 4])
|
||||
..a<$core.int>(1, _omitFieldNames ? '' : 'resType', $pb.PbFieldType.O3)
|
||||
..aOM<ResImage>(2, _omitFieldNames ? '' : 'resImage', subBuilder: ResImage.create)
|
||||
..aOM<ResAnimation>(3, _omitFieldNames ? '' : 'resAnimation', subBuilder: ResAnimation.create)
|
||||
..aOM<ResNativeDraw>(4, _omitFieldNames ? '' : 'resNativeDraw', subBuilder: ResNativeDraw.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
BasicLayerResource clone() => BasicLayerResource()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
BasicLayerResource copyWith(void Function(BasicLayerResource) updates) => super.copyWith((message) => updates(message as BasicLayerResource)) as BasicLayerResource;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static BasicLayerResource create() => BasicLayerResource._();
|
||||
BasicLayerResource createEmptyInstance() => create();
|
||||
static $pb.PbList<BasicLayerResource> createRepeated() => $pb.PbList<BasicLayerResource>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static BasicLayerResource getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<BasicLayerResource>(create);
|
||||
static BasicLayerResource? _defaultInstance;
|
||||
|
||||
BasicLayerResource_Payload whichPayload() => _BasicLayerResource_PayloadByTag[$_whichOneof(0)]!;
|
||||
void clearPayload() => clearField($_whichOneof(0));
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.int get resType => $_getIZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set resType($core.int v) { $_setSignedInt32(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasResType() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearResType() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
ResImage get resImage => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set resImage(ResImage v) { setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasResImage() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearResImage() => clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
ResImage ensureResImage() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
ResAnimation get resAnimation => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set resAnimation(ResAnimation v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasResAnimation() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearResAnimation() => clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
ResAnimation ensureResAnimation() => $_ensure(2);
|
||||
|
||||
/// /
|
||||
@$pb.TagNumber(4)
|
||||
ResNativeDraw get resNativeDraw => $_getN(3);
|
||||
@$pb.TagNumber(4)
|
||||
set resNativeDraw(ResNativeDraw v) { setField(4, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasResNativeDraw() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearResNativeDraw() => clearField(4);
|
||||
@$pb.TagNumber(4)
|
||||
ResNativeDraw ensureResNativeDraw() => $_ensure(3);
|
||||
}
|
||||
|
||||
class GeneralConfig extends $pb.GeneratedMessage {
|
||||
factory GeneralConfig({
|
||||
$core.Map<$core.String, $core.String>? webCssStyle,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (webCssStyle != null) {
|
||||
$result.webCssStyle.addAll(webCssStyle);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
GeneralConfig._() : super();
|
||||
factory GeneralConfig.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory GeneralConfig.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GeneralConfig', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1'), createEmptyInstance: create)
|
||||
..m<$core.String, $core.String>(1, _omitFieldNames ? '' : 'webCssStyle', entryClassName: 'GeneralConfig.WebCssStyleEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OS, packageName: const $pb.PackageName('bilibili.dagw.component.avatar.v1'))
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
GeneralConfig clone() => GeneralConfig()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
GeneralConfig copyWith(void Function(GeneralConfig) updates) => super.copyWith((message) => updates(message as GeneralConfig)) as GeneralConfig;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GeneralConfig create() => GeneralConfig._();
|
||||
GeneralConfig createEmptyInstance() => create();
|
||||
static $pb.PbList<GeneralConfig> createRepeated() => $pb.PbList<GeneralConfig>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GeneralConfig getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GeneralConfig>(create);
|
||||
static GeneralConfig? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.Map<$core.String, $core.String> get webCssStyle => $_getMap(0);
|
||||
}
|
||||
|
||||
class Layer extends $pb.GeneratedMessage {
|
||||
factory Layer({
|
||||
$core.String? layerId,
|
||||
$core.bool? visible,
|
||||
$0.LayerGeneralSpec? generalSpec,
|
||||
LayerConfig? layerConfig,
|
||||
BasicLayerResource? resource,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (layerId != null) {
|
||||
$result.layerId = layerId;
|
||||
}
|
||||
if (visible != null) {
|
||||
$result.visible = visible;
|
||||
}
|
||||
if (generalSpec != null) {
|
||||
$result.generalSpec = generalSpec;
|
||||
}
|
||||
if (layerConfig != null) {
|
||||
$result.layerConfig = layerConfig;
|
||||
}
|
||||
if (resource != null) {
|
||||
$result.resource = resource;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
Layer._() : super();
|
||||
factory Layer.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory Layer.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Layer', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'layerId')
|
||||
..aOB(2, _omitFieldNames ? '' : 'visible')
|
||||
..aOM<$0.LayerGeneralSpec>(3, _omitFieldNames ? '' : 'generalSpec', subBuilder: $0.LayerGeneralSpec.create)
|
||||
..aOM<LayerConfig>(4, _omitFieldNames ? '' : 'layerConfig', subBuilder: LayerConfig.create)
|
||||
..aOM<BasicLayerResource>(5, _omitFieldNames ? '' : 'resource', subBuilder: BasicLayerResource.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
Layer clone() => Layer()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
Layer copyWith(void Function(Layer) updates) => super.copyWith((message) => updates(message as Layer)) as Layer;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static Layer create() => Layer._();
|
||||
Layer createEmptyInstance() => create();
|
||||
static $pb.PbList<Layer> createRepeated() => $pb.PbList<Layer>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static Layer getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Layer>(create);
|
||||
static Layer? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get layerId => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set layerId($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasLayerId() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearLayerId() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool get visible => $_getBF(1);
|
||||
@$pb.TagNumber(2)
|
||||
set visible($core.bool v) { $_setBool(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasVisible() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearVisible() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$0.LayerGeneralSpec get generalSpec => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set generalSpec($0.LayerGeneralSpec v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasGeneralSpec() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearGeneralSpec() => clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
$0.LayerGeneralSpec ensureGeneralSpec() => $_ensure(2);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
LayerConfig get layerConfig => $_getN(3);
|
||||
@$pb.TagNumber(4)
|
||||
set layerConfig(LayerConfig v) { setField(4, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasLayerConfig() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearLayerConfig() => clearField(4);
|
||||
@$pb.TagNumber(4)
|
||||
LayerConfig ensureLayerConfig() => $_ensure(3);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
BasicLayerResource get resource => $_getN(4);
|
||||
@$pb.TagNumber(5)
|
||||
set resource(BasicLayerResource v) { setField(5, v); }
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasResource() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearResource() => clearField(5);
|
||||
@$pb.TagNumber(5)
|
||||
BasicLayerResource ensureResource() => $_ensure(4);
|
||||
}
|
||||
|
||||
class LayerConfig extends $pb.GeneratedMessage {
|
||||
factory LayerConfig({
|
||||
$core.Map<$core.String, LayerTagConfig>? tags,
|
||||
$core.bool? isCritical,
|
||||
$core.bool? allowOverPaint,
|
||||
$0.MaskProperty? layerMask,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (tags != null) {
|
||||
$result.tags.addAll(tags);
|
||||
}
|
||||
if (isCritical != null) {
|
||||
$result.isCritical = isCritical;
|
||||
}
|
||||
if (allowOverPaint != null) {
|
||||
$result.allowOverPaint = allowOverPaint;
|
||||
}
|
||||
if (layerMask != null) {
|
||||
$result.layerMask = layerMask;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
LayerConfig._() : super();
|
||||
factory LayerConfig.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory LayerConfig.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'LayerConfig', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1'), createEmptyInstance: create)
|
||||
..m<$core.String, LayerTagConfig>(1, _omitFieldNames ? '' : 'tags', entryClassName: 'LayerConfig.TagsEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: LayerTagConfig.create, valueDefaultOrMaker: LayerTagConfig.getDefault, packageName: const $pb.PackageName('bilibili.dagw.component.avatar.v1'))
|
||||
..aOB(2, _omitFieldNames ? '' : 'isCritical')
|
||||
..aOB(3, _omitFieldNames ? '' : 'allowOverPaint')
|
||||
..aOM<$0.MaskProperty>(4, _omitFieldNames ? '' : 'layerMask', subBuilder: $0.MaskProperty.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
LayerConfig clone() => LayerConfig()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
LayerConfig copyWith(void Function(LayerConfig) updates) => super.copyWith((message) => updates(message as LayerConfig)) as LayerConfig;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static LayerConfig create() => LayerConfig._();
|
||||
LayerConfig createEmptyInstance() => create();
|
||||
static $pb.PbList<LayerConfig> createRepeated() => $pb.PbList<LayerConfig>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static LayerConfig getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<LayerConfig>(create);
|
||||
static LayerConfig? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.Map<$core.String, LayerTagConfig> get tags => $_getMap(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool get isCritical => $_getBF(1);
|
||||
@$pb.TagNumber(2)
|
||||
set isCritical($core.bool v) { $_setBool(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasIsCritical() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearIsCritical() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool get allowOverPaint => $_getBF(2);
|
||||
@$pb.TagNumber(3)
|
||||
set allowOverPaint($core.bool v) { $_setBool(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasAllowOverPaint() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearAllowOverPaint() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$0.MaskProperty get layerMask => $_getN(3);
|
||||
@$pb.TagNumber(4)
|
||||
set layerMask($0.MaskProperty v) { setField(4, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasLayerMask() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearLayerMask() => clearField(4);
|
||||
@$pb.TagNumber(4)
|
||||
$0.MaskProperty ensureLayerMask() => $_ensure(3);
|
||||
}
|
||||
|
||||
class LayerGroup extends $pb.GeneratedMessage {
|
||||
factory LayerGroup({
|
||||
$core.String? groupId,
|
||||
$core.Iterable<Layer>? layers,
|
||||
$0.MaskProperty? groupMask,
|
||||
$core.bool? isCriticalGroup,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (groupId != null) {
|
||||
$result.groupId = groupId;
|
||||
}
|
||||
if (layers != null) {
|
||||
$result.layers.addAll(layers);
|
||||
}
|
||||
if (groupMask != null) {
|
||||
$result.groupMask = groupMask;
|
||||
}
|
||||
if (isCriticalGroup != null) {
|
||||
$result.isCriticalGroup = isCriticalGroup;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
LayerGroup._() : super();
|
||||
factory LayerGroup.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory LayerGroup.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'LayerGroup', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'groupId')
|
||||
..pc<Layer>(2, _omitFieldNames ? '' : 'layers', $pb.PbFieldType.PM, subBuilder: Layer.create)
|
||||
..aOM<$0.MaskProperty>(3, _omitFieldNames ? '' : 'groupMask', subBuilder: $0.MaskProperty.create)
|
||||
..aOB(4, _omitFieldNames ? '' : 'isCriticalGroup')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
LayerGroup clone() => LayerGroup()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
LayerGroup copyWith(void Function(LayerGroup) updates) => super.copyWith((message) => updates(message as LayerGroup)) as LayerGroup;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static LayerGroup create() => LayerGroup._();
|
||||
LayerGroup createEmptyInstance() => create();
|
||||
static $pb.PbList<LayerGroup> createRepeated() => $pb.PbList<LayerGroup>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static LayerGroup getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<LayerGroup>(create);
|
||||
static LayerGroup? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get groupId => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set groupId($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasGroupId() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearGroupId() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.List<Layer> get layers => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$0.MaskProperty get groupMask => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set groupMask($0.MaskProperty v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasGroupMask() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearGroupMask() => clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
$0.MaskProperty ensureGroupMask() => $_ensure(2);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool get isCriticalGroup => $_getBF(3);
|
||||
@$pb.TagNumber(4)
|
||||
set isCriticalGroup($core.bool v) { $_setBool(3, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasIsCriticalGroup() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearIsCriticalGroup() => clearField(4);
|
||||
}
|
||||
|
||||
enum LayerTagConfig_Config {
|
||||
generalConfig,
|
||||
gyroConfig,
|
||||
commentDoubleClickConfig,
|
||||
liveAnimeConfig,
|
||||
notSet
|
||||
}
|
||||
|
||||
class LayerTagConfig extends $pb.GeneratedMessage {
|
||||
factory LayerTagConfig({
|
||||
$core.int? configType,
|
||||
GeneralConfig? generalConfig,
|
||||
$1.GyroConfig? gyroConfig,
|
||||
$1.CommentDoubleClickConfig? commentDoubleClickConfig,
|
||||
$1.LiveAnimeConfig? liveAnimeConfig,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (configType != null) {
|
||||
$result.configType = configType;
|
||||
}
|
||||
if (generalConfig != null) {
|
||||
$result.generalConfig = generalConfig;
|
||||
}
|
||||
if (gyroConfig != null) {
|
||||
$result.gyroConfig = gyroConfig;
|
||||
}
|
||||
if (commentDoubleClickConfig != null) {
|
||||
$result.commentDoubleClickConfig = commentDoubleClickConfig;
|
||||
}
|
||||
if (liveAnimeConfig != null) {
|
||||
$result.liveAnimeConfig = liveAnimeConfig;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
LayerTagConfig._() : super();
|
||||
factory LayerTagConfig.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory LayerTagConfig.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static const $core.Map<$core.int, LayerTagConfig_Config> _LayerTagConfig_ConfigByTag = {
|
||||
2 : LayerTagConfig_Config.generalConfig,
|
||||
3 : LayerTagConfig_Config.gyroConfig,
|
||||
4 : LayerTagConfig_Config.commentDoubleClickConfig,
|
||||
5 : LayerTagConfig_Config.liveAnimeConfig,
|
||||
0 : LayerTagConfig_Config.notSet
|
||||
};
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'LayerTagConfig', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1'), createEmptyInstance: create)
|
||||
..oo(0, [2, 3, 4, 5])
|
||||
..a<$core.int>(1, _omitFieldNames ? '' : 'configType', $pb.PbFieldType.O3)
|
||||
..aOM<GeneralConfig>(2, _omitFieldNames ? '' : 'generalConfig', subBuilder: GeneralConfig.create)
|
||||
..aOM<$1.GyroConfig>(3, _omitFieldNames ? '' : 'gyroConfig', subBuilder: $1.GyroConfig.create)
|
||||
..aOM<$1.CommentDoubleClickConfig>(4, _omitFieldNames ? '' : 'commentDoubleClickConfig', protoName: 'comment_doubleClick_config', subBuilder: $1.CommentDoubleClickConfig.create)
|
||||
..aOM<$1.LiveAnimeConfig>(5, _omitFieldNames ? '' : 'liveAnimeConfig', subBuilder: $1.LiveAnimeConfig.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
LayerTagConfig clone() => LayerTagConfig()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
LayerTagConfig copyWith(void Function(LayerTagConfig) updates) => super.copyWith((message) => updates(message as LayerTagConfig)) as LayerTagConfig;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static LayerTagConfig create() => LayerTagConfig._();
|
||||
LayerTagConfig createEmptyInstance() => create();
|
||||
static $pb.PbList<LayerTagConfig> createRepeated() => $pb.PbList<LayerTagConfig>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static LayerTagConfig getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<LayerTagConfig>(create);
|
||||
static LayerTagConfig? _defaultInstance;
|
||||
|
||||
LayerTagConfig_Config whichConfig() => _LayerTagConfig_ConfigByTag[$_whichOneof(0)]!;
|
||||
void clearConfig() => clearField($_whichOneof(0));
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.int get configType => $_getIZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set configType($core.int v) { $_setSignedInt32(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasConfigType() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearConfigType() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
GeneralConfig get generalConfig => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set generalConfig(GeneralConfig v) { setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasGeneralConfig() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearGeneralConfig() => clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
GeneralConfig ensureGeneralConfig() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$1.GyroConfig get gyroConfig => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set gyroConfig($1.GyroConfig v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasGyroConfig() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearGyroConfig() => clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
$1.GyroConfig ensureGyroConfig() => $_ensure(2);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$1.CommentDoubleClickConfig get commentDoubleClickConfig => $_getN(3);
|
||||
@$pb.TagNumber(4)
|
||||
set commentDoubleClickConfig($1.CommentDoubleClickConfig v) { setField(4, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasCommentDoubleClickConfig() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearCommentDoubleClickConfig() => clearField(4);
|
||||
@$pb.TagNumber(4)
|
||||
$1.CommentDoubleClickConfig ensureCommentDoubleClickConfig() => $_ensure(3);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$1.LiveAnimeConfig get liveAnimeConfig => $_getN(4);
|
||||
@$pb.TagNumber(5)
|
||||
set liveAnimeConfig($1.LiveAnimeConfig v) { setField(5, v); }
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasLiveAnimeConfig() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearLiveAnimeConfig() => clearField(5);
|
||||
@$pb.TagNumber(5)
|
||||
$1.LiveAnimeConfig ensureLiveAnimeConfig() => $_ensure(4);
|
||||
}
|
||||
|
||||
class ResAnimation extends $pb.GeneratedMessage {
|
||||
factory ResAnimation({
|
||||
$0.ResourceSource? webpSrc,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (webpSrc != null) {
|
||||
$result.webpSrc = webpSrc;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
ResAnimation._() : super();
|
||||
factory ResAnimation.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory ResAnimation.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ResAnimation', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1'), createEmptyInstance: create)
|
||||
..aOM<$0.ResourceSource>(1, _omitFieldNames ? '' : 'webpSrc', subBuilder: $0.ResourceSource.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
ResAnimation clone() => ResAnimation()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
ResAnimation copyWith(void Function(ResAnimation) updates) => super.copyWith((message) => updates(message as ResAnimation)) as ResAnimation;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ResAnimation create() => ResAnimation._();
|
||||
ResAnimation createEmptyInstance() => create();
|
||||
static $pb.PbList<ResAnimation> createRepeated() => $pb.PbList<ResAnimation>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ResAnimation getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ResAnimation>(create);
|
||||
static ResAnimation? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$0.ResourceSource get webpSrc => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set webpSrc($0.ResourceSource v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasWebpSrc() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearWebpSrc() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$0.ResourceSource ensureWebpSrc() => $_ensure(0);
|
||||
}
|
||||
|
||||
class ResImage extends $pb.GeneratedMessage {
|
||||
factory ResImage({
|
||||
$0.ResourceSource? imageSrc,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (imageSrc != null) {
|
||||
$result.imageSrc = imageSrc;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
ResImage._() : super();
|
||||
factory ResImage.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory ResImage.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ResImage', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1'), createEmptyInstance: create)
|
||||
..aOM<$0.ResourceSource>(1, _omitFieldNames ? '' : 'imageSrc', subBuilder: $0.ResourceSource.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
ResImage clone() => ResImage()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
ResImage copyWith(void Function(ResImage) updates) => super.copyWith((message) => updates(message as ResImage)) as ResImage;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ResImage create() => ResImage._();
|
||||
ResImage createEmptyInstance() => create();
|
||||
static $pb.PbList<ResImage> createRepeated() => $pb.PbList<ResImage>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ResImage getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ResImage>(create);
|
||||
static ResImage? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$0.ResourceSource get imageSrc => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set imageSrc($0.ResourceSource v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasImageSrc() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearImageSrc() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$0.ResourceSource ensureImageSrc() => $_ensure(0);
|
||||
}
|
||||
|
||||
class ResNativeDraw extends $pb.GeneratedMessage {
|
||||
factory ResNativeDraw({
|
||||
$0.ResourceSource? drawSrc,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (drawSrc != null) {
|
||||
$result.drawSrc = drawSrc;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
ResNativeDraw._() : super();
|
||||
factory ResNativeDraw.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory ResNativeDraw.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ResNativeDraw', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1'), createEmptyInstance: create)
|
||||
..aOM<$0.ResourceSource>(1, _omitFieldNames ? '' : 'drawSrc', subBuilder: $0.ResourceSource.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
ResNativeDraw clone() => ResNativeDraw()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
ResNativeDraw copyWith(void Function(ResNativeDraw) updates) => super.copyWith((message) => updates(message as ResNativeDraw)) as ResNativeDraw;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ResNativeDraw create() => ResNativeDraw._();
|
||||
ResNativeDraw createEmptyInstance() => create();
|
||||
static $pb.PbList<ResNativeDraw> createRepeated() => $pb.PbList<ResNativeDraw>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ResNativeDraw getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ResNativeDraw>(create);
|
||||
static ResNativeDraw? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$0.ResourceSource get drawSrc => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set drawSrc($0.ResourceSource v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasDrawSrc() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearDrawSrc() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$0.ResourceSource ensureDrawSrc() => $_ensure(0);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/grpc/dagw/component/avatar/v1/avatar.pbenum.dart
Normal file
11
lib/grpc/dagw/component/avatar/v1/avatar.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: bilibili/dagw/component/avatar/v1/avatar.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||
|
||||
222
lib/grpc/dagw/component/avatar/v1/avatar.pbjson.dart
Normal file
222
lib/grpc/dagw/component/avatar/v1/avatar.pbjson.dart
Normal file
@@ -0,0 +1,222 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: bilibili/dagw/component/avatar/v1/avatar.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||
|
||||
import 'dart:convert' as $convert;
|
||||
import 'dart:core' as $core;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use avatarItemDescriptor instead')
|
||||
const AvatarItem$json = {
|
||||
'1': 'AvatarItem',
|
||||
'2': [
|
||||
{'1': 'container_size', '3': 1, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.common.SizeSpec', '10': 'containerSize'},
|
||||
{'1': 'layers', '3': 2, '4': 3, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.LayerGroup', '10': 'layers'},
|
||||
{'1': 'fallback_layers', '3': 3, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.LayerGroup', '10': 'fallbackLayers'},
|
||||
{'1': 'mid', '3': 4, '4': 1, '5': 3, '10': 'mid'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `AvatarItem`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List avatarItemDescriptor = $convert.base64Decode(
|
||||
'CgpBdmF0YXJJdGVtElYKDmNvbnRhaW5lcl9zaXplGAEgASgLMi8uYmlsaWJpbGkuZGFndy5jb2'
|
||||
'1wb25lbnQuYXZhdGFyLmNvbW1vbi5TaXplU3BlY1INY29udGFpbmVyU2l6ZRJFCgZsYXllcnMY'
|
||||
'AiADKAsyLS5iaWxpYmlsaS5kYWd3LmNvbXBvbmVudC5hdmF0YXIudjEuTGF5ZXJHcm91cFIGbG'
|
||||
'F5ZXJzElYKD2ZhbGxiYWNrX2xheWVycxgDIAEoCzItLmJpbGliaWxpLmRhZ3cuY29tcG9uZW50'
|
||||
'LmF2YXRhci52MS5MYXllckdyb3VwUg5mYWxsYmFja0xheWVycxIQCgNtaWQYBCABKANSA21pZA'
|
||||
'==');
|
||||
|
||||
@$core.Deprecated('Use basicLayerResourceDescriptor instead')
|
||||
const BasicLayerResource$json = {
|
||||
'1': 'BasicLayerResource',
|
||||
'2': [
|
||||
{'1': 'res_type', '3': 1, '4': 1, '5': 5, '10': 'resType'},
|
||||
{'1': 'res_image', '3': 2, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.ResImage', '9': 0, '10': 'resImage'},
|
||||
{'1': 'res_animation', '3': 3, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.ResAnimation', '9': 0, '10': 'resAnimation'},
|
||||
{'1': 'res_native_draw', '3': 4, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.ResNativeDraw', '9': 0, '10': 'resNativeDraw'},
|
||||
],
|
||||
'8': [
|
||||
{'1': 'payload'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `BasicLayerResource`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List basicLayerResourceDescriptor = $convert.base64Decode(
|
||||
'ChJCYXNpY0xheWVyUmVzb3VyY2USGQoIcmVzX3R5cGUYASABKAVSB3Jlc1R5cGUSSgoJcmVzX2'
|
||||
'ltYWdlGAIgASgLMisuYmlsaWJpbGkuZGFndy5jb21wb25lbnQuYXZhdGFyLnYxLlJlc0ltYWdl'
|
||||
'SABSCHJlc0ltYWdlElYKDXJlc19hbmltYXRpb24YAyABKAsyLy5iaWxpYmlsaS5kYWd3LmNvbX'
|
||||
'BvbmVudC5hdmF0YXIudjEuUmVzQW5pbWF0aW9uSABSDHJlc0FuaW1hdGlvbhJaCg9yZXNfbmF0'
|
||||
'aXZlX2RyYXcYBCABKAsyMC5iaWxpYmlsaS5kYWd3LmNvbXBvbmVudC5hdmF0YXIudjEuUmVzTm'
|
||||
'F0aXZlRHJhd0gAUg1yZXNOYXRpdmVEcmF3QgkKB3BheWxvYWQ=');
|
||||
|
||||
@$core.Deprecated('Use generalConfigDescriptor instead')
|
||||
const GeneralConfig$json = {
|
||||
'1': 'GeneralConfig',
|
||||
'2': [
|
||||
{'1': 'web_css_style', '3': 1, '4': 3, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.GeneralConfig.WebCssStyleEntry', '10': 'webCssStyle'},
|
||||
],
|
||||
'3': [GeneralConfig_WebCssStyleEntry$json],
|
||||
};
|
||||
|
||||
@$core.Deprecated('Use generalConfigDescriptor instead')
|
||||
const GeneralConfig_WebCssStyleEntry$json = {
|
||||
'1': 'WebCssStyleEntry',
|
||||
'2': [
|
||||
{'1': 'key', '3': 1, '4': 1, '5': 9, '10': 'key'},
|
||||
{'1': 'value', '3': 2, '4': 1, '5': 9, '10': 'value'},
|
||||
],
|
||||
'7': {'7': true},
|
||||
};
|
||||
|
||||
/// Descriptor for `GeneralConfig`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List generalConfigDescriptor = $convert.base64Decode(
|
||||
'Cg1HZW5lcmFsQ29uZmlnEmUKDXdlYl9jc3Nfc3R5bGUYASADKAsyQS5iaWxpYmlsaS5kYWd3Lm'
|
||||
'NvbXBvbmVudC5hdmF0YXIudjEuR2VuZXJhbENvbmZpZy5XZWJDc3NTdHlsZUVudHJ5Ugt3ZWJD'
|
||||
'c3NTdHlsZRo+ChBXZWJDc3NTdHlsZUVudHJ5EhAKA2tleRgBIAEoCVIDa2V5EhQKBXZhbHVlGA'
|
||||
'IgASgJUgV2YWx1ZToCOAE=');
|
||||
|
||||
@$core.Deprecated('Use layerDescriptor instead')
|
||||
const Layer$json = {
|
||||
'1': 'Layer',
|
||||
'2': [
|
||||
{'1': 'layer_id', '3': 1, '4': 1, '5': 9, '10': 'layerId'},
|
||||
{'1': 'visible', '3': 2, '4': 1, '5': 8, '10': 'visible'},
|
||||
{'1': 'general_spec', '3': 3, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.common.LayerGeneralSpec', '10': 'generalSpec'},
|
||||
{'1': 'layer_config', '3': 4, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.LayerConfig', '10': 'layerConfig'},
|
||||
{'1': 'resource', '3': 5, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.BasicLayerResource', '10': 'resource'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `Layer`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List layerDescriptor = $convert.base64Decode(
|
||||
'CgVMYXllchIZCghsYXllcl9pZBgBIAEoCVIHbGF5ZXJJZBIYCgd2aXNpYmxlGAIgASgIUgd2aX'
|
||||
'NpYmxlEloKDGdlbmVyYWxfc3BlYxgDIAEoCzI3LmJpbGliaWxpLmRhZ3cuY29tcG9uZW50LmF2'
|
||||
'YXRhci5jb21tb24uTGF5ZXJHZW5lcmFsU3BlY1ILZ2VuZXJhbFNwZWMSUQoMbGF5ZXJfY29uZm'
|
||||
'lnGAQgASgLMi4uYmlsaWJpbGkuZGFndy5jb21wb25lbnQuYXZhdGFyLnYxLkxheWVyQ29uZmln'
|
||||
'UgtsYXllckNvbmZpZxJRCghyZXNvdXJjZRgFIAEoCzI1LmJpbGliaWxpLmRhZ3cuY29tcG9uZW'
|
||||
'50LmF2YXRhci52MS5CYXNpY0xheWVyUmVzb3VyY2VSCHJlc291cmNl');
|
||||
|
||||
@$core.Deprecated('Use layerConfigDescriptor instead')
|
||||
const LayerConfig$json = {
|
||||
'1': 'LayerConfig',
|
||||
'2': [
|
||||
{'1': 'tags', '3': 1, '4': 3, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.LayerConfig.TagsEntry', '10': 'tags'},
|
||||
{'1': 'is_critical', '3': 2, '4': 1, '5': 8, '10': 'isCritical'},
|
||||
{'1': 'allow_over_paint', '3': 3, '4': 1, '5': 8, '10': 'allowOverPaint'},
|
||||
{'1': 'layer_mask', '3': 4, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.common.MaskProperty', '10': 'layerMask'},
|
||||
],
|
||||
'3': [LayerConfig_TagsEntry$json],
|
||||
};
|
||||
|
||||
@$core.Deprecated('Use layerConfigDescriptor instead')
|
||||
const LayerConfig_TagsEntry$json = {
|
||||
'1': 'TagsEntry',
|
||||
'2': [
|
||||
{'1': 'key', '3': 1, '4': 1, '5': 9, '10': 'key'},
|
||||
{'1': 'value', '3': 2, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.LayerTagConfig', '10': 'value'},
|
||||
],
|
||||
'7': {'7': true},
|
||||
};
|
||||
|
||||
/// Descriptor for `LayerConfig`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List layerConfigDescriptor = $convert.base64Decode(
|
||||
'CgtMYXllckNvbmZpZxJMCgR0YWdzGAEgAygLMjguYmlsaWJpbGkuZGFndy5jb21wb25lbnQuYX'
|
||||
'ZhdGFyLnYxLkxheWVyQ29uZmlnLlRhZ3NFbnRyeVIEdGFncxIfCgtpc19jcml0aWNhbBgCIAEo'
|
||||
'CFIKaXNDcml0aWNhbBIoChBhbGxvd19vdmVyX3BhaW50GAMgASgIUg5hbGxvd092ZXJQYWludB'
|
||||
'JSCgpsYXllcl9tYXNrGAQgASgLMjMuYmlsaWJpbGkuZGFndy5jb21wb25lbnQuYXZhdGFyLmNv'
|
||||
'bW1vbi5NYXNrUHJvcGVydHlSCWxheWVyTWFzaxpqCglUYWdzRW50cnkSEAoDa2V5GAEgASgJUg'
|
||||
'NrZXkSRwoFdmFsdWUYAiABKAsyMS5iaWxpYmlsaS5kYWd3LmNvbXBvbmVudC5hdmF0YXIudjEu'
|
||||
'TGF5ZXJUYWdDb25maWdSBXZhbHVlOgI4AQ==');
|
||||
|
||||
@$core.Deprecated('Use layerGroupDescriptor instead')
|
||||
const LayerGroup$json = {
|
||||
'1': 'LayerGroup',
|
||||
'2': [
|
||||
{'1': 'group_id', '3': 1, '4': 1, '5': 9, '10': 'groupId'},
|
||||
{'1': 'layers', '3': 2, '4': 3, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.Layer', '10': 'layers'},
|
||||
{'1': 'group_mask', '3': 3, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.common.MaskProperty', '10': 'groupMask'},
|
||||
{'1': 'is_critical_group', '3': 4, '4': 1, '5': 8, '10': 'isCriticalGroup'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `LayerGroup`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List layerGroupDescriptor = $convert.base64Decode(
|
||||
'CgpMYXllckdyb3VwEhkKCGdyb3VwX2lkGAEgASgJUgdncm91cElkEkAKBmxheWVycxgCIAMoCz'
|
||||
'IoLmJpbGliaWxpLmRhZ3cuY29tcG9uZW50LmF2YXRhci52MS5MYXllclIGbGF5ZXJzElIKCmdy'
|
||||
'b3VwX21hc2sYAyABKAsyMy5iaWxpYmlsaS5kYWd3LmNvbXBvbmVudC5hdmF0YXIuY29tbW9uLk'
|
||||
'1hc2tQcm9wZXJ0eVIJZ3JvdXBNYXNrEioKEWlzX2NyaXRpY2FsX2dyb3VwGAQgASgIUg9pc0Ny'
|
||||
'aXRpY2FsR3JvdXA=');
|
||||
|
||||
@$core.Deprecated('Use layerTagConfigDescriptor instead')
|
||||
const LayerTagConfig$json = {
|
||||
'1': 'LayerTagConfig',
|
||||
'2': [
|
||||
{'1': 'config_type', '3': 1, '4': 1, '5': 5, '10': 'configType'},
|
||||
{'1': 'general_config', '3': 2, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.GeneralConfig', '9': 0, '10': 'generalConfig'},
|
||||
{'1': 'gyro_config', '3': 3, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.plugin.GyroConfig', '9': 0, '10': 'gyroConfig'},
|
||||
{'1': 'comment_doubleClick_config', '3': 4, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.plugin.CommentDoubleClickConfig', '9': 0, '10': 'commentDoubleClickConfig'},
|
||||
{'1': 'live_anime_config', '3': 5, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.plugin.LiveAnimeConfig', '9': 0, '10': 'liveAnimeConfig'},
|
||||
],
|
||||
'8': [
|
||||
{'1': 'config'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `LayerTagConfig`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List layerTagConfigDescriptor = $convert.base64Decode(
|
||||
'Cg5MYXllclRhZ0NvbmZpZxIfCgtjb25maWdfdHlwZRgBIAEoBVIKY29uZmlnVHlwZRJZCg5nZW'
|
||||
'5lcmFsX2NvbmZpZxgCIAEoCzIwLmJpbGliaWxpLmRhZ3cuY29tcG9uZW50LmF2YXRhci52MS5H'
|
||||
'ZW5lcmFsQ29uZmlnSABSDWdlbmVyYWxDb25maWcSVwoLZ3lyb19jb25maWcYAyABKAsyNC5iaW'
|
||||
'xpYmlsaS5kYWd3LmNvbXBvbmVudC5hdmF0YXIudjEucGx1Z2luLkd5cm9Db25maWdIAFIKZ3ly'
|
||||
'b0NvbmZpZxKCAQoaY29tbWVudF9kb3VibGVDbGlja19jb25maWcYBCABKAsyQi5iaWxpYmlsaS'
|
||||
'5kYWd3LmNvbXBvbmVudC5hdmF0YXIudjEucGx1Z2luLkNvbW1lbnREb3VibGVDbGlja0NvbmZp'
|
||||
'Z0gAUhhjb21tZW50RG91YmxlQ2xpY2tDb25maWcSZwoRbGl2ZV9hbmltZV9jb25maWcYBSABKA'
|
||||
'syOS5iaWxpYmlsaS5kYWd3LmNvbXBvbmVudC5hdmF0YXIudjEucGx1Z2luLkxpdmVBbmltZUNv'
|
||||
'bmZpZ0gAUg9saXZlQW5pbWVDb25maWdCCAoGY29uZmln');
|
||||
|
||||
@$core.Deprecated('Use resAnimationDescriptor instead')
|
||||
const ResAnimation$json = {
|
||||
'1': 'ResAnimation',
|
||||
'2': [
|
||||
{'1': 'webp_src', '3': 1, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.common.ResourceSource', '10': 'webpSrc'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ResAnimation`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List resAnimationDescriptor = $convert.base64Decode(
|
||||
'CgxSZXNBbmltYXRpb24SUAoId2VicF9zcmMYASABKAsyNS5iaWxpYmlsaS5kYWd3LmNvbXBvbm'
|
||||
'VudC5hdmF0YXIuY29tbW9uLlJlc291cmNlU291cmNlUgd3ZWJwU3Jj');
|
||||
|
||||
@$core.Deprecated('Use resImageDescriptor instead')
|
||||
const ResImage$json = {
|
||||
'1': 'ResImage',
|
||||
'2': [
|
||||
{'1': 'image_src', '3': 1, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.common.ResourceSource', '10': 'imageSrc'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ResImage`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List resImageDescriptor = $convert.base64Decode(
|
||||
'CghSZXNJbWFnZRJSCglpbWFnZV9zcmMYASABKAsyNS5iaWxpYmlsaS5kYWd3LmNvbXBvbmVudC'
|
||||
'5hdmF0YXIuY29tbW9uLlJlc291cmNlU291cmNlUghpbWFnZVNyYw==');
|
||||
|
||||
@$core.Deprecated('Use resNativeDrawDescriptor instead')
|
||||
const ResNativeDraw$json = {
|
||||
'1': 'ResNativeDraw',
|
||||
'2': [
|
||||
{'1': 'draw_src', '3': 1, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.common.ResourceSource', '10': 'drawSrc'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ResNativeDraw`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List resNativeDrawDescriptor = $convert.base64Decode(
|
||||
'Cg1SZXNOYXRpdmVEcmF3ElAKCGRyYXdfc3JjGAEgASgLMjUuYmlsaWJpbGkuZGFndy5jb21wb2'
|
||||
'5lbnQuYXZhdGFyLmNvbW1vbi5SZXNvdXJjZVNvdXJjZVIHZHJhd1NyYw==');
|
||||
|
||||
699
lib/grpc/dagw/component/avatar/v1/plugin.pb.dart
Normal file
699
lib/grpc/dagw/component/avatar/v1/plugin.pb.dart
Normal file
@@ -0,0 +1,699 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: bilibili/dagw/component/avatar/v1/plugin.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||
|
||||
import 'dart:core' as $core;
|
||||
|
||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import '../common/common.pb.dart' as $0;
|
||||
|
||||
class CommentDoubleClickConfig extends $pb.GeneratedMessage {
|
||||
factory CommentDoubleClickConfig({
|
||||
Interaction? interaction,
|
||||
$core.double? animationScale,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (interaction != null) {
|
||||
$result.interaction = interaction;
|
||||
}
|
||||
if (animationScale != null) {
|
||||
$result.animationScale = animationScale;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
CommentDoubleClickConfig._() : super();
|
||||
factory CommentDoubleClickConfig.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CommentDoubleClickConfig.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CommentDoubleClickConfig', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1.plugin'), createEmptyInstance: create)
|
||||
..aOM<Interaction>(1, _omitFieldNames ? '' : 'interaction', subBuilder: Interaction.create)
|
||||
..a<$core.double>(2, _omitFieldNames ? '' : 'animationScale', $pb.PbFieldType.OD)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
CommentDoubleClickConfig clone() => CommentDoubleClickConfig()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
CommentDoubleClickConfig copyWith(void Function(CommentDoubleClickConfig) updates) => super.copyWith((message) => updates(message as CommentDoubleClickConfig)) as CommentDoubleClickConfig;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CommentDoubleClickConfig create() => CommentDoubleClickConfig._();
|
||||
CommentDoubleClickConfig createEmptyInstance() => create();
|
||||
static $pb.PbList<CommentDoubleClickConfig> createRepeated() => $pb.PbList<CommentDoubleClickConfig>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CommentDoubleClickConfig getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CommentDoubleClickConfig>(create);
|
||||
static CommentDoubleClickConfig? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
Interaction get interaction => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set interaction(Interaction v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasInteraction() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearInteraction() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
Interaction ensureInteraction() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.double get animationScale => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set animationScale($core.double v) { $_setDouble(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasAnimationScale() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearAnimationScale() => clearField(2);
|
||||
}
|
||||
|
||||
class GyroConfig extends $pb.GeneratedMessage {
|
||||
factory GyroConfig({
|
||||
NFTImageV2? gyroscope,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (gyroscope != null) {
|
||||
$result.gyroscope = gyroscope;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
GyroConfig._() : super();
|
||||
factory GyroConfig.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory GyroConfig.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GyroConfig', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1.plugin'), createEmptyInstance: create)
|
||||
..aOM<NFTImageV2>(1, _omitFieldNames ? '' : 'gyroscope', subBuilder: NFTImageV2.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
GyroConfig clone() => GyroConfig()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
GyroConfig copyWith(void Function(GyroConfig) updates) => super.copyWith((message) => updates(message as GyroConfig)) as GyroConfig;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GyroConfig create() => GyroConfig._();
|
||||
GyroConfig createEmptyInstance() => create();
|
||||
static $pb.PbList<GyroConfig> createRepeated() => $pb.PbList<GyroConfig>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GyroConfig getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GyroConfig>(create);
|
||||
static GyroConfig? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
NFTImageV2 get gyroscope => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set gyroscope(NFTImageV2 v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasGyroscope() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearGyroscope() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
NFTImageV2 ensureGyroscope() => $_ensure(0);
|
||||
}
|
||||
|
||||
class GyroscopeContentV2 extends $pb.GeneratedMessage {
|
||||
factory GyroscopeContentV2({
|
||||
$core.String? fileUrl,
|
||||
$core.double? scale,
|
||||
$core.Iterable<PhysicalOrientationV2>? physicalOrientation,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (fileUrl != null) {
|
||||
$result.fileUrl = fileUrl;
|
||||
}
|
||||
if (scale != null) {
|
||||
$result.scale = scale;
|
||||
}
|
||||
if (physicalOrientation != null) {
|
||||
$result.physicalOrientation.addAll(physicalOrientation);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
GyroscopeContentV2._() : super();
|
||||
factory GyroscopeContentV2.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory GyroscopeContentV2.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GyroscopeContentV2', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1.plugin'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'fileUrl')
|
||||
..a<$core.double>(2, _omitFieldNames ? '' : 'scale', $pb.PbFieldType.OF)
|
||||
..pc<PhysicalOrientationV2>(3, _omitFieldNames ? '' : 'physicalOrientation', $pb.PbFieldType.PM, subBuilder: PhysicalOrientationV2.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
GyroscopeContentV2 clone() => GyroscopeContentV2()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
GyroscopeContentV2 copyWith(void Function(GyroscopeContentV2) updates) => super.copyWith((message) => updates(message as GyroscopeContentV2)) as GyroscopeContentV2;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GyroscopeContentV2 create() => GyroscopeContentV2._();
|
||||
GyroscopeContentV2 createEmptyInstance() => create();
|
||||
static $pb.PbList<GyroscopeContentV2> createRepeated() => $pb.PbList<GyroscopeContentV2>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GyroscopeContentV2 getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GyroscopeContentV2>(create);
|
||||
static GyroscopeContentV2? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get fileUrl => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set fileUrl($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasFileUrl() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearFileUrl() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.double get scale => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set scale($core.double v) { $_setFloat(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasScale() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearScale() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.List<PhysicalOrientationV2> get physicalOrientation => $_getList(2);
|
||||
}
|
||||
|
||||
class GyroscopeEntityV2 extends $pb.GeneratedMessage {
|
||||
factory GyroscopeEntityV2({
|
||||
$core.String? displayType,
|
||||
$core.Iterable<GyroscopeContentV2>? contents,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (displayType != null) {
|
||||
$result.displayType = displayType;
|
||||
}
|
||||
if (contents != null) {
|
||||
$result.contents.addAll(contents);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
GyroscopeEntityV2._() : super();
|
||||
factory GyroscopeEntityV2.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory GyroscopeEntityV2.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GyroscopeEntityV2', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1.plugin'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'displayType')
|
||||
..pc<GyroscopeContentV2>(2, _omitFieldNames ? '' : 'contents', $pb.PbFieldType.PM, subBuilder: GyroscopeContentV2.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
GyroscopeEntityV2 clone() => GyroscopeEntityV2()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
GyroscopeEntityV2 copyWith(void Function(GyroscopeEntityV2) updates) => super.copyWith((message) => updates(message as GyroscopeEntityV2)) as GyroscopeEntityV2;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GyroscopeEntityV2 create() => GyroscopeEntityV2._();
|
||||
GyroscopeEntityV2 createEmptyInstance() => create();
|
||||
static $pb.PbList<GyroscopeEntityV2> createRepeated() => $pb.PbList<GyroscopeEntityV2>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GyroscopeEntityV2 getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GyroscopeEntityV2>(create);
|
||||
static GyroscopeEntityV2? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get displayType => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set displayType($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasDisplayType() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearDisplayType() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.List<GyroscopeContentV2> get contents => $_getList(1);
|
||||
}
|
||||
|
||||
class Interaction extends $pb.GeneratedMessage {
|
||||
factory Interaction({
|
||||
$core.String? nftId,
|
||||
$core.bool? enabled,
|
||||
$core.String? itype,
|
||||
$core.String? metadataUrl,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (nftId != null) {
|
||||
$result.nftId = nftId;
|
||||
}
|
||||
if (enabled != null) {
|
||||
$result.enabled = enabled;
|
||||
}
|
||||
if (itype != null) {
|
||||
$result.itype = itype;
|
||||
}
|
||||
if (metadataUrl != null) {
|
||||
$result.metadataUrl = metadataUrl;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
Interaction._() : super();
|
||||
factory Interaction.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory Interaction.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Interaction', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1.plugin'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'nftId')
|
||||
..aOB(2, _omitFieldNames ? '' : 'enabled')
|
||||
..aOS(3, _omitFieldNames ? '' : 'itype')
|
||||
..aOS(4, _omitFieldNames ? '' : 'metadataUrl')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
Interaction clone() => Interaction()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
Interaction copyWith(void Function(Interaction) updates) => super.copyWith((message) => updates(message as Interaction)) as Interaction;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static Interaction create() => Interaction._();
|
||||
Interaction createEmptyInstance() => create();
|
||||
static $pb.PbList<Interaction> createRepeated() => $pb.PbList<Interaction>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static Interaction getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Interaction>(create);
|
||||
static Interaction? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get nftId => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set nftId($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasNftId() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearNftId() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool get enabled => $_getBF(1);
|
||||
@$pb.TagNumber(2)
|
||||
set enabled($core.bool v) { $_setBool(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasEnabled() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearEnabled() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get itype => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set itype($core.String v) { $_setString(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasItype() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearItype() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get metadataUrl => $_getSZ(3);
|
||||
@$pb.TagNumber(4)
|
||||
set metadataUrl($core.String v) { $_setString(3, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasMetadataUrl() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearMetadataUrl() => clearField(4);
|
||||
}
|
||||
|
||||
class LiveAnimeConfig extends $pb.GeneratedMessage {
|
||||
factory LiveAnimeConfig({
|
||||
$core.bool? isLive,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (isLive != null) {
|
||||
$result.isLive = isLive;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
LiveAnimeConfig._() : super();
|
||||
factory LiveAnimeConfig.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory LiveAnimeConfig.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'LiveAnimeConfig', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1.plugin'), createEmptyInstance: create)
|
||||
..aOB(1, _omitFieldNames ? '' : 'isLive')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
LiveAnimeConfig clone() => LiveAnimeConfig()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
LiveAnimeConfig copyWith(void Function(LiveAnimeConfig) updates) => super.copyWith((message) => updates(message as LiveAnimeConfig)) as LiveAnimeConfig;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static LiveAnimeConfig create() => LiveAnimeConfig._();
|
||||
LiveAnimeConfig createEmptyInstance() => create();
|
||||
static $pb.PbList<LiveAnimeConfig> createRepeated() => $pb.PbList<LiveAnimeConfig>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static LiveAnimeConfig getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<LiveAnimeConfig>(create);
|
||||
static LiveAnimeConfig? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool get isLive => $_getBF(0);
|
||||
@$pb.TagNumber(1)
|
||||
set isLive($core.bool v) { $_setBool(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasIsLive() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearIsLive() => clearField(1);
|
||||
}
|
||||
|
||||
class LiveAnimeItem extends $pb.GeneratedMessage {
|
||||
factory LiveAnimeItem({
|
||||
$0.ColorConfig? color,
|
||||
$core.double? startRatio,
|
||||
$core.double? endRatio,
|
||||
$core.double? startStroke,
|
||||
$core.double? startOpacity,
|
||||
$fixnum.Int64? phase,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (color != null) {
|
||||
$result.color = color;
|
||||
}
|
||||
if (startRatio != null) {
|
||||
$result.startRatio = startRatio;
|
||||
}
|
||||
if (endRatio != null) {
|
||||
$result.endRatio = endRatio;
|
||||
}
|
||||
if (startStroke != null) {
|
||||
$result.startStroke = startStroke;
|
||||
}
|
||||
if (startOpacity != null) {
|
||||
$result.startOpacity = startOpacity;
|
||||
}
|
||||
if (phase != null) {
|
||||
$result.phase = phase;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
LiveAnimeItem._() : super();
|
||||
factory LiveAnimeItem.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory LiveAnimeItem.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'LiveAnimeItem', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1.plugin'), createEmptyInstance: create)
|
||||
..aOM<$0.ColorConfig>(1, _omitFieldNames ? '' : 'color', subBuilder: $0.ColorConfig.create)
|
||||
..a<$core.double>(2, _omitFieldNames ? '' : 'startRatio', $pb.PbFieldType.OD)
|
||||
..a<$core.double>(3, _omitFieldNames ? '' : 'endRatio', $pb.PbFieldType.OD)
|
||||
..a<$core.double>(4, _omitFieldNames ? '' : 'startStroke', $pb.PbFieldType.OD)
|
||||
..a<$core.double>(5, _omitFieldNames ? '' : 'startOpacity', $pb.PbFieldType.OD)
|
||||
..aInt64(6, _omitFieldNames ? '' : 'phase')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
LiveAnimeItem clone() => LiveAnimeItem()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
LiveAnimeItem copyWith(void Function(LiveAnimeItem) updates) => super.copyWith((message) => updates(message as LiveAnimeItem)) as LiveAnimeItem;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static LiveAnimeItem create() => LiveAnimeItem._();
|
||||
LiveAnimeItem createEmptyInstance() => create();
|
||||
static $pb.PbList<LiveAnimeItem> createRepeated() => $pb.PbList<LiveAnimeItem>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static LiveAnimeItem getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<LiveAnimeItem>(create);
|
||||
static LiveAnimeItem? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$0.ColorConfig get color => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set color($0.ColorConfig v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasColor() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearColor() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$0.ColorConfig ensureColor() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.double get startRatio => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set startRatio($core.double v) { $_setDouble(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasStartRatio() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearStartRatio() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.double get endRatio => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set endRatio($core.double v) { $_setDouble(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasEndRatio() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearEndRatio() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.double get startStroke => $_getN(3);
|
||||
@$pb.TagNumber(4)
|
||||
set startStroke($core.double v) { $_setDouble(3, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasStartStroke() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearStartStroke() => clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$core.double get startOpacity => $_getN(4);
|
||||
@$pb.TagNumber(5)
|
||||
set startOpacity($core.double v) { $_setDouble(4, v); }
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasStartOpacity() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearStartOpacity() => clearField(5);
|
||||
|
||||
@$pb.TagNumber(6)
|
||||
$fixnum.Int64 get phase => $_getI64(5);
|
||||
@$pb.TagNumber(6)
|
||||
set phase($fixnum.Int64 v) { $_setInt64(5, v); }
|
||||
@$pb.TagNumber(6)
|
||||
$core.bool hasPhase() => $_has(5);
|
||||
@$pb.TagNumber(6)
|
||||
void clearPhase() => clearField(6);
|
||||
}
|
||||
|
||||
class NFTImageV2 extends $pb.GeneratedMessage {
|
||||
factory NFTImageV2({
|
||||
$core.Iterable<GyroscopeEntityV2>? gyroscope,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (gyroscope != null) {
|
||||
$result.gyroscope.addAll(gyroscope);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
NFTImageV2._() : super();
|
||||
factory NFTImageV2.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory NFTImageV2.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'NFTImageV2', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1.plugin'), createEmptyInstance: create)
|
||||
..pc<GyroscopeEntityV2>(1, _omitFieldNames ? '' : 'gyroscope', $pb.PbFieldType.PM, subBuilder: GyroscopeEntityV2.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
NFTImageV2 clone() => NFTImageV2()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
NFTImageV2 copyWith(void Function(NFTImageV2) updates) => super.copyWith((message) => updates(message as NFTImageV2)) as NFTImageV2;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static NFTImageV2 create() => NFTImageV2._();
|
||||
NFTImageV2 createEmptyInstance() => create();
|
||||
static $pb.PbList<NFTImageV2> createRepeated() => $pb.PbList<NFTImageV2>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static NFTImageV2 getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<NFTImageV2>(create);
|
||||
static NFTImageV2? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.List<GyroscopeEntityV2> get gyroscope => $_getList(0);
|
||||
}
|
||||
|
||||
class PhysicalOrientationAnimation extends $pb.GeneratedMessage {
|
||||
factory PhysicalOrientationAnimation({
|
||||
$core.String? type,
|
||||
$core.String? bezier,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (type != null) {
|
||||
$result.type = type;
|
||||
}
|
||||
if (bezier != null) {
|
||||
$result.bezier = bezier;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
PhysicalOrientationAnimation._() : super();
|
||||
factory PhysicalOrientationAnimation.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory PhysicalOrientationAnimation.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'PhysicalOrientationAnimation', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1.plugin'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'type')
|
||||
..aOS(3, _omitFieldNames ? '' : 'bezier')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
PhysicalOrientationAnimation clone() => PhysicalOrientationAnimation()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
PhysicalOrientationAnimation copyWith(void Function(PhysicalOrientationAnimation) updates) => super.copyWith((message) => updates(message as PhysicalOrientationAnimation)) as PhysicalOrientationAnimation;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static PhysicalOrientationAnimation create() => PhysicalOrientationAnimation._();
|
||||
PhysicalOrientationAnimation createEmptyInstance() => create();
|
||||
static $pb.PbList<PhysicalOrientationAnimation> createRepeated() => $pb.PbList<PhysicalOrientationAnimation>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static PhysicalOrientationAnimation getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<PhysicalOrientationAnimation>(create);
|
||||
static PhysicalOrientationAnimation? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get type => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set type($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasType() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearType() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get bezier => $_getSZ(1);
|
||||
@$pb.TagNumber(3)
|
||||
set bezier($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasBezier() => $_has(1);
|
||||
@$pb.TagNumber(3)
|
||||
void clearBezier() => clearField(3);
|
||||
}
|
||||
|
||||
class PhysicalOrientationV2 extends $pb.GeneratedMessage {
|
||||
factory PhysicalOrientationV2({
|
||||
$core.String? type,
|
||||
$core.Iterable<PhysicalOrientationAnimation>? animations,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (type != null) {
|
||||
$result.type = type;
|
||||
}
|
||||
if (animations != null) {
|
||||
$result.animations.addAll(animations);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
PhysicalOrientationV2._() : super();
|
||||
factory PhysicalOrientationV2.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory PhysicalOrientationV2.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'PhysicalOrientationV2', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.dagw.component.avatar.v1.plugin'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'type')
|
||||
..pc<PhysicalOrientationAnimation>(3, _omitFieldNames ? '' : 'animations', $pb.PbFieldType.PM, subBuilder: PhysicalOrientationAnimation.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
PhysicalOrientationV2 clone() => PhysicalOrientationV2()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
PhysicalOrientationV2 copyWith(void Function(PhysicalOrientationV2) updates) => super.copyWith((message) => updates(message as PhysicalOrientationV2)) as PhysicalOrientationV2;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static PhysicalOrientationV2 create() => PhysicalOrientationV2._();
|
||||
PhysicalOrientationV2 createEmptyInstance() => create();
|
||||
static $pb.PbList<PhysicalOrientationV2> createRepeated() => $pb.PbList<PhysicalOrientationV2>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static PhysicalOrientationV2 getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<PhysicalOrientationV2>(create);
|
||||
static PhysicalOrientationV2? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get type => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set type($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasType() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearType() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.List<PhysicalOrientationAnimation> get animations => $_getList(1);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/grpc/dagw/component/avatar/v1/plugin.pbenum.dart
Normal file
11
lib/grpc/dagw/component/avatar/v1/plugin.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: bilibili/dagw/component/avatar/v1/plugin.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||
|
||||
167
lib/grpc/dagw/component/avatar/v1/plugin.pbjson.dart
Normal file
167
lib/grpc/dagw/component/avatar/v1/plugin.pbjson.dart
Normal file
@@ -0,0 +1,167 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: bilibili/dagw/component/avatar/v1/plugin.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||
|
||||
import 'dart:convert' as $convert;
|
||||
import 'dart:core' as $core;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use commentDoubleClickConfigDescriptor instead')
|
||||
const CommentDoubleClickConfig$json = {
|
||||
'1': 'CommentDoubleClickConfig',
|
||||
'2': [
|
||||
{'1': 'interaction', '3': 1, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.plugin.Interaction', '10': 'interaction'},
|
||||
{'1': 'animation_scale', '3': 2, '4': 1, '5': 1, '10': 'animationScale'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CommentDoubleClickConfig`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List commentDoubleClickConfigDescriptor = $convert.base64Decode(
|
||||
'ChhDb21tZW50RG91YmxlQ2xpY2tDb25maWcSVwoLaW50ZXJhY3Rpb24YASABKAsyNS5iaWxpYm'
|
||||
'lsaS5kYWd3LmNvbXBvbmVudC5hdmF0YXIudjEucGx1Z2luLkludGVyYWN0aW9uUgtpbnRlcmFj'
|
||||
'dGlvbhInCg9hbmltYXRpb25fc2NhbGUYAiABKAFSDmFuaW1hdGlvblNjYWxl');
|
||||
|
||||
@$core.Deprecated('Use gyroConfigDescriptor instead')
|
||||
const GyroConfig$json = {
|
||||
'1': 'GyroConfig',
|
||||
'2': [
|
||||
{'1': 'gyroscope', '3': 1, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.plugin.NFTImageV2', '10': 'gyroscope'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GyroConfig`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List gyroConfigDescriptor = $convert.base64Decode(
|
||||
'CgpHeXJvQ29uZmlnElIKCWd5cm9zY29wZRgBIAEoCzI0LmJpbGliaWxpLmRhZ3cuY29tcG9uZW'
|
||||
'50LmF2YXRhci52MS5wbHVnaW4uTkZUSW1hZ2VWMlIJZ3lyb3Njb3Bl');
|
||||
|
||||
@$core.Deprecated('Use gyroscopeContentV2Descriptor instead')
|
||||
const GyroscopeContentV2$json = {
|
||||
'1': 'GyroscopeContentV2',
|
||||
'2': [
|
||||
{'1': 'file_url', '3': 1, '4': 1, '5': 9, '10': 'fileUrl'},
|
||||
{'1': 'scale', '3': 2, '4': 1, '5': 2, '10': 'scale'},
|
||||
{'1': 'physical_orientation', '3': 3, '4': 3, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.plugin.PhysicalOrientationV2', '10': 'physicalOrientation'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GyroscopeContentV2`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List gyroscopeContentV2Descriptor = $convert.base64Decode(
|
||||
'ChJHeXJvc2NvcGVDb250ZW50VjISGQoIZmlsZV91cmwYASABKAlSB2ZpbGVVcmwSFAoFc2NhbG'
|
||||
'UYAiABKAJSBXNjYWxlEnIKFHBoeXNpY2FsX29yaWVudGF0aW9uGAMgAygLMj8uYmlsaWJpbGku'
|
||||
'ZGFndy5jb21wb25lbnQuYXZhdGFyLnYxLnBsdWdpbi5QaHlzaWNhbE9yaWVudGF0aW9uVjJSE3'
|
||||
'BoeXNpY2FsT3JpZW50YXRpb24=');
|
||||
|
||||
@$core.Deprecated('Use gyroscopeEntityV2Descriptor instead')
|
||||
const GyroscopeEntityV2$json = {
|
||||
'1': 'GyroscopeEntityV2',
|
||||
'2': [
|
||||
{'1': 'display_type', '3': 1, '4': 1, '5': 9, '10': 'displayType'},
|
||||
{'1': 'contents', '3': 2, '4': 3, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.plugin.GyroscopeContentV2', '10': 'contents'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GyroscopeEntityV2`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List gyroscopeEntityV2Descriptor = $convert.base64Decode(
|
||||
'ChFHeXJvc2NvcGVFbnRpdHlWMhIhCgxkaXNwbGF5X3R5cGUYASABKAlSC2Rpc3BsYXlUeXBlEl'
|
||||
'gKCGNvbnRlbnRzGAIgAygLMjwuYmlsaWJpbGkuZGFndy5jb21wb25lbnQuYXZhdGFyLnYxLnBs'
|
||||
'dWdpbi5HeXJvc2NvcGVDb250ZW50VjJSCGNvbnRlbnRz');
|
||||
|
||||
@$core.Deprecated('Use interactionDescriptor instead')
|
||||
const Interaction$json = {
|
||||
'1': 'Interaction',
|
||||
'2': [
|
||||
{'1': 'nft_id', '3': 1, '4': 1, '5': 9, '10': 'nftId'},
|
||||
{'1': 'enabled', '3': 2, '4': 1, '5': 8, '10': 'enabled'},
|
||||
{'1': 'itype', '3': 3, '4': 1, '5': 9, '10': 'itype'},
|
||||
{'1': 'metadata_url', '3': 4, '4': 1, '5': 9, '10': 'metadataUrl'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `Interaction`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List interactionDescriptor = $convert.base64Decode(
|
||||
'CgtJbnRlcmFjdGlvbhIVCgZuZnRfaWQYASABKAlSBW5mdElkEhgKB2VuYWJsZWQYAiABKAhSB2'
|
||||
'VuYWJsZWQSFAoFaXR5cGUYAyABKAlSBWl0eXBlEiEKDG1ldGFkYXRhX3VybBgEIAEoCVILbWV0'
|
||||
'YWRhdGFVcmw=');
|
||||
|
||||
@$core.Deprecated('Use liveAnimeConfigDescriptor instead')
|
||||
const LiveAnimeConfig$json = {
|
||||
'1': 'LiveAnimeConfig',
|
||||
'2': [
|
||||
{'1': 'is_live', '3': 1, '4': 1, '5': 8, '10': 'isLive'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `LiveAnimeConfig`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List liveAnimeConfigDescriptor = $convert.base64Decode(
|
||||
'Cg9MaXZlQW5pbWVDb25maWcSFwoHaXNfbGl2ZRgBIAEoCFIGaXNMaXZl');
|
||||
|
||||
@$core.Deprecated('Use liveAnimeItemDescriptor instead')
|
||||
const LiveAnimeItem$json = {
|
||||
'1': 'LiveAnimeItem',
|
||||
'2': [
|
||||
{'1': 'color', '3': 1, '4': 1, '5': 11, '6': '.bilibili.dagw.component.avatar.common.ColorConfig', '10': 'color'},
|
||||
{'1': 'start_ratio', '3': 2, '4': 1, '5': 1, '10': 'startRatio'},
|
||||
{'1': 'end_ratio', '3': 3, '4': 1, '5': 1, '10': 'endRatio'},
|
||||
{'1': 'start_stroke', '3': 4, '4': 1, '5': 1, '10': 'startStroke'},
|
||||
{'1': 'start_opacity', '3': 5, '4': 1, '5': 1, '10': 'startOpacity'},
|
||||
{'1': 'phase', '3': 6, '4': 1, '5': 3, '10': 'phase'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `LiveAnimeItem`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List liveAnimeItemDescriptor = $convert.base64Decode(
|
||||
'Cg1MaXZlQW5pbWVJdGVtEkgKBWNvbG9yGAEgASgLMjIuYmlsaWJpbGkuZGFndy5jb21wb25lbn'
|
||||
'QuYXZhdGFyLmNvbW1vbi5Db2xvckNvbmZpZ1IFY29sb3ISHwoLc3RhcnRfcmF0aW8YAiABKAFS'
|
||||
'CnN0YXJ0UmF0aW8SGwoJZW5kX3JhdGlvGAMgASgBUghlbmRSYXRpbxIhCgxzdGFydF9zdHJva2'
|
||||
'UYBCABKAFSC3N0YXJ0U3Ryb2tlEiMKDXN0YXJ0X29wYWNpdHkYBSABKAFSDHN0YXJ0T3BhY2l0'
|
||||
'eRIUCgVwaGFzZRgGIAEoA1IFcGhhc2U=');
|
||||
|
||||
@$core.Deprecated('Use nFTImageV2Descriptor instead')
|
||||
const NFTImageV2$json = {
|
||||
'1': 'NFTImageV2',
|
||||
'2': [
|
||||
{'1': 'gyroscope', '3': 1, '4': 3, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.plugin.GyroscopeEntityV2', '10': 'gyroscope'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `NFTImageV2`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List nFTImageV2Descriptor = $convert.base64Decode(
|
||||
'CgpORlRJbWFnZVYyElkKCWd5cm9zY29wZRgBIAMoCzI7LmJpbGliaWxpLmRhZ3cuY29tcG9uZW'
|
||||
'50LmF2YXRhci52MS5wbHVnaW4uR3lyb3Njb3BlRW50aXR5VjJSCWd5cm9zY29wZQ==');
|
||||
|
||||
@$core.Deprecated('Use physicalOrientationAnimationDescriptor instead')
|
||||
const PhysicalOrientationAnimation$json = {
|
||||
'1': 'PhysicalOrientationAnimation',
|
||||
'2': [
|
||||
{'1': 'type', '3': 1, '4': 1, '5': 9, '10': 'type'},
|
||||
{'1': 'bezier', '3': 3, '4': 1, '5': 9, '10': 'bezier'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `PhysicalOrientationAnimation`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List physicalOrientationAnimationDescriptor = $convert.base64Decode(
|
||||
'ChxQaHlzaWNhbE9yaWVudGF0aW9uQW5pbWF0aW9uEhIKBHR5cGUYASABKAlSBHR5cGUSFgoGYm'
|
||||
'V6aWVyGAMgASgJUgZiZXppZXI=');
|
||||
|
||||
@$core.Deprecated('Use physicalOrientationV2Descriptor instead')
|
||||
const PhysicalOrientationV2$json = {
|
||||
'1': 'PhysicalOrientationV2',
|
||||
'2': [
|
||||
{'1': 'type', '3': 1, '4': 1, '5': 9, '10': 'type'},
|
||||
{'1': 'animations', '3': 3, '4': 3, '5': 11, '6': '.bilibili.dagw.component.avatar.v1.plugin.PhysicalOrientationAnimation', '10': 'animations'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `PhysicalOrientationV2`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List physicalOrientationV2Descriptor = $convert.base64Decode(
|
||||
'ChVQaHlzaWNhbE9yaWVudGF0aW9uVjISEgoEdHlwZRgBIAEoCVIEdHlwZRJmCgphbmltYXRpb2'
|
||||
'5zGAMgAygLMkYuYmlsaWJpbGkuZGFndy5jb21wb25lbnQuYXZhdGFyLnYxLnBsdWdpbi5QaHlz'
|
||||
'aWNhbE9yaWVudGF0aW9uQW5pbWF0aW9uUgphbmltYXRpb25z');
|
||||
|
||||
Reference in New Issue
Block a user