Latest generation

This commit is contained in:
ci core model
2025-07-02 09:50:11 +00:00
parent 6cd68bda75
commit 3134e36123
6 changed files with 1224 additions and 755 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG
Lib version: 1.11.0-SNAPSHOT-250701085647
Lib version: 1.11.0-SNAPSHOT-250702094948

File diff suppressed because it is too large Load Diff

View File

@@ -18,14 +18,16 @@ class TinyURLKind extends $pb.ProtobufEnum {
static const TinyURLKind TINYURL_KIND_UNKNOWN = TinyURLKind._(0, _omitEnumNames ? '' : 'TINYURL_KIND_UNKNOWN');
static const TinyURLKind TINYURL_KIND_FILE = TinyURLKind._(1, _omitEnumNames ? '' : 'TINYURL_KIND_FILE');
static const TinyURLKind TINYURL_KIND_URL = TinyURLKind._(2, _omitEnumNames ? '' : 'TINYURL_KIND_URL');
static const TinyURLKind TINYURL_KIND_PAYLOAD = TinyURLKind._(3, _omitEnumNames ? '' : 'TINYURL_KIND_PAYLOAD');
static const $core.List<TinyURLKind> values = <TinyURLKind> [
TINYURL_KIND_UNKNOWN,
TINYURL_KIND_FILE,
TINYURL_KIND_URL,
TINYURL_KIND_PAYLOAD,
];
static final $core.List<TinyURLKind?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
static final $core.List<TinyURLKind?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 3);
static TinyURLKind? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
const TinyURLKind._(super.value, super.name);

View File

@@ -32,96 +32,112 @@ class TinyURLServiceClient extends $grpc.Client {
TinyURLServiceClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.ShortenSiteURLResult> shortenSiteURL($0.ShortenSiteURLRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$shortenSiteURL, request, options: options);
$grpc.ResponseFuture<$0.SiteShortenURLResponse> siteShortenURL($0.SiteShortenURLRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$siteShortenURL, request, options: options);
}
$grpc.ResponseFuture<$0.ShortenPartnerAppURLResult> shortenPartnerAppURL($0.ShortenPartnerAppURLRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$shortenPartnerAppURL, request, options: options);
$grpc.ResponseFuture<$0.PartnerAppShortenURLResponse> partnerAppShortenURL($0.PartnerAppShortenURLRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$partnerAppShortenURL, request, options: options);
}
$grpc.ResponseFuture<$0.UploadSiteFileResponse> uploadSiteFile($0.UploadSiteFileRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$uploadSiteFile, request, options: options);
$grpc.ResponseFuture<$0.SiteUploadFileResponse> siteUploadFile($0.SiteUploadFileRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$siteUploadFile, request, options: options);
}
$grpc.ResponseFuture<$0.UploadPartnerAppFileResponse> uploadPartnerAppFile($0.UploadPartnerAppFileRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$uploadPartnerAppFile, request, options: options);
$grpc.ResponseFuture<$0.PartnerAppUploadFileResponse> partnerAppUploadFile($0.PartnerAppUploadFileRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$partnerAppUploadFile, request, options: options);
}
$grpc.ResponseFuture<$0.ListSiteTinyURLsResponse> listSiteTinyURLs($0.ListSiteTinyURLsRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$listSiteTinyURLs, request, options: options);
$grpc.ResponseFuture<$0.SiteUploadPayloadResponse> siteUploadPayload($0.SiteUploadPayloadRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$siteUploadPayload, request, options: options);
}
$grpc.ResponseFuture<$0.ListPartnerAppTinyURLsResponse> listPartnerAppTinyURLs($0.ListPartnerAppTinyURLsRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$listPartnerAppTinyURLs, request, options: options);
$grpc.ResponseFuture<$0.PartnerAppUploadPayloadResponse> partnerAppUploadPayload($0.PartnerAppUploadPayloadRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$partnerAppUploadPayload, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteSiteTinyURLResponse> deleteSiteTinyURL($0.DeleteSiteTinyURLRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deleteSiteTinyURL, request, options: options);
$grpc.ResponseFuture<$0.SiteListTinyURLsResponse> siteListTinyURLs($0.SiteListTinyURLsRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$siteListTinyURLs, request, options: options);
}
$grpc.ResponseFuture<$0.DeletePartnerAppTinyURLResponse> deletePartnerAppTinyURL($0.DeletePartnerAppTinyURLRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deletePartnerAppTinyURL, request, options: options);
$grpc.ResponseFuture<$0.PartnerAppListTinyURLsResponse> partnerAppListTinyURLs($0.PartnerAppListTinyURLsRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$partnerAppListTinyURLs, request, options: options);
}
$grpc.ResponseFuture<$0.GetSiteTinyURLResult> getSiteTinyURL($0.GetSiteTinyURLRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getSiteTinyURL, request, options: options);
$grpc.ResponseFuture<$0.SiteDeleteTinyURLResponse> siteDeleteTinyURL($0.SiteDeleteTinyURLRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$siteDeleteTinyURL, request, options: options);
}
$grpc.ResponseFuture<$0.GetPartnerAppTinyURLResult> getPartnerAppTinyURL($0.GetPartnerAppTinyURLRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getPartnerAppTinyURL, request, options: options);
$grpc.ResponseFuture<$0.PartnerAppDeleteTinyURLResponse> partnerAppDeleteTinyURL($0.PartnerAppDeleteTinyURLRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$partnerAppDeleteTinyURL, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteAllTinyURLsResult> deleteAll($0.DeleteAllTinyURLsRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$0.SiteGetTinyURLResponse> siteGetTinyURL($0.SiteGetTinyURLRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$siteGetTinyURL, request, options: options);
}
$grpc.ResponseFuture<$0.PartnerAppGetTinyURLResponse> partnerAppGetTinyURL($0.PartnerAppGetTinyURLRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$partnerAppGetTinyURL, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteAllTinyURLsResponse> deleteAll($0.DeleteAllTinyURLsRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deleteAll, request, options: options);
}
// method descriptors
static final _$shortenSiteURL = $grpc.ClientMethod<$0.ShortenSiteURLRequest, $0.ShortenSiteURLResult>(
'/api.TinyURLService/ShortenSiteURL',
($0.ShortenSiteURLRequest value) => value.writeToBuffer(),
$0.ShortenSiteURLResult.fromBuffer);
static final _$shortenPartnerAppURL = $grpc.ClientMethod<$0.ShortenPartnerAppURLRequest, $0.ShortenPartnerAppURLResult>(
'/api.TinyURLService/ShortenPartnerAppURL',
($0.ShortenPartnerAppURLRequest value) => value.writeToBuffer(),
$0.ShortenPartnerAppURLResult.fromBuffer);
static final _$uploadSiteFile = $grpc.ClientMethod<$0.UploadSiteFileRequest, $0.UploadSiteFileResponse>(
'/api.TinyURLService/UploadSiteFile',
($0.UploadSiteFileRequest value) => value.writeToBuffer(),
$0.UploadSiteFileResponse.fromBuffer);
static final _$uploadPartnerAppFile = $grpc.ClientMethod<$0.UploadPartnerAppFileRequest, $0.UploadPartnerAppFileResponse>(
'/api.TinyURLService/UploadPartnerAppFile',
($0.UploadPartnerAppFileRequest value) => value.writeToBuffer(),
$0.UploadPartnerAppFileResponse.fromBuffer);
static final _$listSiteTinyURLs = $grpc.ClientMethod<$0.ListSiteTinyURLsRequest, $0.ListSiteTinyURLsResponse>(
'/api.TinyURLService/ListSiteTinyURLs',
($0.ListSiteTinyURLsRequest value) => value.writeToBuffer(),
$0.ListSiteTinyURLsResponse.fromBuffer);
static final _$listPartnerAppTinyURLs = $grpc.ClientMethod<$0.ListPartnerAppTinyURLsRequest, $0.ListPartnerAppTinyURLsResponse>(
'/api.TinyURLService/ListPartnerAppTinyURLs',
($0.ListPartnerAppTinyURLsRequest value) => value.writeToBuffer(),
$0.ListPartnerAppTinyURLsResponse.fromBuffer);
static final _$deleteSiteTinyURL = $grpc.ClientMethod<$0.DeleteSiteTinyURLRequest, $0.DeleteSiteTinyURLResponse>(
'/api.TinyURLService/DeleteSiteTinyURL',
($0.DeleteSiteTinyURLRequest value) => value.writeToBuffer(),
$0.DeleteSiteTinyURLResponse.fromBuffer);
static final _$deletePartnerAppTinyURL = $grpc.ClientMethod<$0.DeletePartnerAppTinyURLRequest, $0.DeletePartnerAppTinyURLResponse>(
'/api.TinyURLService/DeletePartnerAppTinyURL',
($0.DeletePartnerAppTinyURLRequest value) => value.writeToBuffer(),
$0.DeletePartnerAppTinyURLResponse.fromBuffer);
static final _$getSiteTinyURL = $grpc.ClientMethod<$0.GetSiteTinyURLRequest, $0.GetSiteTinyURLResult>(
'/api.TinyURLService/GetSiteTinyURL',
($0.GetSiteTinyURLRequest value) => value.writeToBuffer(),
$0.GetSiteTinyURLResult.fromBuffer);
static final _$getPartnerAppTinyURL = $grpc.ClientMethod<$0.GetPartnerAppTinyURLRequest, $0.GetPartnerAppTinyURLResult>(
'/api.TinyURLService/GetPartnerAppTinyURL',
($0.GetPartnerAppTinyURLRequest value) => value.writeToBuffer(),
$0.GetPartnerAppTinyURLResult.fromBuffer);
static final _$deleteAll = $grpc.ClientMethod<$0.DeleteAllTinyURLsRequest, $0.DeleteAllTinyURLsResult>(
static final _$siteShortenURL = $grpc.ClientMethod<$0.SiteShortenURLRequest, $0.SiteShortenURLResponse>(
'/api.TinyURLService/SiteShortenURL',
($0.SiteShortenURLRequest value) => value.writeToBuffer(),
$0.SiteShortenURLResponse.fromBuffer);
static final _$partnerAppShortenURL = $grpc.ClientMethod<$0.PartnerAppShortenURLRequest, $0.PartnerAppShortenURLResponse>(
'/api.TinyURLService/PartnerAppShortenURL',
($0.PartnerAppShortenURLRequest value) => value.writeToBuffer(),
$0.PartnerAppShortenURLResponse.fromBuffer);
static final _$siteUploadFile = $grpc.ClientMethod<$0.SiteUploadFileRequest, $0.SiteUploadFileResponse>(
'/api.TinyURLService/SiteUploadFile',
($0.SiteUploadFileRequest value) => value.writeToBuffer(),
$0.SiteUploadFileResponse.fromBuffer);
static final _$partnerAppUploadFile = $grpc.ClientMethod<$0.PartnerAppUploadFileRequest, $0.PartnerAppUploadFileResponse>(
'/api.TinyURLService/PartnerAppUploadFile',
($0.PartnerAppUploadFileRequest value) => value.writeToBuffer(),
$0.PartnerAppUploadFileResponse.fromBuffer);
static final _$siteUploadPayload = $grpc.ClientMethod<$0.SiteUploadPayloadRequest, $0.SiteUploadPayloadResponse>(
'/api.TinyURLService/SiteUploadPayload',
($0.SiteUploadPayloadRequest value) => value.writeToBuffer(),
$0.SiteUploadPayloadResponse.fromBuffer);
static final _$partnerAppUploadPayload = $grpc.ClientMethod<$0.PartnerAppUploadPayloadRequest, $0.PartnerAppUploadPayloadResponse>(
'/api.TinyURLService/PartnerAppUploadPayload',
($0.PartnerAppUploadPayloadRequest value) => value.writeToBuffer(),
$0.PartnerAppUploadPayloadResponse.fromBuffer);
static final _$siteListTinyURLs = $grpc.ClientMethod<$0.SiteListTinyURLsRequest, $0.SiteListTinyURLsResponse>(
'/api.TinyURLService/SiteListTinyURLs',
($0.SiteListTinyURLsRequest value) => value.writeToBuffer(),
$0.SiteListTinyURLsResponse.fromBuffer);
static final _$partnerAppListTinyURLs = $grpc.ClientMethod<$0.PartnerAppListTinyURLsRequest, $0.PartnerAppListTinyURLsResponse>(
'/api.TinyURLService/PartnerAppListTinyURLs',
($0.PartnerAppListTinyURLsRequest value) => value.writeToBuffer(),
$0.PartnerAppListTinyURLsResponse.fromBuffer);
static final _$siteDeleteTinyURL = $grpc.ClientMethod<$0.SiteDeleteTinyURLRequest, $0.SiteDeleteTinyURLResponse>(
'/api.TinyURLService/SiteDeleteTinyURL',
($0.SiteDeleteTinyURLRequest value) => value.writeToBuffer(),
$0.SiteDeleteTinyURLResponse.fromBuffer);
static final _$partnerAppDeleteTinyURL = $grpc.ClientMethod<$0.PartnerAppDeleteTinyURLRequest, $0.PartnerAppDeleteTinyURLResponse>(
'/api.TinyURLService/PartnerAppDeleteTinyURL',
($0.PartnerAppDeleteTinyURLRequest value) => value.writeToBuffer(),
$0.PartnerAppDeleteTinyURLResponse.fromBuffer);
static final _$siteGetTinyURL = $grpc.ClientMethod<$0.SiteGetTinyURLRequest, $0.SiteGetTinyURLResponse>(
'/api.TinyURLService/SiteGetTinyURL',
($0.SiteGetTinyURLRequest value) => value.writeToBuffer(),
$0.SiteGetTinyURLResponse.fromBuffer);
static final _$partnerAppGetTinyURL = $grpc.ClientMethod<$0.PartnerAppGetTinyURLRequest, $0.PartnerAppGetTinyURLResponse>(
'/api.TinyURLService/PartnerAppGetTinyURL',
($0.PartnerAppGetTinyURLRequest value) => value.writeToBuffer(),
$0.PartnerAppGetTinyURLResponse.fromBuffer);
static final _$deleteAll = $grpc.ClientMethod<$0.DeleteAllTinyURLsRequest, $0.DeleteAllTinyURLsResponse>(
'/api.TinyURLService/DeleteAll',
($0.DeleteAllTinyURLsRequest value) => value.writeToBuffer(),
$0.DeleteAllTinyURLsResult.fromBuffer);
$0.DeleteAllTinyURLsResponse.fromBuffer);
}
@$pb.GrpcServiceName('api.TinyURLService')
@@ -129,149 +145,175 @@ abstract class TinyURLServiceBase extends $grpc.Service {
$core.String get $name => 'api.TinyURLService';
TinyURLServiceBase() {
$addMethod($grpc.ServiceMethod<$0.ShortenSiteURLRequest, $0.ShortenSiteURLResult>(
'ShortenSiteURL',
shortenSiteURL_Pre,
$addMethod($grpc.ServiceMethod<$0.SiteShortenURLRequest, $0.SiteShortenURLResponse>(
'SiteShortenURL',
siteShortenURL_Pre,
false,
false,
($core.List<$core.int> value) => $0.ShortenSiteURLRequest.fromBuffer(value),
($0.ShortenSiteURLResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ShortenPartnerAppURLRequest, $0.ShortenPartnerAppURLResult>(
'ShortenPartnerAppURL',
shortenPartnerAppURL_Pre,
($core.List<$core.int> value) => $0.SiteShortenURLRequest.fromBuffer(value),
($0.SiteShortenURLResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.PartnerAppShortenURLRequest, $0.PartnerAppShortenURLResponse>(
'PartnerAppShortenURL',
partnerAppShortenURL_Pre,
false,
false,
($core.List<$core.int> value) => $0.ShortenPartnerAppURLRequest.fromBuffer(value),
($0.ShortenPartnerAppURLResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.UploadSiteFileRequest, $0.UploadSiteFileResponse>(
'UploadSiteFile',
uploadSiteFile_Pre,
($core.List<$core.int> value) => $0.PartnerAppShortenURLRequest.fromBuffer(value),
($0.PartnerAppShortenURLResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.SiteUploadFileRequest, $0.SiteUploadFileResponse>(
'SiteUploadFile',
siteUploadFile_Pre,
false,
false,
($core.List<$core.int> value) => $0.UploadSiteFileRequest.fromBuffer(value),
($0.UploadSiteFileResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.UploadPartnerAppFileRequest, $0.UploadPartnerAppFileResponse>(
'UploadPartnerAppFile',
uploadPartnerAppFile_Pre,
($core.List<$core.int> value) => $0.SiteUploadFileRequest.fromBuffer(value),
($0.SiteUploadFileResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.PartnerAppUploadFileRequest, $0.PartnerAppUploadFileResponse>(
'PartnerAppUploadFile',
partnerAppUploadFile_Pre,
false,
false,
($core.List<$core.int> value) => $0.UploadPartnerAppFileRequest.fromBuffer(value),
($0.UploadPartnerAppFileResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ListSiteTinyURLsRequest, $0.ListSiteTinyURLsResponse>(
'ListSiteTinyURLs',
listSiteTinyURLs_Pre,
($core.List<$core.int> value) => $0.PartnerAppUploadFileRequest.fromBuffer(value),
($0.PartnerAppUploadFileResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.SiteUploadPayloadRequest, $0.SiteUploadPayloadResponse>(
'SiteUploadPayload',
siteUploadPayload_Pre,
false,
false,
($core.List<$core.int> value) => $0.ListSiteTinyURLsRequest.fromBuffer(value),
($0.ListSiteTinyURLsResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ListPartnerAppTinyURLsRequest, $0.ListPartnerAppTinyURLsResponse>(
'ListPartnerAppTinyURLs',
listPartnerAppTinyURLs_Pre,
($core.List<$core.int> value) => $0.SiteUploadPayloadRequest.fromBuffer(value),
($0.SiteUploadPayloadResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.PartnerAppUploadPayloadRequest, $0.PartnerAppUploadPayloadResponse>(
'PartnerAppUploadPayload',
partnerAppUploadPayload_Pre,
false,
false,
($core.List<$core.int> value) => $0.ListPartnerAppTinyURLsRequest.fromBuffer(value),
($0.ListPartnerAppTinyURLsResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteSiteTinyURLRequest, $0.DeleteSiteTinyURLResponse>(
'DeleteSiteTinyURL',
deleteSiteTinyURL_Pre,
($core.List<$core.int> value) => $0.PartnerAppUploadPayloadRequest.fromBuffer(value),
($0.PartnerAppUploadPayloadResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.SiteListTinyURLsRequest, $0.SiteListTinyURLsResponse>(
'SiteListTinyURLs',
siteListTinyURLs_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteSiteTinyURLRequest.fromBuffer(value),
($0.DeleteSiteTinyURLResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeletePartnerAppTinyURLRequest, $0.DeletePartnerAppTinyURLResponse>(
'DeletePartnerAppTinyURL',
deletePartnerAppTinyURL_Pre,
($core.List<$core.int> value) => $0.SiteListTinyURLsRequest.fromBuffer(value),
($0.SiteListTinyURLsResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.PartnerAppListTinyURLsRequest, $0.PartnerAppListTinyURLsResponse>(
'PartnerAppListTinyURLs',
partnerAppListTinyURLs_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeletePartnerAppTinyURLRequest.fromBuffer(value),
($0.DeletePartnerAppTinyURLResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.GetSiteTinyURLRequest, $0.GetSiteTinyURLResult>(
'GetSiteTinyURL',
getSiteTinyURL_Pre,
($core.List<$core.int> value) => $0.PartnerAppListTinyURLsRequest.fromBuffer(value),
($0.PartnerAppListTinyURLsResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.SiteDeleteTinyURLRequest, $0.SiteDeleteTinyURLResponse>(
'SiteDeleteTinyURL',
siteDeleteTinyURL_Pre,
false,
false,
($core.List<$core.int> value) => $0.GetSiteTinyURLRequest.fromBuffer(value),
($0.GetSiteTinyURLResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.GetPartnerAppTinyURLRequest, $0.GetPartnerAppTinyURLResult>(
'GetPartnerAppTinyURL',
getPartnerAppTinyURL_Pre,
($core.List<$core.int> value) => $0.SiteDeleteTinyURLRequest.fromBuffer(value),
($0.SiteDeleteTinyURLResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.PartnerAppDeleteTinyURLRequest, $0.PartnerAppDeleteTinyURLResponse>(
'PartnerAppDeleteTinyURL',
partnerAppDeleteTinyURL_Pre,
false,
false,
($core.List<$core.int> value) => $0.GetPartnerAppTinyURLRequest.fromBuffer(value),
($0.GetPartnerAppTinyURLResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAllTinyURLsRequest, $0.DeleteAllTinyURLsResult>(
($core.List<$core.int> value) => $0.PartnerAppDeleteTinyURLRequest.fromBuffer(value),
($0.PartnerAppDeleteTinyURLResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.SiteGetTinyURLRequest, $0.SiteGetTinyURLResponse>(
'SiteGetTinyURL',
siteGetTinyURL_Pre,
false,
false,
($core.List<$core.int> value) => $0.SiteGetTinyURLRequest.fromBuffer(value),
($0.SiteGetTinyURLResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.PartnerAppGetTinyURLRequest, $0.PartnerAppGetTinyURLResponse>(
'PartnerAppGetTinyURL',
partnerAppGetTinyURL_Pre,
false,
false,
($core.List<$core.int> value) => $0.PartnerAppGetTinyURLRequest.fromBuffer(value),
($0.PartnerAppGetTinyURLResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAllTinyURLsRequest, $0.DeleteAllTinyURLsResponse>(
'DeleteAll',
deleteAll_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteAllTinyURLsRequest.fromBuffer(value),
($0.DeleteAllTinyURLsResult value) => value.writeToBuffer()));
($0.DeleteAllTinyURLsResponse value) => value.writeToBuffer()));
}
$async.Future<$0.ShortenSiteURLResult> shortenSiteURL_Pre($grpc.ServiceCall $call, $async.Future<$0.ShortenSiteURLRequest> $request) async {
return shortenSiteURL($call, await $request);
$async.Future<$0.SiteShortenURLResponse> siteShortenURL_Pre($grpc.ServiceCall $call, $async.Future<$0.SiteShortenURLRequest> $request) async {
return siteShortenURL($call, await $request);
}
$async.Future<$0.ShortenSiteURLResult> shortenSiteURL($grpc.ServiceCall call, $0.ShortenSiteURLRequest request);
$async.Future<$0.SiteShortenURLResponse> siteShortenURL($grpc.ServiceCall call, $0.SiteShortenURLRequest request);
$async.Future<$0.ShortenPartnerAppURLResult> shortenPartnerAppURL_Pre($grpc.ServiceCall $call, $async.Future<$0.ShortenPartnerAppURLRequest> $request) async {
return shortenPartnerAppURL($call, await $request);
$async.Future<$0.PartnerAppShortenURLResponse> partnerAppShortenURL_Pre($grpc.ServiceCall $call, $async.Future<$0.PartnerAppShortenURLRequest> $request) async {
return partnerAppShortenURL($call, await $request);
}
$async.Future<$0.ShortenPartnerAppURLResult> shortenPartnerAppURL($grpc.ServiceCall call, $0.ShortenPartnerAppURLRequest request);
$async.Future<$0.PartnerAppShortenURLResponse> partnerAppShortenURL($grpc.ServiceCall call, $0.PartnerAppShortenURLRequest request);
$async.Future<$0.UploadSiteFileResponse> uploadSiteFile_Pre($grpc.ServiceCall $call, $async.Future<$0.UploadSiteFileRequest> $request) async {
return uploadSiteFile($call, await $request);
$async.Future<$0.SiteUploadFileResponse> siteUploadFile_Pre($grpc.ServiceCall $call, $async.Future<$0.SiteUploadFileRequest> $request) async {
return siteUploadFile($call, await $request);
}
$async.Future<$0.UploadSiteFileResponse> uploadSiteFile($grpc.ServiceCall call, $0.UploadSiteFileRequest request);
$async.Future<$0.SiteUploadFileResponse> siteUploadFile($grpc.ServiceCall call, $0.SiteUploadFileRequest request);
$async.Future<$0.UploadPartnerAppFileResponse> uploadPartnerAppFile_Pre($grpc.ServiceCall $call, $async.Future<$0.UploadPartnerAppFileRequest> $request) async {
return uploadPartnerAppFile($call, await $request);
$async.Future<$0.PartnerAppUploadFileResponse> partnerAppUploadFile_Pre($grpc.ServiceCall $call, $async.Future<$0.PartnerAppUploadFileRequest> $request) async {
return partnerAppUploadFile($call, await $request);
}
$async.Future<$0.UploadPartnerAppFileResponse> uploadPartnerAppFile($grpc.ServiceCall call, $0.UploadPartnerAppFileRequest request);
$async.Future<$0.PartnerAppUploadFileResponse> partnerAppUploadFile($grpc.ServiceCall call, $0.PartnerAppUploadFileRequest request);
$async.Future<$0.ListSiteTinyURLsResponse> listSiteTinyURLs_Pre($grpc.ServiceCall $call, $async.Future<$0.ListSiteTinyURLsRequest> $request) async {
return listSiteTinyURLs($call, await $request);
$async.Future<$0.SiteUploadPayloadResponse> siteUploadPayload_Pre($grpc.ServiceCall $call, $async.Future<$0.SiteUploadPayloadRequest> $request) async {
return siteUploadPayload($call, await $request);
}
$async.Future<$0.ListSiteTinyURLsResponse> listSiteTinyURLs($grpc.ServiceCall call, $0.ListSiteTinyURLsRequest request);
$async.Future<$0.SiteUploadPayloadResponse> siteUploadPayload($grpc.ServiceCall call, $0.SiteUploadPayloadRequest request);
$async.Future<$0.ListPartnerAppTinyURLsResponse> listPartnerAppTinyURLs_Pre($grpc.ServiceCall $call, $async.Future<$0.ListPartnerAppTinyURLsRequest> $request) async {
return listPartnerAppTinyURLs($call, await $request);
$async.Future<$0.PartnerAppUploadPayloadResponse> partnerAppUploadPayload_Pre($grpc.ServiceCall $call, $async.Future<$0.PartnerAppUploadPayloadRequest> $request) async {
return partnerAppUploadPayload($call, await $request);
}
$async.Future<$0.ListPartnerAppTinyURLsResponse> listPartnerAppTinyURLs($grpc.ServiceCall call, $0.ListPartnerAppTinyURLsRequest request);
$async.Future<$0.PartnerAppUploadPayloadResponse> partnerAppUploadPayload($grpc.ServiceCall call, $0.PartnerAppUploadPayloadRequest request);
$async.Future<$0.DeleteSiteTinyURLResponse> deleteSiteTinyURL_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteSiteTinyURLRequest> $request) async {
return deleteSiteTinyURL($call, await $request);
$async.Future<$0.SiteListTinyURLsResponse> siteListTinyURLs_Pre($grpc.ServiceCall $call, $async.Future<$0.SiteListTinyURLsRequest> $request) async {
return siteListTinyURLs($call, await $request);
}
$async.Future<$0.DeleteSiteTinyURLResponse> deleteSiteTinyURL($grpc.ServiceCall call, $0.DeleteSiteTinyURLRequest request);
$async.Future<$0.SiteListTinyURLsResponse> siteListTinyURLs($grpc.ServiceCall call, $0.SiteListTinyURLsRequest request);
$async.Future<$0.DeletePartnerAppTinyURLResponse> deletePartnerAppTinyURL_Pre($grpc.ServiceCall $call, $async.Future<$0.DeletePartnerAppTinyURLRequest> $request) async {
return deletePartnerAppTinyURL($call, await $request);
$async.Future<$0.PartnerAppListTinyURLsResponse> partnerAppListTinyURLs_Pre($grpc.ServiceCall $call, $async.Future<$0.PartnerAppListTinyURLsRequest> $request) async {
return partnerAppListTinyURLs($call, await $request);
}
$async.Future<$0.DeletePartnerAppTinyURLResponse> deletePartnerAppTinyURL($grpc.ServiceCall call, $0.DeletePartnerAppTinyURLRequest request);
$async.Future<$0.PartnerAppListTinyURLsResponse> partnerAppListTinyURLs($grpc.ServiceCall call, $0.PartnerAppListTinyURLsRequest request);
$async.Future<$0.GetSiteTinyURLResult> getSiteTinyURL_Pre($grpc.ServiceCall $call, $async.Future<$0.GetSiteTinyURLRequest> $request) async {
return getSiteTinyURL($call, await $request);
$async.Future<$0.SiteDeleteTinyURLResponse> siteDeleteTinyURL_Pre($grpc.ServiceCall $call, $async.Future<$0.SiteDeleteTinyURLRequest> $request) async {
return siteDeleteTinyURL($call, await $request);
}
$async.Future<$0.GetSiteTinyURLResult> getSiteTinyURL($grpc.ServiceCall call, $0.GetSiteTinyURLRequest request);
$async.Future<$0.SiteDeleteTinyURLResponse> siteDeleteTinyURL($grpc.ServiceCall call, $0.SiteDeleteTinyURLRequest request);
$async.Future<$0.GetPartnerAppTinyURLResult> getPartnerAppTinyURL_Pre($grpc.ServiceCall $call, $async.Future<$0.GetPartnerAppTinyURLRequest> $request) async {
return getPartnerAppTinyURL($call, await $request);
$async.Future<$0.PartnerAppDeleteTinyURLResponse> partnerAppDeleteTinyURL_Pre($grpc.ServiceCall $call, $async.Future<$0.PartnerAppDeleteTinyURLRequest> $request) async {
return partnerAppDeleteTinyURL($call, await $request);
}
$async.Future<$0.GetPartnerAppTinyURLResult> getPartnerAppTinyURL($grpc.ServiceCall call, $0.GetPartnerAppTinyURLRequest request);
$async.Future<$0.PartnerAppDeleteTinyURLResponse> partnerAppDeleteTinyURL($grpc.ServiceCall call, $0.PartnerAppDeleteTinyURLRequest request);
$async.Future<$0.DeleteAllTinyURLsResult> deleteAll_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAllTinyURLsRequest> $request) async {
$async.Future<$0.SiteGetTinyURLResponse> siteGetTinyURL_Pre($grpc.ServiceCall $call, $async.Future<$0.SiteGetTinyURLRequest> $request) async {
return siteGetTinyURL($call, await $request);
}
$async.Future<$0.SiteGetTinyURLResponse> siteGetTinyURL($grpc.ServiceCall call, $0.SiteGetTinyURLRequest request);
$async.Future<$0.PartnerAppGetTinyURLResponse> partnerAppGetTinyURL_Pre($grpc.ServiceCall $call, $async.Future<$0.PartnerAppGetTinyURLRequest> $request) async {
return partnerAppGetTinyURL($call, await $request);
}
$async.Future<$0.PartnerAppGetTinyURLResponse> partnerAppGetTinyURL($grpc.ServiceCall call, $0.PartnerAppGetTinyURLRequest request);
$async.Future<$0.DeleteAllTinyURLsResponse> deleteAll_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAllTinyURLsRequest> $request) async {
return deleteAll($call, await $request);
}
$async.Future<$0.DeleteAllTinyURLsResult> deleteAll($grpc.ServiceCall call, $0.DeleteAllTinyURLsRequest request);
$async.Future<$0.DeleteAllTinyURLsResponse> deleteAll($grpc.ServiceCall call, $0.DeleteAllTinyURLsRequest request);
}

View File

@@ -21,42 +21,28 @@ const TinyURLKind$json = {
{'1': 'TINYURL_KIND_UNKNOWN', '2': 0},
{'1': 'TINYURL_KIND_FILE', '2': 1},
{'1': 'TINYURL_KIND_URL', '2': 2},
{'1': 'TINYURL_KIND_PAYLOAD', '2': 3},
],
};
/// Descriptor for `TinyURLKind`. Decode as a `google.protobuf.EnumDescriptorProto`.
final $typed_data.Uint8List tinyURLKindDescriptor = $convert.base64Decode(
'CgtUaW55VVJMS2luZBIYChRUSU5ZVVJMX0tJTkRfVU5LTk9XThAAEhUKEVRJTllVUkxfS0lORF'
'9GSUxFEAESFAoQVElOWVVSTF9LSU5EX1VSTBAC');
'9GSUxFEAESFAoQVElOWVVSTF9LSU5EX1VSTBACEhgKFFRJTllVUkxfS0lORF9QQVlMT0FEEAM=');
@$core.Deprecated('Use fileMetadataDescriptor instead')
const FileMetadata$json = {
'1': 'FileMetadata',
@$core.Deprecated('Use tinyURLKindDetailsDescriptor instead')
const TinyURLKindDetails$json = {
'1': 'TinyURLKindDetails',
'2': [
{'1': 'Name', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Name'},
{'1': 'MIMEType', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'MIMEType'},
{'1': 'Size', '3': 3, '4': 1, '5': 3, '10': 'Size'},
{'1': 'LongURL', '3': 1, '4': 1, '5': 9, '10': 'LongURL'},
{'1': 'FileName', '3': 2, '4': 1, '5': 9, '10': 'FileName'},
],
};
/// Descriptor for `FileMetadata`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List fileMetadataDescriptor = $convert.base64Decode(
'CgxGaWxlTWV0YWRhdGESGwoETmFtZRgBIAEoCUIH+kIEcgIQAVIETmFtZRIjCghNSU1FVHlwZR'
'gCIAEoCUIH+kIEcgIQAVIITUlNRVR5cGUSEgoEU2l6ZRgDIAEoA1IEU2l6ZQ==');
@$core.Deprecated('Use tinyURLDataDescriptor instead')
const TinyURLData$json = {
'1': 'TinyURLData',
'2': [
{'1': 'LongURL', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'LongURL'},
{'1': 'File', '3': 2, '4': 1, '5': 11, '6': '.api.FileMetadata', '10': 'File'},
],
};
/// Descriptor for `TinyURLData`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List tinyURLDataDescriptor = $convert.base64Decode(
'CgtUaW55VVJMRGF0YRIhCgdMb25nVVJMGAEgASgJQgf6QgRyAhABUgdMb25nVVJMEiUKBEZpbG'
'UYAiABKAsyES5hcGkuRmlsZU1ldGFkYXRhUgRGaWxl');
/// Descriptor for `TinyURLKindDetails`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List tinyURLKindDetailsDescriptor = $convert.base64Decode(
'ChJUaW55VVJMS2luZERldGFpbHMSGAoHTG9uZ1VSTBgBIAEoCVIHTG9uZ1VSTBIaCghGaWxlTm'
'FtZRgCIAEoCVIIRmlsZU5hbWU=');
@$core.Deprecated('Use tinyURLDescriptor instead')
const TinyURL$json = {
@@ -64,237 +50,338 @@ const TinyURL$json = {
'2': [
{'1': 'ID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ID'},
{'1': 'Kind', '3': 2, '4': 1, '5': 14, '6': '.api.TinyURLKind', '8': {}, '10': 'Kind'},
{'1': 'Data', '3': 3, '4': 1, '5': 11, '6': '.api.TinyURLData', '8': {}, '10': 'Data'},
{'1': 'Details', '3': 3, '4': 1, '5': 11, '6': '.api.TinyURLKindDetails', '8': {}, '10': 'Details'},
{'1': 'URL', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'URL'},
{'1': 'ResourceType', '3': 5, '4': 1, '5': 14, '6': '.api.ResourceType', '8': {}, '10': 'ResourceType'},
{'1': 'ResourceRefID', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'ResourceRefID'},
{'1': 'TimeToLive', '3': 7, '4': 1, '5': 3, '8': {}, '10': 'TimeToLive'},
{'1': 'CreatedAt', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'CreatedAt'},
{'1': 'IsPublic', '3': 9, '4': 1, '5': 8, '10': 'IsPublic'},
{'1': 'IsOnce', '3': 10, '4': 1, '5': 8, '10': 'IsOnce'},
{'1': 'MIMEType', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'MIMEType'},
{'1': 'Size', '3': 6, '4': 1, '5': 3, '10': 'Size'},
{'1': 'ResourceType', '3': 7, '4': 1, '5': 14, '6': '.api.ResourceType', '8': {}, '10': 'ResourceType'},
{'1': 'ResourceRefID', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'ResourceRefID'},
{'1': 'TimeToLive', '3': 9, '4': 1, '5': 3, '8': {}, '10': 'TimeToLive'},
{'1': 'CreatedAt', '3': 10, '4': 1, '5': 9, '8': {}, '10': 'CreatedAt'},
{'1': 'IsPublic', '3': 11, '4': 1, '5': 8, '10': 'IsPublic'},
{'1': 'IsOnce', '3': 12, '4': 1, '5': 8, '10': 'IsOnce'},
],
};
/// Descriptor for `TinyURL`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List tinyURLDescriptor = $convert.base64Decode(
'CgdUaW55VVJMEhcKAklEGAEgASgJQgf6QgRyAhABUgJJRBIuCgRLaW5kGAIgASgOMhAuYXBpLl'
'RpbnlVUkxLaW5kQgj6QgWCAQIQAVIES2luZBIuCgREYXRhGAMgASgLMhAuYXBpLlRpbnlVUkxE'
'YXRhQgj6QgWKAQIQAVIERGF0YRJdCgNVUkwYBCABKAlCS5JBQTI/U2hvcnRlbmVkIFVSTCB1c2'
'VkIHRvIHJldHJpZXZlIHRoZSBvcmlnaW5hbCBkYXRhIChVUkwgb3IgZmlsZSku+kIEcgIQAVID'
'VVJMEj8KDFJlc291cmNlVHlwZRgFIAEoDjIRLmFwaS5SZXNvdXJjZVR5cGVCCPpCBYIBAhABUg'
'xSZXNvdXJjZVR5cGUSLQoNUmVzb3VyY2VSZWZJRBgGIAEoCUIH+kIEcgIQAVINUmVzb3VyY2VS'
'ZWZJRBK5AQoKVGltZVRvTGl2ZRgHIAEoA0KYAZJBiQEyhgFTcGVjaWZpZXMgdGhlIHRpbWUgdG'
'8gbGl2ZSAoVFRMKSBvZiB0aGUgVGlueVVSTCBpbiBzZWNvbmRzLCBsaW1pdGVkIHRvIGZpZnR5'
'IHllYXJzLiBBIHZhbHVlIG9mIHplcm8gb3IgbGVzcyBpbmRpY2F0ZXMgYW4gaW5maW5pdGUgVF'
'RMLvpCCCIGGIDeoMsFUgpUaW1lVG9MaXZlEoABCglDcmVhdGVkQXQYCCABKAlCYpJBVzJVVVRD'
'IGRhdGUvdGltZSBpbiA8YSBocmVmPSdodHRwczovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9JU0'
'9fODYwMSc+SVNPIDg2MDE8L2E+IGZvcm1hdPpCBXID0AEBUglDcmVhdGVkQXQSGgoISXNQdWJs'
'aWMYCSABKAhSCElzUHVibGljEhYKBklzT25jZRgKIAEoCFIGSXNPbmNl');
'CgdUaW55VVJMEhcKAklEGAEgASgJQgf6QgRyAhABUgJJRBJfCgRLaW5kGAIgASgOMhAuYXBpLl'
'RpbnlVUkxLaW5kQjmSQS4yLEtpbmQgb2YgdGhlIHRpbnkgdXJsIChmaWxlLCBwYXlsb2FkIG9y'
'IHVybCku+kIFggECEAFSBEtpbmQSdQoHRGV0YWlscxgDIAEoCzIXLmFwaS5UaW55VVJMS2luZE'
'RldGFpbHNCQpJBNzI1Q29udGFpbnMgZGF0YSBzcGVjaWZpYyB0byB0aGUgc2VsZWN0ZWQgdGlu'
'eSB1cmwga2luZC76QgWKAQIQAVIHRGV0YWlscxJPCgNVUkwYBCABKAlCPZJBMzIxU2hvcnRlbm'
'VkIFVSTCB1c2VkIHRvIHJldHJpZXZlIHRoZSBvcmlnaW5hbCBkYXRhLvpCBHICEAFSA1VSTBIj'
'CghNSU1FVHlwZRgFIAEoCUIH+kIEcgIQAVIITUlNRVR5cGUSEgoEU2l6ZRgGIAEoA1IEU2l6ZR'
'I/CgxSZXNvdXJjZVR5cGUYByABKA4yES5hcGkuUmVzb3VyY2VUeXBlQgj6QgWCAQIQAVIMUmVz'
'b3VyY2VUeXBlEi0KDVJlc291cmNlUmVmSUQYCCABKAlCB/pCBHICEAFSDVJlc291cmNlUmVmSU'
'QSuQEKClRpbWVUb0xpdmUYCSABKANCmAGSQYkBMoYBU3BlY2lmaWVzIHRoZSB0aW1lIHRvIGxp'
'dmUgKFRUTCkgb2YgdGhlIFRpbnlVUkwgaW4gc2Vjb25kcywgbGltaXRlZCB0byBmaWZ0eSB5ZW'
'Fycy4gQSB2YWx1ZSBvZiB6ZXJvIG9yIGxlc3MgaW5kaWNhdGVzIGFuIGluZmluaXRlIFRUTC76'
'QggiBhiA3qDLBVIKVGltZVRvTGl2ZRKAAQoJQ3JlYXRlZEF0GAogASgJQmKSQVcyVVVUQyBkYX'
'RlL3RpbWUgaW4gPGEgaHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzg2'
'MDEnPklTTyA4NjAxPC9hPiBmb3JtYXT6QgVyA9ABAVIJQ3JlYXRlZEF0EhoKCElzUHVibGljGA'
'sgASgIUghJc1B1YmxpYxIWCgZJc09uY2UYDCABKAhSBklzT25jZQ==');
@$core.Deprecated('Use shortenSiteURLRequestDescriptor instead')
const ShortenSiteURLRequest$json = {
'1': 'ShortenSiteURLRequest',
@$core.Deprecated('Use siteShortenURLRequestDescriptor instead')
const SiteShortenURLRequest$json = {
'1': 'SiteShortenURLRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
{'1': 'URL', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'URL'},
{'1': 'TimeToLive', '3': 3, '4': 1, '5': 3, '8': {}, '10': 'TimeToLive'},
{'1': 'isPublic', '3': 4, '4': 1, '5': 8, '10': 'isPublic'},
{'1': 'isOnce', '3': 5, '4': 1, '5': 8, '10': 'isOnce'},
{'1': 'IsPublic', '3': 4, '4': 1, '5': 8, '10': 'IsPublic'},
{'1': 'IsOnce', '3': 5, '4': 1, '5': 8, '10': 'IsOnce'},
{'1': 'Alias', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'Alias'},
],
'7': {},
};
/// Descriptor for `ShortenSiteURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List shortenSiteURLRequestDescriptor = $convert.base64Decode(
'ChVTaG9ydGVuU2l0ZVVSTFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3RTaX'
/// Descriptor for `SiteShortenURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List siteShortenURLRequestDescriptor = $convert.base64Decode(
'ChVTaXRlU2hvcnRlblVSTFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3RTaX'
'RlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhkKA1VSTBgCIAEoCUIH+kIEcgIQAVIDVVJMErkB'
'CgpUaW1lVG9MaXZlGAMgASgDQpgBkkGJATKGAVNwZWNpZmllcyB0aGUgdGltZSB0byBsaXZlIC'
'hUVEwpIG9mIHRoZSBUaW55VVJMIGluIHNlY29uZHMsIGxpbWl0ZWQgdG8gZmlmdHkgeWVhcnMu'
'IEEgdmFsdWUgb2YgemVybyBvciBsZXNzIGluZGljYXRlcyBhbiBpbmZpbml0ZSBUVEwu+kIIIg'
'YYgN6gywVSClRpbWVUb0xpdmUSGgoIaXNQdWJsaWMYBCABKAhSCGlzUHVibGljEhYKBmlzT25j'
'ZRgFIAEoCFIGaXNPbmNlOiGSQR4KHNIBBkhlYWRlctIBA1VSTNIBClRpbWVUb0xpdmU=');
'YYgN6gywVSClRpbWVUb0xpdmUSGgoISXNQdWJsaWMYBCABKAhSCElzUHVibGljEhYKBklzT25j'
'ZRgFIAEoCFIGSXNPbmNlEpIBCgVBbGlhcxgGIAEoCUJ8kkFhMl9PcHRpb25hbCwgY3VzdG9taX'
'plIHRoZSBsaW5rIGJ5IGFkZGluZyBhbiBhbGlhcyB0byB0aGUgdXJsLiBJZiBvbWl0dGVkIGEg'
'dW5pcXVlIElEIGlzIGdlbmVyYXRlZPpCFXITGDIyD15bYS16QS1aMC05LV0qJFIFQWxpYXM6IZ'
'JBHgoc0gEGSGVhZGVy0gEDVVJM0gEKVGltZVRvTGl2ZQ==');
@$core.Deprecated('Use shortenSiteURLResultDescriptor instead')
const ShortenSiteURLResult$json = {
'1': 'ShortenSiteURLResult',
@$core.Deprecated('Use siteShortenURLResponseDescriptor instead')
const SiteShortenURLResponse$json = {
'1': 'SiteShortenURLResponse',
'2': [
{'1': 'TinyURL', '3': 1, '4': 1, '5': 11, '6': '.api.TinyURL', '10': 'TinyURL'},
],
};
/// Descriptor for `ShortenSiteURLResult`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List shortenSiteURLResultDescriptor = $convert.base64Decode(
'ChRTaG9ydGVuU2l0ZVVSTFJlc3VsdBImCgdUaW55VVJMGAEgASgLMgwuYXBpLlRpbnlVUkxSB1'
'RpbnlVUkw=');
/// Descriptor for `SiteShortenURLResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List siteShortenURLResponseDescriptor = $convert.base64Decode(
'ChZTaXRlU2hvcnRlblVSTFJlc3BvbnNlEiYKB1RpbnlVUkwYASABKAsyDC5hcGkuVGlueVVSTF'
'IHVGlueVVSTA==');
@$core.Deprecated('Use shortenPartnerAppURLRequestDescriptor instead')
const ShortenPartnerAppURLRequest$json = {
'1': 'ShortenPartnerAppURLRequest',
@$core.Deprecated('Use partnerAppShortenURLRequestDescriptor instead')
const PartnerAppShortenURLRequest$json = {
'1': 'PartnerAppShortenURLRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestPartnerAppHeader', '8': {}, '10': 'Header'},
{'1': 'URL', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'URL'},
{'1': 'TimeToLive', '3': 3, '4': 1, '5': 3, '8': {}, '10': 'TimeToLive'},
{'1': 'isPublic', '3': 4, '4': 1, '5': 8, '10': 'isPublic'},
{'1': 'isOnce', '3': 5, '4': 1, '5': 8, '10': 'isOnce'},
{'1': 'IsPublic', '3': 4, '4': 1, '5': 8, '10': 'IsPublic'},
{'1': 'IsOnce', '3': 5, '4': 1, '5': 8, '10': 'IsOnce'},
{'1': 'Alias', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'Alias'},
],
'7': {},
};
/// Descriptor for `ShortenPartnerAppURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List shortenPartnerAppURLRequestDescriptor = $convert.base64Decode(
'ChtTaG9ydGVuUGFydG5lckFwcFVSTFJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLlJlcX'
/// Descriptor for `PartnerAppShortenURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List partnerAppShortenURLRequestDescriptor = $convert.base64Decode(
'ChtQYXJ0bmVyQXBwU2hvcnRlblVSTFJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLlJlcX'
'Vlc3RQYXJ0bmVyQXBwSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhkKA1VSTBgCIAEoCUIH+kIE'
'cgIQAVIDVVJMErkBCgpUaW1lVG9MaXZlGAMgASgDQpgBkkGJATKGAVNwZWNpZmllcyB0aGUgdG'
'ltZSB0byBsaXZlIChUVEwpIG9mIHRoZSBUaW55VVJMIGluIHNlY29uZHMsIGxpbWl0ZWQgdG8g'
'ZmlmdHkgeWVhcnMuIEEgdmFsdWUgb2YgemVybyBvciBsZXNzIGluZGljYXRlcyBhbiBpbmZpbm'
'l0ZSBUVEwu+kIIIgYYgN6gywVSClRpbWVUb0xpdmUSGgoIaXNQdWJsaWMYBCABKAhSCGlzUHVi'
'bGljEhYKBmlzT25jZRgFIAEoCFIGaXNPbmNlOiGSQR4KHNIBBkhlYWRlctIBA1VSTNIBClRpbW'
'VUb0xpdmU=');
'l0ZSBUVEwu+kIIIgYYgN6gywVSClRpbWVUb0xpdmUSGgoISXNQdWJsaWMYBCABKAhSCElzUHVi'
'bGljEhYKBklzT25jZRgFIAEoCFIGSXNPbmNlEpIBCgVBbGlhcxgGIAEoCUJ8kkFhMl9PcHRpb2'
'5hbCwgY3VzdG9taXplIHRoZSBsaW5rIGJ5IGFkZGluZyBhbiBhbGlhcyB0byB0aGUgdXJsLiBJ'
'ZiBvbWl0dGVkIGEgdW5pcXVlIElEIGlzIGdlbmVyYXRlZPpCFXITGDIyD15bYS16QS1aMC05LV'
'0qJFIFQWxpYXM6IZJBHgoc0gEGSGVhZGVy0gEDVVJM0gEKVGltZVRvTGl2ZQ==');
@$core.Deprecated('Use shortenPartnerAppURLResultDescriptor instead')
const ShortenPartnerAppURLResult$json = {
'1': 'ShortenPartnerAppURLResult',
@$core.Deprecated('Use partnerAppShortenURLResponseDescriptor instead')
const PartnerAppShortenURLResponse$json = {
'1': 'PartnerAppShortenURLResponse',
'2': [
{'1': 'TinyURL', '3': 1, '4': 1, '5': 11, '6': '.api.TinyURL', '10': 'TinyURL'},
],
};
/// Descriptor for `ShortenPartnerAppURLResult`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List shortenPartnerAppURLResultDescriptor = $convert.base64Decode(
'ChpTaG9ydGVuUGFydG5lckFwcFVSTFJlc3VsdBImCgdUaW55VVJMGAEgASgLMgwuYXBpLlRpbn'
'lVUkxSB1RpbnlVUkw=');
/// Descriptor for `PartnerAppShortenURLResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List partnerAppShortenURLResponseDescriptor = $convert.base64Decode(
'ChxQYXJ0bmVyQXBwU2hvcnRlblVSTFJlc3BvbnNlEiYKB1RpbnlVUkwYASABKAsyDC5hcGkuVG'
'lueVVSTFIHVGlueVVSTA==');
@$core.Deprecated('Use uploadSiteFileRequestDescriptor instead')
const UploadSiteFileRequest$json = {
'1': 'UploadSiteFileRequest',
@$core.Deprecated('Use siteUploadFileRequestDescriptor instead')
const SiteUploadFileRequest$json = {
'1': 'SiteUploadFileRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
{'1': 'FileData', '3': 2, '4': 1, '5': 11, '6': '.api.FileDataRequest', '8': {}, '10': 'FileData'},
{'1': 'TimeToLive', '3': 3, '4': 1, '5': 3, '8': {}, '10': 'TimeToLive'},
{'1': 'isPublic', '3': 4, '4': 1, '5': 8, '10': 'isPublic'},
{'1': 'isOnce', '3': 5, '4': 1, '5': 8, '10': 'isOnce'},
{'1': 'IsPublic', '3': 4, '4': 1, '5': 8, '10': 'IsPublic'},
{'1': 'IsOnce', '3': 5, '4': 1, '5': 8, '10': 'IsOnce'},
{'1': 'Alias', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'Alias'},
],
'7': {},
};
/// Descriptor for `UploadSiteFileRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List uploadSiteFileRequestDescriptor = $convert.base64Decode(
'ChVVcGxvYWRTaXRlRmlsZVJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3RTaX'
/// Descriptor for `SiteUploadFileRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List siteUploadFileRequestDescriptor = $convert.base64Decode(
'ChVTaXRlVXBsb2FkRmlsZVJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3RTaX'
'RlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjoKCEZpbGVEYXRhGAIgASgLMhQuYXBpLkZpbGVE'
'YXRhUmVxdWVzdEII+kIFigECEAFSCEZpbGVEYXRhErkBCgpUaW1lVG9MaXZlGAMgASgDQpgBkk'
'GJATKGAVNwZWNpZmllcyB0aGUgdGltZSB0byBsaXZlIChUVEwpIG9mIHRoZSBUaW55VVJMIGlu'
'IHNlY29uZHMsIGxpbWl0ZWQgdG8gZmlmdHkgeWVhcnMuIEEgdmFsdWUgb2YgemVybyBvciBsZX'
'NzIGluZGljYXRlcyBhbiBpbmZpbml0ZSBUVEwu+kIIIgYYgN6gywVSClRpbWVUb0xpdmUSGgoI'
'aXNQdWJsaWMYBCABKAhSCGlzUHVibGljEhYKBmlzT25jZRgFIAEoCFIGaXNPbmNlOiaSQSMKId'
'IBBkhlYWRlctIBCEZpbGVEYXRh0gEKVGltZVRvTGl2ZQ==');
'SXNQdWJsaWMYBCABKAhSCElzUHVibGljEhYKBklzT25jZRgFIAEoCFIGSXNPbmNlEpIBCgVBbG'
'lhcxgGIAEoCUJ8kkFhMl9PcHRpb25hbCwgY3VzdG9taXplIHRoZSBsaW5rIGJ5IGFkZGluZyBh'
'biBhbGlhcyB0byB0aGUgdXJsLiBJZiBvbWl0dGVkIGEgdW5pcXVlIElEIGlzIGdlbmVyYXRlZP'
'pCFXITGDIyD15bYS16QS1aMC05LV0qJFIFQWxpYXM6JpJBIwoh0gEGSGVhZGVy0gEIRmlsZURh'
'dGHSAQpUaW1lVG9MaXZl');
@$core.Deprecated('Use uploadSiteFileResponseDescriptor instead')
const UploadSiteFileResponse$json = {
'1': 'UploadSiteFileResponse',
@$core.Deprecated('Use siteUploadFileResponseDescriptor instead')
const SiteUploadFileResponse$json = {
'1': 'SiteUploadFileResponse',
'2': [
{'1': 'TinyURL', '3': 1, '4': 1, '5': 11, '6': '.api.TinyURL', '10': 'TinyURL'},
],
};
/// Descriptor for `UploadSiteFileResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List uploadSiteFileResponseDescriptor = $convert.base64Decode(
'ChZVcGxvYWRTaXRlRmlsZVJlc3BvbnNlEiYKB1RpbnlVUkwYASABKAsyDC5hcGkuVGlueVVSTF'
/// Descriptor for `SiteUploadFileResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List siteUploadFileResponseDescriptor = $convert.base64Decode(
'ChZTaXRlVXBsb2FkRmlsZVJlc3BvbnNlEiYKB1RpbnlVUkwYASABKAsyDC5hcGkuVGlueVVSTF'
'IHVGlueVVSTA==');
@$core.Deprecated('Use uploadPartnerAppFileRequestDescriptor instead')
const UploadPartnerAppFileRequest$json = {
'1': 'UploadPartnerAppFileRequest',
@$core.Deprecated('Use partnerAppUploadFileRequestDescriptor instead')
const PartnerAppUploadFileRequest$json = {
'1': 'PartnerAppUploadFileRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestPartnerAppHeader', '8': {}, '10': 'Header'},
{'1': 'FileData', '3': 2, '4': 1, '5': 11, '6': '.api.FileDataRequest', '8': {}, '10': 'FileData'},
{'1': 'TimeToLive', '3': 3, '4': 1, '5': 3, '8': {}, '10': 'TimeToLive'},
{'1': 'isPublic', '3': 4, '4': 1, '5': 8, '10': 'isPublic'},
{'1': 'isOnce', '3': 5, '4': 1, '5': 8, '10': 'isOnce'},
{'1': 'IsPublic', '3': 4, '4': 1, '5': 8, '10': 'IsPublic'},
{'1': 'IsOnce', '3': 5, '4': 1, '5': 8, '10': 'IsOnce'},
{'1': 'Alias', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'Alias'},
],
'7': {},
};
/// Descriptor for `UploadPartnerAppFileRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List uploadPartnerAppFileRequestDescriptor = $convert.base64Decode(
'ChtVcGxvYWRQYXJ0bmVyQXBwRmlsZVJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLlJlcX'
/// Descriptor for `PartnerAppUploadFileRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List partnerAppUploadFileRequestDescriptor = $convert.base64Decode(
'ChtQYXJ0bmVyQXBwVXBsb2FkRmlsZVJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLlJlcX'
'Vlc3RQYXJ0bmVyQXBwSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjoKCEZpbGVEYXRhGAIgASgL'
'MhQuYXBpLkZpbGVEYXRhUmVxdWVzdEII+kIFigECEAFSCEZpbGVEYXRhErkBCgpUaW1lVG9MaX'
'ZlGAMgASgDQpgBkkGJATKGAVNwZWNpZmllcyB0aGUgdGltZSB0byBsaXZlIChUVEwpIG9mIHRo'
'ZSBUaW55VVJMIGluIHNlY29uZHMsIGxpbWl0ZWQgdG8gZmlmdHkgeWVhcnMuIEEgdmFsdWUgb2'
'YgemVybyBvciBsZXNzIGluZGljYXRlcyBhbiBpbmZpbml0ZSBUVEwu+kIIIgYYgN6gywVSClRp'
'bWVUb0xpdmUSGgoIaXNQdWJsaWMYBCABKAhSCGlzUHVibGljEhYKBmlzT25jZRgFIAEoCFIGaX'
'NPbmNlOiaSQSMKIdIBBkhlYWRlctIBCEZpbGVEYXRh0gEKVGltZVRvTGl2ZQ==');
'bWVUb0xpdmUSGgoISXNQdWJsaWMYBCABKAhSCElzUHVibGljEhYKBklzT25jZRgFIAEoCFIGSX'
'NPbmNlEpIBCgVBbGlhcxgGIAEoCUJ8kkFhMl9PcHRpb25hbCwgY3VzdG9taXplIHRoZSBsaW5r'
'IGJ5IGFkZGluZyBhbiBhbGlhcyB0byB0aGUgdXJsLiBJZiBvbWl0dGVkIGEgdW5pcXVlIElEIG'
'lzIGdlbmVyYXRlZPpCFXITGDIyD15bYS16QS1aMC05LV0qJFIFQWxpYXM6JpJBIwoh0gEGSGVh'
'ZGVy0gEIRmlsZURhdGHSAQpUaW1lVG9MaXZl');
@$core.Deprecated('Use uploadPartnerAppFileResponseDescriptor instead')
const UploadPartnerAppFileResponse$json = {
'1': 'UploadPartnerAppFileResponse',
@$core.Deprecated('Use partnerAppUploadFileResponseDescriptor instead')
const PartnerAppUploadFileResponse$json = {
'1': 'PartnerAppUploadFileResponse',
'2': [
{'1': 'TinyURL', '3': 1, '4': 1, '5': 11, '6': '.api.TinyURL', '10': 'TinyURL'},
],
};
/// Descriptor for `UploadPartnerAppFileResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List uploadPartnerAppFileResponseDescriptor = $convert.base64Decode(
'ChxVcGxvYWRQYXJ0bmVyQXBwRmlsZVJlc3BvbnNlEiYKB1RpbnlVUkwYASABKAsyDC5hcGkuVG'
/// Descriptor for `PartnerAppUploadFileResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List partnerAppUploadFileResponseDescriptor = $convert.base64Decode(
'ChxQYXJ0bmVyQXBwVXBsb2FkRmlsZVJlc3BvbnNlEiYKB1RpbnlVUkwYASABKAsyDC5hcGkuVG'
'lueVVSTFIHVGlueVVSTA==');
@$core.Deprecated('Use listSiteTinyURLsRequestDescriptor instead')
const ListSiteTinyURLsRequest$json = {
'1': 'ListSiteTinyURLsRequest',
@$core.Deprecated('Use siteUploadPayloadRequestDescriptor instead')
const SiteUploadPayloadRequest$json = {
'1': 'SiteUploadPayloadRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
{'1': 'Payload', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Payload'},
{'1': 'TimeToLive', '3': 3, '4': 1, '5': 3, '8': {}, '10': 'TimeToLive'},
{'1': 'IsPublic', '3': 4, '4': 1, '5': 8, '10': 'IsPublic'},
{'1': 'IsOnce', '3': 5, '4': 1, '5': 8, '10': 'IsOnce'},
{'1': 'Alias', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'Alias'},
],
'7': {},
};
/// Descriptor for `SiteUploadPayloadRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List siteUploadPayloadRequestDescriptor = $convert.base64Decode(
'ChhTaXRlVXBsb2FkUGF5bG9hZFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3'
'RTaXRlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEiEKB1BheWxvYWQYAiABKAlCB/pCBHICEAFS'
'B1BheWxvYWQSuQEKClRpbWVUb0xpdmUYAyABKANCmAGSQYkBMoYBU3BlY2lmaWVzIHRoZSB0aW'
'1lIHRvIGxpdmUgKFRUTCkgb2YgdGhlIFRpbnlVUkwgaW4gc2Vjb25kcywgbGltaXRlZCB0byBm'
'aWZ0eSB5ZWFycy4gQSB2YWx1ZSBvZiB6ZXJvIG9yIGxlc3MgaW5kaWNhdGVzIGFuIGluZmluaX'
'RlIFRUTC76QggiBhiA3qDLBVIKVGltZVRvTGl2ZRIaCghJc1B1YmxpYxgEIAEoCFIISXNQdWJs'
'aWMSFgoGSXNPbmNlGAUgASgIUgZJc09uY2USkgEKBUFsaWFzGAYgASgJQnySQWEyX09wdGlvbm'
'FsLCBjdXN0b21pemUgdGhlIGxpbmsgYnkgYWRkaW5nIGFuIGFsaWFzIHRvIHRoZSB1cmwuIElm'
'IG9taXR0ZWQgYSB1bmlxdWUgSUQgaXMgZ2VuZXJhdGVk+kIVchMYMjIPXlthLXpBLVowLTktXS'
'okUgVBbGlhczolkkEiCiDSAQZIZWFkZXLSAQdQYXlsb2Fk0gEKVGltZVRvTGl2ZQ==');
@$core.Deprecated('Use siteUploadPayloadResponseDescriptor instead')
const SiteUploadPayloadResponse$json = {
'1': 'SiteUploadPayloadResponse',
'2': [
{'1': 'TinyURL', '3': 1, '4': 1, '5': 11, '6': '.api.TinyURL', '10': 'TinyURL'},
],
};
/// Descriptor for `SiteUploadPayloadResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List siteUploadPayloadResponseDescriptor = $convert.base64Decode(
'ChlTaXRlVXBsb2FkUGF5bG9hZFJlc3BvbnNlEiYKB1RpbnlVUkwYASABKAsyDC5hcGkuVGlueV'
'VSTFIHVGlueVVSTA==');
@$core.Deprecated('Use partnerAppUploadPayloadRequestDescriptor instead')
const PartnerAppUploadPayloadRequest$json = {
'1': 'PartnerAppUploadPayloadRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestPartnerAppHeader', '8': {}, '10': 'Header'},
{'1': 'Payload', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Payload'},
{'1': 'TimeToLive', '3': 3, '4': 1, '5': 3, '8': {}, '10': 'TimeToLive'},
{'1': 'IsPublic', '3': 4, '4': 1, '5': 8, '10': 'IsPublic'},
{'1': 'IsOnce', '3': 5, '4': 1, '5': 8, '10': 'IsOnce'},
{'1': 'Alias', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'Alias'},
],
'7': {},
};
/// Descriptor for `PartnerAppUploadPayloadRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List partnerAppUploadPayloadRequestDescriptor = $convert.base64Decode(
'Ch5QYXJ0bmVyQXBwVXBsb2FkUGF5bG9hZFJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLl'
'JlcXVlc3RQYXJ0bmVyQXBwSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEiEKB1BheWxvYWQYAiAB'
'KAlCB/pCBHICEAFSB1BheWxvYWQSuQEKClRpbWVUb0xpdmUYAyABKANCmAGSQYkBMoYBU3BlY2'
'lmaWVzIHRoZSB0aW1lIHRvIGxpdmUgKFRUTCkgb2YgdGhlIFRpbnlVUkwgaW4gc2Vjb25kcywg'
'bGltaXRlZCB0byBmaWZ0eSB5ZWFycy4gQSB2YWx1ZSBvZiB6ZXJvIG9yIGxlc3MgaW5kaWNhdG'
'VzIGFuIGluZmluaXRlIFRUTC76QggiBhiA3qDLBVIKVGltZVRvTGl2ZRIaCghJc1B1YmxpYxgE'
'IAEoCFIISXNQdWJsaWMSFgoGSXNPbmNlGAUgASgIUgZJc09uY2USkgEKBUFsaWFzGAYgASgJQn'
'ySQWEyX09wdGlvbmFsLCBjdXN0b21pemUgdGhlIGxpbmsgYnkgYWRkaW5nIGFuIGFsaWFzIHRv'
'IHRoZSB1cmwuIElmIG9taXR0ZWQgYSB1bmlxdWUgSUQgaXMgZ2VuZXJhdGVk+kIVchMYMjIPXl'
'thLXpBLVowLTktXSokUgVBbGlhczolkkEiCiDSAQZIZWFkZXLSAQdQYXlsb2Fk0gEKVGltZVRv'
'TGl2ZQ==');
@$core.Deprecated('Use partnerAppUploadPayloadResponseDescriptor instead')
const PartnerAppUploadPayloadResponse$json = {
'1': 'PartnerAppUploadPayloadResponse',
'2': [
{'1': 'TinyURL', '3': 1, '4': 1, '5': 11, '6': '.api.TinyURL', '10': 'TinyURL'},
],
};
/// Descriptor for `PartnerAppUploadPayloadResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List partnerAppUploadPayloadResponseDescriptor = $convert.base64Decode(
'Ch9QYXJ0bmVyQXBwVXBsb2FkUGF5bG9hZFJlc3BvbnNlEiYKB1RpbnlVUkwYASABKAsyDC5hcG'
'kuVGlueVVSTFIHVGlueVVSTA==');
@$core.Deprecated('Use siteListTinyURLsRequestDescriptor instead')
const SiteListTinyURLsRequest$json = {
'1': 'SiteListTinyURLsRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
],
'7': {},
};
/// Descriptor for `ListSiteTinyURLsRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listSiteTinyURLsRequestDescriptor = $convert.base64Decode(
'ChdMaXN0U2l0ZVRpbnlVUkxzUmVxdWVzdBI4CgZIZWFkZXIYASABKAsyFi5hcGkuUmVxdWVzdF'
/// Descriptor for `SiteListTinyURLsRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List siteListTinyURLsRequestDescriptor = $convert.base64Decode(
'ChdTaXRlTGlzdFRpbnlVUkxzUmVxdWVzdBI4CgZIZWFkZXIYASABKAsyFi5hcGkuUmVxdWVzdF'
'NpdGVIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXI6DpJBCwoJ0gEGSGVhZGVy');
@$core.Deprecated('Use listSiteTinyURLsResponseDescriptor instead')
const ListSiteTinyURLsResponse$json = {
'1': 'ListSiteTinyURLsResponse',
@$core.Deprecated('Use siteListTinyURLsResponseDescriptor instead')
const SiteListTinyURLsResponse$json = {
'1': 'SiteListTinyURLsResponse',
'2': [
{'1': 'TinyURLs', '3': 1, '4': 3, '5': 11, '6': '.api.TinyURL', '10': 'TinyURLs'},
],
};
/// Descriptor for `ListSiteTinyURLsResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listSiteTinyURLsResponseDescriptor = $convert.base64Decode(
'ChhMaXN0U2l0ZVRpbnlVUkxzUmVzcG9uc2USKAoIVGlueVVSTHMYASADKAsyDC5hcGkuVGlueV'
/// Descriptor for `SiteListTinyURLsResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List siteListTinyURLsResponseDescriptor = $convert.base64Decode(
'ChhTaXRlTGlzdFRpbnlVUkxzUmVzcG9uc2USKAoIVGlueVVSTHMYASADKAsyDC5hcGkuVGlueV'
'VSTFIIVGlueVVSTHM=');
@$core.Deprecated('Use listPartnerAppTinyURLsRequestDescriptor instead')
const ListPartnerAppTinyURLsRequest$json = {
'1': 'ListPartnerAppTinyURLsRequest',
@$core.Deprecated('Use partnerAppListTinyURLsRequestDescriptor instead')
const PartnerAppListTinyURLsRequest$json = {
'1': 'PartnerAppListTinyURLsRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestPartnerAppHeader', '8': {}, '10': 'Header'},
],
'7': {},
};
/// Descriptor for `ListPartnerAppTinyURLsRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listPartnerAppTinyURLsRequestDescriptor = $convert.base64Decode(
'Ch1MaXN0UGFydG5lckFwcFRpbnlVUkxzUmVxdWVzdBI+CgZIZWFkZXIYASABKAsyHC5hcGkuUm'
/// Descriptor for `PartnerAppListTinyURLsRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List partnerAppListTinyURLsRequestDescriptor = $convert.base64Decode(
'Ch1QYXJ0bmVyQXBwTGlzdFRpbnlVUkxzUmVxdWVzdBI+CgZIZWFkZXIYASABKAsyHC5hcGkuUm'
'VxdWVzdFBhcnRuZXJBcHBIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXI6DpJBCwoJ0gEGSGVhZGVy');
@$core.Deprecated('Use listPartnerAppTinyURLsResponseDescriptor instead')
const ListPartnerAppTinyURLsResponse$json = {
'1': 'ListPartnerAppTinyURLsResponse',
@$core.Deprecated('Use partnerAppListTinyURLsResponseDescriptor instead')
const PartnerAppListTinyURLsResponse$json = {
'1': 'PartnerAppListTinyURLsResponse',
'2': [
{'1': 'TinyURLs', '3': 1, '4': 3, '5': 11, '6': '.api.TinyURL', '10': 'TinyURLs'},
],
};
/// Descriptor for `ListPartnerAppTinyURLsResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listPartnerAppTinyURLsResponseDescriptor = $convert.base64Decode(
'Ch5MaXN0UGFydG5lckFwcFRpbnlVUkxzUmVzcG9uc2USKAoIVGlueVVSTHMYASADKAsyDC5hcG'
/// Descriptor for `PartnerAppListTinyURLsResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List partnerAppListTinyURLsResponseDescriptor = $convert.base64Decode(
'Ch5QYXJ0bmVyQXBwTGlzdFRpbnlVUkxzUmVzcG9uc2USKAoIVGlueVVSTHMYASADKAsyDC5hcG'
'kuVGlueVVSTFIIVGlueVVSTHM=');
@$core.Deprecated('Use deleteSiteTinyURLRequestDescriptor instead')
const DeleteSiteTinyURLRequest$json = {
'1': 'DeleteSiteTinyURLRequest',
@$core.Deprecated('Use siteDeleteTinyURLRequestDescriptor instead')
const SiteDeleteTinyURLRequest$json = {
'1': 'SiteDeleteTinyURLRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ID'},
@@ -302,24 +389,24 @@ const DeleteSiteTinyURLRequest$json = {
'7': {},
};
/// Descriptor for `DeleteSiteTinyURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteSiteTinyURLRequestDescriptor = $convert.base64Decode(
'ChhEZWxldGVTaXRlVGlueVVSTFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3'
/// Descriptor for `SiteDeleteTinyURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List siteDeleteTinyURLRequestDescriptor = $convert.base64Decode(
'ChhTaXRlRGVsZXRlVGlueVVSTFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3'
'RTaXRlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhcKAklEGAIgASgJQgf6QgRyAhABUgJJRDoT'
'kkEQCg7SAQZIZWFkZXLSAQJJRA==');
@$core.Deprecated('Use deleteSiteTinyURLResponseDescriptor instead')
const DeleteSiteTinyURLResponse$json = {
'1': 'DeleteSiteTinyURLResponse',
@$core.Deprecated('Use siteDeleteTinyURLResponseDescriptor instead')
const SiteDeleteTinyURLResponse$json = {
'1': 'SiteDeleteTinyURLResponse',
};
/// Descriptor for `DeleteSiteTinyURLResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteSiteTinyURLResponseDescriptor = $convert.base64Decode(
'ChlEZWxldGVTaXRlVGlueVVSTFJlc3BvbnNl');
/// Descriptor for `SiteDeleteTinyURLResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List siteDeleteTinyURLResponseDescriptor = $convert.base64Decode(
'ChlTaXRlRGVsZXRlVGlueVVSTFJlc3BvbnNl');
@$core.Deprecated('Use deletePartnerAppTinyURLRequestDescriptor instead')
const DeletePartnerAppTinyURLRequest$json = {
'1': 'DeletePartnerAppTinyURLRequest',
@$core.Deprecated('Use partnerAppDeleteTinyURLRequestDescriptor instead')
const PartnerAppDeleteTinyURLRequest$json = {
'1': 'PartnerAppDeleteTinyURLRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestPartnerAppHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ID'},
@@ -327,24 +414,24 @@ const DeletePartnerAppTinyURLRequest$json = {
'7': {},
};
/// Descriptor for `DeletePartnerAppTinyURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deletePartnerAppTinyURLRequestDescriptor = $convert.base64Decode(
'Ch5EZWxldGVQYXJ0bmVyQXBwVGlueVVSTFJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLl'
/// Descriptor for `PartnerAppDeleteTinyURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List partnerAppDeleteTinyURLRequestDescriptor = $convert.base64Decode(
'Ch5QYXJ0bmVyQXBwRGVsZXRlVGlueVVSTFJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLl'
'JlcXVlc3RQYXJ0bmVyQXBwSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhcKAklEGAIgASgJQgf6'
'QgRyAhABUgJJRDoTkkEQCg7SAQZIZWFkZXLSAQJJRA==');
@$core.Deprecated('Use deletePartnerAppTinyURLResponseDescriptor instead')
const DeletePartnerAppTinyURLResponse$json = {
'1': 'DeletePartnerAppTinyURLResponse',
@$core.Deprecated('Use partnerAppDeleteTinyURLResponseDescriptor instead')
const PartnerAppDeleteTinyURLResponse$json = {
'1': 'PartnerAppDeleteTinyURLResponse',
};
/// Descriptor for `DeletePartnerAppTinyURLResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deletePartnerAppTinyURLResponseDescriptor = $convert.base64Decode(
'Ch9EZWxldGVQYXJ0bmVyQXBwVGlueVVSTFJlc3BvbnNl');
/// Descriptor for `PartnerAppDeleteTinyURLResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List partnerAppDeleteTinyURLResponseDescriptor = $convert.base64Decode(
'Ch9QYXJ0bmVyQXBwRGVsZXRlVGlueVVSTFJlc3BvbnNl');
@$core.Deprecated('Use getSiteTinyURLRequestDescriptor instead')
const GetSiteTinyURLRequest$json = {
'1': 'GetSiteTinyURLRequest',
@$core.Deprecated('Use siteGetTinyURLRequestDescriptor instead')
const SiteGetTinyURLRequest$json = {
'1': 'SiteGetTinyURLRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ID'},
@@ -352,31 +439,32 @@ const GetSiteTinyURLRequest$json = {
'7': {},
};
/// Descriptor for `GetSiteTinyURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getSiteTinyURLRequestDescriptor = $convert.base64Decode(
'ChVHZXRTaXRlVGlueVVSTFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3RTaX'
/// Descriptor for `SiteGetTinyURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List siteGetTinyURLRequestDescriptor = $convert.base64Decode(
'ChVTaXRlR2V0VGlueVVSTFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3RTaX'
'RlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhcKAklEGAIgASgJQgf6QgRyAhABUgJJRDoTkkEQ'
'Cg7SAQZIZWFkZXLSAQJJRA==');
@$core.Deprecated('Use getSiteTinyURLResultDescriptor instead')
const GetSiteTinyURLResult$json = {
'1': 'GetSiteTinyURLResult',
@$core.Deprecated('Use siteGetTinyURLResponseDescriptor instead')
const SiteGetTinyURLResponse$json = {
'1': 'SiteGetTinyURLResponse',
'2': [
{'1': 'Kind', '3': 1, '4': 1, '5': 14, '6': '.api.TinyURLKind', '10': 'Kind'},
{'1': 'File', '3': 2, '4': 1, '5': 11, '6': '.api.FileDataResponse', '10': 'File'},
{'1': 'LongURL', '3': 3, '4': 1, '5': 9, '10': 'LongURL'},
{'1': 'Payload', '3': 4, '4': 1, '5': 9, '10': 'Payload'},
],
};
/// Descriptor for `GetSiteTinyURLResult`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getSiteTinyURLResultDescriptor = $convert.base64Decode(
'ChRHZXRTaXRlVGlueVVSTFJlc3VsdBIkCgRLaW5kGAEgASgOMhAuYXBpLlRpbnlVUkxLaW5kUg'
'RLaW5kEikKBEZpbGUYAiABKAsyFS5hcGkuRmlsZURhdGFSZXNwb25zZVIERmlsZRIYCgdMb25n'
'VVJMGAMgASgJUgdMb25nVVJM');
/// Descriptor for `SiteGetTinyURLResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List siteGetTinyURLResponseDescriptor = $convert.base64Decode(
'ChZTaXRlR2V0VGlueVVSTFJlc3BvbnNlEiQKBEtpbmQYASABKA4yEC5hcGkuVGlueVVSTEtpbm'
'RSBEtpbmQSKQoERmlsZRgCIAEoCzIVLmFwaS5GaWxlRGF0YVJlc3BvbnNlUgRGaWxlEhgKB0xv'
'bmdVUkwYAyABKAlSB0xvbmdVUkwSGAoHUGF5bG9hZBgEIAEoCVIHUGF5bG9hZA==');
@$core.Deprecated('Use getPartnerAppTinyURLRequestDescriptor instead')
const GetPartnerAppTinyURLRequest$json = {
'1': 'GetPartnerAppTinyURLRequest',
@$core.Deprecated('Use partnerAppGetTinyURLRequestDescriptor instead')
const PartnerAppGetTinyURLRequest$json = {
'1': 'PartnerAppGetTinyURLRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestPartnerAppHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ID'},
@@ -384,27 +472,28 @@ const GetPartnerAppTinyURLRequest$json = {
'7': {},
};
/// Descriptor for `GetPartnerAppTinyURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getPartnerAppTinyURLRequestDescriptor = $convert.base64Decode(
'ChtHZXRQYXJ0bmVyQXBwVGlueVVSTFJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLlJlcX'
/// Descriptor for `PartnerAppGetTinyURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List partnerAppGetTinyURLRequestDescriptor = $convert.base64Decode(
'ChtQYXJ0bmVyQXBwR2V0VGlueVVSTFJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLlJlcX'
'Vlc3RQYXJ0bmVyQXBwSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhcKAklEGAIgASgJQgf6QgRy'
'AhABUgJJRDoTkkEQCg7SAQZIZWFkZXLSAQJJRA==');
@$core.Deprecated('Use getPartnerAppTinyURLResultDescriptor instead')
const GetPartnerAppTinyURLResult$json = {
'1': 'GetPartnerAppTinyURLResult',
@$core.Deprecated('Use partnerAppGetTinyURLResponseDescriptor instead')
const PartnerAppGetTinyURLResponse$json = {
'1': 'PartnerAppGetTinyURLResponse',
'2': [
{'1': 'Kind', '3': 1, '4': 1, '5': 14, '6': '.api.TinyURLKind', '10': 'Kind'},
{'1': 'File', '3': 2, '4': 1, '5': 11, '6': '.api.FileDataResponse', '10': 'File'},
{'1': 'LongURL', '3': 3, '4': 1, '5': 9, '10': 'LongURL'},
{'1': 'Payload', '3': 4, '4': 1, '5': 9, '10': 'Payload'},
],
};
/// Descriptor for `GetPartnerAppTinyURLResult`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getPartnerAppTinyURLResultDescriptor = $convert.base64Decode(
'ChpHZXRQYXJ0bmVyQXBwVGlueVVSTFJlc3VsdBIkCgRLaW5kGAEgASgOMhAuYXBpLlRpbnlVUk'
'xLaW5kUgRLaW5kEikKBEZpbGUYAiABKAsyFS5hcGkuRmlsZURhdGFSZXNwb25zZVIERmlsZRIY'
'CgdMb25nVVJMGAMgASgJUgdMb25nVVJM');
/// Descriptor for `PartnerAppGetTinyURLResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List partnerAppGetTinyURLResponseDescriptor = $convert.base64Decode(
'ChxQYXJ0bmVyQXBwR2V0VGlueVVSTFJlc3BvbnNlEiQKBEtpbmQYASABKA4yEC5hcGkuVGlueV'
'VSTEtpbmRSBEtpbmQSKQoERmlsZRgCIAEoCzIVLmFwaS5GaWxlRGF0YVJlc3BvbnNlUgRGaWxl'
'EhgKB0xvbmdVUkwYAyABKAlSB0xvbmdVUkwSGAoHUGF5bG9hZBgEIAEoCVIHUGF5bG9hZA==');
@$core.Deprecated('Use deleteAllTinyURLsRequestDescriptor instead')
const DeleteAllTinyURLsRequest$json = {
@@ -423,12 +512,12 @@ final $typed_data.Uint8List deleteAllTinyURLsRequestDescriptor = $convert.base64
'ASgJQgf6QgRyAhABUg1SZXNvdXJjZVJlZklEOiSSQSEKH9IBDFJlc291cmNlVHlwZdIBDVJlc2'
'91cmNlUmVmSUQ=');
@$core.Deprecated('Use deleteAllTinyURLsResultDescriptor instead')
const DeleteAllTinyURLsResult$json = {
'1': 'DeleteAllTinyURLsResult',
@$core.Deprecated('Use deleteAllTinyURLsResponseDescriptor instead')
const DeleteAllTinyURLsResponse$json = {
'1': 'DeleteAllTinyURLsResponse',
};
/// Descriptor for `DeleteAllTinyURLsResult`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAllTinyURLsResultDescriptor = $convert.base64Decode(
'ChdEZWxldGVBbGxUaW55VVJMc1Jlc3VsdA==');
/// Descriptor for `DeleteAllTinyURLsResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAllTinyURLsResponseDescriptor = $convert.base64Decode(
'ChlEZWxldGVBbGxUaW55VVJMc1Jlc3BvbnNl');

View File

@@ -1,6 +1,6 @@
name: dart_core_sdk
description: dart libs from core model proto files
version: 1.11.0-SNAPSHOT-250701085647
version: 1.11.0-SNAPSHOT-250702094948
homepage: ''
publish_to: ''
repository: ''