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 # 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_UNKNOWN = TinyURLKind._(0, _omitEnumNames ? '' : 'TINYURL_KIND_UNKNOWN');
static const TinyURLKind TINYURL_KIND_FILE = TinyURLKind._(1, _omitEnumNames ? '' : 'TINYURL_KIND_FILE'); 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_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> [ static const $core.List<TinyURLKind> values = <TinyURLKind> [
TINYURL_KIND_UNKNOWN, TINYURL_KIND_UNKNOWN,
TINYURL_KIND_FILE, TINYURL_KIND_FILE,
TINYURL_KIND_URL, 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]; static TinyURLKind? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
const TinyURLKind._(super.value, super.name); const TinyURLKind._(super.value, super.name);

View File

@@ -32,96 +32,112 @@ class TinyURLServiceClient extends $grpc.Client {
TinyURLServiceClient(super.channel, {super.options, super.interceptors}); TinyURLServiceClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.ShortenSiteURLResult> shortenSiteURL($0.ShortenSiteURLRequest request, {$grpc.CallOptions? options,}) { $grpc.ResponseFuture<$0.SiteShortenURLResponse> siteShortenURL($0.SiteShortenURLRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$shortenSiteURL, request, options: options); return $createUnaryCall(_$siteShortenURL, request, options: options);
} }
$grpc.ResponseFuture<$0.ShortenPartnerAppURLResult> shortenPartnerAppURL($0.ShortenPartnerAppURLRequest request, {$grpc.CallOptions? options,}) { $grpc.ResponseFuture<$0.PartnerAppShortenURLResponse> partnerAppShortenURL($0.PartnerAppShortenURLRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$shortenPartnerAppURL, request, options: options); return $createUnaryCall(_$partnerAppShortenURL, request, options: options);
} }
$grpc.ResponseFuture<$0.UploadSiteFileResponse> uploadSiteFile($0.UploadSiteFileRequest request, {$grpc.CallOptions? options,}) { $grpc.ResponseFuture<$0.SiteUploadFileResponse> siteUploadFile($0.SiteUploadFileRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$uploadSiteFile, request, options: options); return $createUnaryCall(_$siteUploadFile, request, options: options);
} }
$grpc.ResponseFuture<$0.UploadPartnerAppFileResponse> uploadPartnerAppFile($0.UploadPartnerAppFileRequest request, {$grpc.CallOptions? options,}) { $grpc.ResponseFuture<$0.PartnerAppUploadFileResponse> partnerAppUploadFile($0.PartnerAppUploadFileRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$uploadPartnerAppFile, request, options: options); return $createUnaryCall(_$partnerAppUploadFile, request, options: options);
} }
$grpc.ResponseFuture<$0.ListSiteTinyURLsResponse> listSiteTinyURLs($0.ListSiteTinyURLsRequest request, {$grpc.CallOptions? options,}) { $grpc.ResponseFuture<$0.SiteUploadPayloadResponse> siteUploadPayload($0.SiteUploadPayloadRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$listSiteTinyURLs, request, options: options); return $createUnaryCall(_$siteUploadPayload, request, options: options);
} }
$grpc.ResponseFuture<$0.ListPartnerAppTinyURLsResponse> listPartnerAppTinyURLs($0.ListPartnerAppTinyURLsRequest request, {$grpc.CallOptions? options,}) { $grpc.ResponseFuture<$0.PartnerAppUploadPayloadResponse> partnerAppUploadPayload($0.PartnerAppUploadPayloadRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$listPartnerAppTinyURLs, request, options: options); return $createUnaryCall(_$partnerAppUploadPayload, request, options: options);
} }
$grpc.ResponseFuture<$0.DeleteSiteTinyURLResponse> deleteSiteTinyURL($0.DeleteSiteTinyURLRequest request, {$grpc.CallOptions? options,}) { $grpc.ResponseFuture<$0.SiteListTinyURLsResponse> siteListTinyURLs($0.SiteListTinyURLsRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deleteSiteTinyURL, request, options: options); return $createUnaryCall(_$siteListTinyURLs, request, options: options);
} }
$grpc.ResponseFuture<$0.DeletePartnerAppTinyURLResponse> deletePartnerAppTinyURL($0.DeletePartnerAppTinyURLRequest request, {$grpc.CallOptions? options,}) { $grpc.ResponseFuture<$0.PartnerAppListTinyURLsResponse> partnerAppListTinyURLs($0.PartnerAppListTinyURLsRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deletePartnerAppTinyURL, request, options: options); return $createUnaryCall(_$partnerAppListTinyURLs, request, options: options);
} }
$grpc.ResponseFuture<$0.GetSiteTinyURLResult> getSiteTinyURL($0.GetSiteTinyURLRequest request, {$grpc.CallOptions? options,}) { $grpc.ResponseFuture<$0.SiteDeleteTinyURLResponse> siteDeleteTinyURL($0.SiteDeleteTinyURLRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getSiteTinyURL, request, options: options); return $createUnaryCall(_$siteDeleteTinyURL, request, options: options);
} }
$grpc.ResponseFuture<$0.GetPartnerAppTinyURLResult> getPartnerAppTinyURL($0.GetPartnerAppTinyURLRequest request, {$grpc.CallOptions? options,}) { $grpc.ResponseFuture<$0.PartnerAppDeleteTinyURLResponse> partnerAppDeleteTinyURL($0.PartnerAppDeleteTinyURLRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getPartnerAppTinyURL, request, options: 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); return $createUnaryCall(_$deleteAll, request, options: options);
} }
// method descriptors // method descriptors
static final _$shortenSiteURL = $grpc.ClientMethod<$0.ShortenSiteURLRequest, $0.ShortenSiteURLResult>( static final _$siteShortenURL = $grpc.ClientMethod<$0.SiteShortenURLRequest, $0.SiteShortenURLResponse>(
'/api.TinyURLService/ShortenSiteURL', '/api.TinyURLService/SiteShortenURL',
($0.ShortenSiteURLRequest value) => value.writeToBuffer(), ($0.SiteShortenURLRequest value) => value.writeToBuffer(),
$0.ShortenSiteURLResult.fromBuffer); $0.SiteShortenURLResponse.fromBuffer);
static final _$shortenPartnerAppURL = $grpc.ClientMethod<$0.ShortenPartnerAppURLRequest, $0.ShortenPartnerAppURLResult>( static final _$partnerAppShortenURL = $grpc.ClientMethod<$0.PartnerAppShortenURLRequest, $0.PartnerAppShortenURLResponse>(
'/api.TinyURLService/ShortenPartnerAppURL', '/api.TinyURLService/PartnerAppShortenURL',
($0.ShortenPartnerAppURLRequest value) => value.writeToBuffer(), ($0.PartnerAppShortenURLRequest value) => value.writeToBuffer(),
$0.ShortenPartnerAppURLResult.fromBuffer); $0.PartnerAppShortenURLResponse.fromBuffer);
static final _$uploadSiteFile = $grpc.ClientMethod<$0.UploadSiteFileRequest, $0.UploadSiteFileResponse>( static final _$siteUploadFile = $grpc.ClientMethod<$0.SiteUploadFileRequest, $0.SiteUploadFileResponse>(
'/api.TinyURLService/UploadSiteFile', '/api.TinyURLService/SiteUploadFile',
($0.UploadSiteFileRequest value) => value.writeToBuffer(), ($0.SiteUploadFileRequest value) => value.writeToBuffer(),
$0.UploadSiteFileResponse.fromBuffer); $0.SiteUploadFileResponse.fromBuffer);
static final _$uploadPartnerAppFile = $grpc.ClientMethod<$0.UploadPartnerAppFileRequest, $0.UploadPartnerAppFileResponse>( static final _$partnerAppUploadFile = $grpc.ClientMethod<$0.PartnerAppUploadFileRequest, $0.PartnerAppUploadFileResponse>(
'/api.TinyURLService/UploadPartnerAppFile', '/api.TinyURLService/PartnerAppUploadFile',
($0.UploadPartnerAppFileRequest value) => value.writeToBuffer(), ($0.PartnerAppUploadFileRequest value) => value.writeToBuffer(),
$0.UploadPartnerAppFileResponse.fromBuffer); $0.PartnerAppUploadFileResponse.fromBuffer);
static final _$listSiteTinyURLs = $grpc.ClientMethod<$0.ListSiteTinyURLsRequest, $0.ListSiteTinyURLsResponse>( static final _$siteUploadPayload = $grpc.ClientMethod<$0.SiteUploadPayloadRequest, $0.SiteUploadPayloadResponse>(
'/api.TinyURLService/ListSiteTinyURLs', '/api.TinyURLService/SiteUploadPayload',
($0.ListSiteTinyURLsRequest value) => value.writeToBuffer(), ($0.SiteUploadPayloadRequest value) => value.writeToBuffer(),
$0.ListSiteTinyURLsResponse.fromBuffer); $0.SiteUploadPayloadResponse.fromBuffer);
static final _$listPartnerAppTinyURLs = $grpc.ClientMethod<$0.ListPartnerAppTinyURLsRequest, $0.ListPartnerAppTinyURLsResponse>( static final _$partnerAppUploadPayload = $grpc.ClientMethod<$0.PartnerAppUploadPayloadRequest, $0.PartnerAppUploadPayloadResponse>(
'/api.TinyURLService/ListPartnerAppTinyURLs', '/api.TinyURLService/PartnerAppUploadPayload',
($0.ListPartnerAppTinyURLsRequest value) => value.writeToBuffer(), ($0.PartnerAppUploadPayloadRequest value) => value.writeToBuffer(),
$0.ListPartnerAppTinyURLsResponse.fromBuffer); $0.PartnerAppUploadPayloadResponse.fromBuffer);
static final _$deleteSiteTinyURL = $grpc.ClientMethod<$0.DeleteSiteTinyURLRequest, $0.DeleteSiteTinyURLResponse>( static final _$siteListTinyURLs = $grpc.ClientMethod<$0.SiteListTinyURLsRequest, $0.SiteListTinyURLsResponse>(
'/api.TinyURLService/DeleteSiteTinyURL', '/api.TinyURLService/SiteListTinyURLs',
($0.DeleteSiteTinyURLRequest value) => value.writeToBuffer(), ($0.SiteListTinyURLsRequest value) => value.writeToBuffer(),
$0.DeleteSiteTinyURLResponse.fromBuffer); $0.SiteListTinyURLsResponse.fromBuffer);
static final _$deletePartnerAppTinyURL = $grpc.ClientMethod<$0.DeletePartnerAppTinyURLRequest, $0.DeletePartnerAppTinyURLResponse>( static final _$partnerAppListTinyURLs = $grpc.ClientMethod<$0.PartnerAppListTinyURLsRequest, $0.PartnerAppListTinyURLsResponse>(
'/api.TinyURLService/DeletePartnerAppTinyURL', '/api.TinyURLService/PartnerAppListTinyURLs',
($0.DeletePartnerAppTinyURLRequest value) => value.writeToBuffer(), ($0.PartnerAppListTinyURLsRequest value) => value.writeToBuffer(),
$0.DeletePartnerAppTinyURLResponse.fromBuffer); $0.PartnerAppListTinyURLsResponse.fromBuffer);
static final _$getSiteTinyURL = $grpc.ClientMethod<$0.GetSiteTinyURLRequest, $0.GetSiteTinyURLResult>( static final _$siteDeleteTinyURL = $grpc.ClientMethod<$0.SiteDeleteTinyURLRequest, $0.SiteDeleteTinyURLResponse>(
'/api.TinyURLService/GetSiteTinyURL', '/api.TinyURLService/SiteDeleteTinyURL',
($0.GetSiteTinyURLRequest value) => value.writeToBuffer(), ($0.SiteDeleteTinyURLRequest value) => value.writeToBuffer(),
$0.GetSiteTinyURLResult.fromBuffer); $0.SiteDeleteTinyURLResponse.fromBuffer);
static final _$getPartnerAppTinyURL = $grpc.ClientMethod<$0.GetPartnerAppTinyURLRequest, $0.GetPartnerAppTinyURLResult>( static final _$partnerAppDeleteTinyURL = $grpc.ClientMethod<$0.PartnerAppDeleteTinyURLRequest, $0.PartnerAppDeleteTinyURLResponse>(
'/api.TinyURLService/GetPartnerAppTinyURL', '/api.TinyURLService/PartnerAppDeleteTinyURL',
($0.GetPartnerAppTinyURLRequest value) => value.writeToBuffer(), ($0.PartnerAppDeleteTinyURLRequest value) => value.writeToBuffer(),
$0.GetPartnerAppTinyURLResult.fromBuffer); $0.PartnerAppDeleteTinyURLResponse.fromBuffer);
static final _$deleteAll = $grpc.ClientMethod<$0.DeleteAllTinyURLsRequest, $0.DeleteAllTinyURLsResult>( 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', '/api.TinyURLService/DeleteAll',
($0.DeleteAllTinyURLsRequest value) => value.writeToBuffer(), ($0.DeleteAllTinyURLsRequest value) => value.writeToBuffer(),
$0.DeleteAllTinyURLsResult.fromBuffer); $0.DeleteAllTinyURLsResponse.fromBuffer);
} }
@$pb.GrpcServiceName('api.TinyURLService') @$pb.GrpcServiceName('api.TinyURLService')
@@ -129,149 +145,175 @@ abstract class TinyURLServiceBase extends $grpc.Service {
$core.String get $name => 'api.TinyURLService'; $core.String get $name => 'api.TinyURLService';
TinyURLServiceBase() { TinyURLServiceBase() {
$addMethod($grpc.ServiceMethod<$0.ShortenSiteURLRequest, $0.ShortenSiteURLResult>( $addMethod($grpc.ServiceMethod<$0.SiteShortenURLRequest, $0.SiteShortenURLResponse>(
'ShortenSiteURL', 'SiteShortenURL',
shortenSiteURL_Pre, siteShortenURL_Pre,
false, false,
false, false,
($core.List<$core.int> value) => $0.ShortenSiteURLRequest.fromBuffer(value), ($core.List<$core.int> value) => $0.SiteShortenURLRequest.fromBuffer(value),
($0.ShortenSiteURLResult value) => value.writeToBuffer())); ($0.SiteShortenURLResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ShortenPartnerAppURLRequest, $0.ShortenPartnerAppURLResult>( $addMethod($grpc.ServiceMethod<$0.PartnerAppShortenURLRequest, $0.PartnerAppShortenURLResponse>(
'ShortenPartnerAppURL', 'PartnerAppShortenURL',
shortenPartnerAppURL_Pre, partnerAppShortenURL_Pre,
false, false,
false, false,
($core.List<$core.int> value) => $0.ShortenPartnerAppURLRequest.fromBuffer(value), ($core.List<$core.int> value) => $0.PartnerAppShortenURLRequest.fromBuffer(value),
($0.ShortenPartnerAppURLResult value) => value.writeToBuffer())); ($0.PartnerAppShortenURLResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.UploadSiteFileRequest, $0.UploadSiteFileResponse>( $addMethod($grpc.ServiceMethod<$0.SiteUploadFileRequest, $0.SiteUploadFileResponse>(
'UploadSiteFile', 'SiteUploadFile',
uploadSiteFile_Pre, siteUploadFile_Pre,
false, false,
false, false,
($core.List<$core.int> value) => $0.UploadSiteFileRequest.fromBuffer(value), ($core.List<$core.int> value) => $0.SiteUploadFileRequest.fromBuffer(value),
($0.UploadSiteFileResponse value) => value.writeToBuffer())); ($0.SiteUploadFileResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.UploadPartnerAppFileRequest, $0.UploadPartnerAppFileResponse>( $addMethod($grpc.ServiceMethod<$0.PartnerAppUploadFileRequest, $0.PartnerAppUploadFileResponse>(
'UploadPartnerAppFile', 'PartnerAppUploadFile',
uploadPartnerAppFile_Pre, partnerAppUploadFile_Pre,
false, false,
false, false,
($core.List<$core.int> value) => $0.UploadPartnerAppFileRequest.fromBuffer(value), ($core.List<$core.int> value) => $0.PartnerAppUploadFileRequest.fromBuffer(value),
($0.UploadPartnerAppFileResponse value) => value.writeToBuffer())); ($0.PartnerAppUploadFileResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ListSiteTinyURLsRequest, $0.ListSiteTinyURLsResponse>( $addMethod($grpc.ServiceMethod<$0.SiteUploadPayloadRequest, $0.SiteUploadPayloadResponse>(
'ListSiteTinyURLs', 'SiteUploadPayload',
listSiteTinyURLs_Pre, siteUploadPayload_Pre,
false, false,
false, false,
($core.List<$core.int> value) => $0.ListSiteTinyURLsRequest.fromBuffer(value), ($core.List<$core.int> value) => $0.SiteUploadPayloadRequest.fromBuffer(value),
($0.ListSiteTinyURLsResponse value) => value.writeToBuffer())); ($0.SiteUploadPayloadResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ListPartnerAppTinyURLsRequest, $0.ListPartnerAppTinyURLsResponse>( $addMethod($grpc.ServiceMethod<$0.PartnerAppUploadPayloadRequest, $0.PartnerAppUploadPayloadResponse>(
'ListPartnerAppTinyURLs', 'PartnerAppUploadPayload',
listPartnerAppTinyURLs_Pre, partnerAppUploadPayload_Pre,
false, false,
false, false,
($core.List<$core.int> value) => $0.ListPartnerAppTinyURLsRequest.fromBuffer(value), ($core.List<$core.int> value) => $0.PartnerAppUploadPayloadRequest.fromBuffer(value),
($0.ListPartnerAppTinyURLsResponse value) => value.writeToBuffer())); ($0.PartnerAppUploadPayloadResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteSiteTinyURLRequest, $0.DeleteSiteTinyURLResponse>( $addMethod($grpc.ServiceMethod<$0.SiteListTinyURLsRequest, $0.SiteListTinyURLsResponse>(
'DeleteSiteTinyURL', 'SiteListTinyURLs',
deleteSiteTinyURL_Pre, siteListTinyURLs_Pre,
false, false,
false, false,
($core.List<$core.int> value) => $0.DeleteSiteTinyURLRequest.fromBuffer(value), ($core.List<$core.int> value) => $0.SiteListTinyURLsRequest.fromBuffer(value),
($0.DeleteSiteTinyURLResponse value) => value.writeToBuffer())); ($0.SiteListTinyURLsResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeletePartnerAppTinyURLRequest, $0.DeletePartnerAppTinyURLResponse>( $addMethod($grpc.ServiceMethod<$0.PartnerAppListTinyURLsRequest, $0.PartnerAppListTinyURLsResponse>(
'DeletePartnerAppTinyURL', 'PartnerAppListTinyURLs',
deletePartnerAppTinyURL_Pre, partnerAppListTinyURLs_Pre,
false, false,
false, false,
($core.List<$core.int> value) => $0.DeletePartnerAppTinyURLRequest.fromBuffer(value), ($core.List<$core.int> value) => $0.PartnerAppListTinyURLsRequest.fromBuffer(value),
($0.DeletePartnerAppTinyURLResponse value) => value.writeToBuffer())); ($0.PartnerAppListTinyURLsResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.GetSiteTinyURLRequest, $0.GetSiteTinyURLResult>( $addMethod($grpc.ServiceMethod<$0.SiteDeleteTinyURLRequest, $0.SiteDeleteTinyURLResponse>(
'GetSiteTinyURL', 'SiteDeleteTinyURL',
getSiteTinyURL_Pre, siteDeleteTinyURL_Pre,
false, false,
false, false,
($core.List<$core.int> value) => $0.GetSiteTinyURLRequest.fromBuffer(value), ($core.List<$core.int> value) => $0.SiteDeleteTinyURLRequest.fromBuffer(value),
($0.GetSiteTinyURLResult value) => value.writeToBuffer())); ($0.SiteDeleteTinyURLResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.GetPartnerAppTinyURLRequest, $0.GetPartnerAppTinyURLResult>( $addMethod($grpc.ServiceMethod<$0.PartnerAppDeleteTinyURLRequest, $0.PartnerAppDeleteTinyURLResponse>(
'GetPartnerAppTinyURL', 'PartnerAppDeleteTinyURL',
getPartnerAppTinyURL_Pre, partnerAppDeleteTinyURL_Pre,
false, false,
false, false,
($core.List<$core.int> value) => $0.GetPartnerAppTinyURLRequest.fromBuffer(value), ($core.List<$core.int> value) => $0.PartnerAppDeleteTinyURLRequest.fromBuffer(value),
($0.GetPartnerAppTinyURLResult value) => value.writeToBuffer())); ($0.PartnerAppDeleteTinyURLResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAllTinyURLsRequest, $0.DeleteAllTinyURLsResult>( $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',
deleteAll_Pre, deleteAll_Pre,
false, false,
false, false,
($core.List<$core.int> value) => $0.DeleteAllTinyURLsRequest.fromBuffer(value), ($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 { $async.Future<$0.SiteShortenURLResponse> siteShortenURL_Pre($grpc.ServiceCall $call, $async.Future<$0.SiteShortenURLRequest> $request) async {
return shortenSiteURL($call, await $request); 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 { $async.Future<$0.PartnerAppShortenURLResponse> partnerAppShortenURL_Pre($grpc.ServiceCall $call, $async.Future<$0.PartnerAppShortenURLRequest> $request) async {
return shortenPartnerAppURL($call, await $request); 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 { $async.Future<$0.SiteUploadFileResponse> siteUploadFile_Pre($grpc.ServiceCall $call, $async.Future<$0.SiteUploadFileRequest> $request) async {
return uploadSiteFile($call, await $request); 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 { $async.Future<$0.PartnerAppUploadFileResponse> partnerAppUploadFile_Pre($grpc.ServiceCall $call, $async.Future<$0.PartnerAppUploadFileRequest> $request) async {
return uploadPartnerAppFile($call, await $request); 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 { $async.Future<$0.SiteUploadPayloadResponse> siteUploadPayload_Pre($grpc.ServiceCall $call, $async.Future<$0.SiteUploadPayloadRequest> $request) async {
return listSiteTinyURLs($call, await $request); 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 { $async.Future<$0.PartnerAppUploadPayloadResponse> partnerAppUploadPayload_Pre($grpc.ServiceCall $call, $async.Future<$0.PartnerAppUploadPayloadRequest> $request) async {
return listPartnerAppTinyURLs($call, await $request); 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 { $async.Future<$0.SiteListTinyURLsResponse> siteListTinyURLs_Pre($grpc.ServiceCall $call, $async.Future<$0.SiteListTinyURLsRequest> $request) async {
return deleteSiteTinyURL($call, await $request); 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 { $async.Future<$0.PartnerAppListTinyURLsResponse> partnerAppListTinyURLs_Pre($grpc.ServiceCall $call, $async.Future<$0.PartnerAppListTinyURLsRequest> $request) async {
return deletePartnerAppTinyURL($call, await $request); 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 { $async.Future<$0.SiteDeleteTinyURLResponse> siteDeleteTinyURL_Pre($grpc.ServiceCall $call, $async.Future<$0.SiteDeleteTinyURLRequest> $request) async {
return getSiteTinyURL($call, await $request); 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 { $async.Future<$0.PartnerAppDeleteTinyURLResponse> partnerAppDeleteTinyURL_Pre($grpc.ServiceCall $call, $async.Future<$0.PartnerAppDeleteTinyURLRequest> $request) async {
return getPartnerAppTinyURL($call, await $request); 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); 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_UNKNOWN', '2': 0},
{'1': 'TINYURL_KIND_FILE', '2': 1}, {'1': 'TINYURL_KIND_FILE', '2': 1},
{'1': 'TINYURL_KIND_URL', '2': 2}, {'1': 'TINYURL_KIND_URL', '2': 2},
{'1': 'TINYURL_KIND_PAYLOAD', '2': 3},
], ],
}; };
/// Descriptor for `TinyURLKind`. Decode as a `google.protobuf.EnumDescriptorProto`. /// Descriptor for `TinyURLKind`. Decode as a `google.protobuf.EnumDescriptorProto`.
final $typed_data.Uint8List tinyURLKindDescriptor = $convert.base64Decode( final $typed_data.Uint8List tinyURLKindDescriptor = $convert.base64Decode(
'CgtUaW55VVJMS2luZBIYChRUSU5ZVVJMX0tJTkRfVU5LTk9XThAAEhUKEVRJTllVUkxfS0lORF' 'CgtUaW55VVJMS2luZBIYChRUSU5ZVVJMX0tJTkRfVU5LTk9XThAAEhUKEVRJTllVUkxfS0lORF'
'9GSUxFEAESFAoQVElOWVVSTF9LSU5EX1VSTBAC'); '9GSUxFEAESFAoQVElOWVVSTF9LSU5EX1VSTBACEhgKFFRJTllVUkxfS0lORF9QQVlMT0FEEAM=');
@$core.Deprecated('Use fileMetadataDescriptor instead') @$core.Deprecated('Use tinyURLKindDetailsDescriptor instead')
const FileMetadata$json = { const TinyURLKindDetails$json = {
'1': 'FileMetadata', '1': 'TinyURLKindDetails',
'2': [ '2': [
{'1': 'Name', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Name'}, {'1': 'LongURL', '3': 1, '4': 1, '5': 9, '10': 'LongURL'},
{'1': 'MIMEType', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'MIMEType'}, {'1': 'FileName', '3': 2, '4': 1, '5': 9, '10': 'FileName'},
{'1': 'Size', '3': 3, '4': 1, '5': 3, '10': 'Size'},
], ],
}; };
/// Descriptor for `FileMetadata`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `TinyURLKindDetails`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List fileMetadataDescriptor = $convert.base64Decode( final $typed_data.Uint8List tinyURLKindDetailsDescriptor = $convert.base64Decode(
'CgxGaWxlTWV0YWRhdGESGwoETmFtZRgBIAEoCUIH+kIEcgIQAVIETmFtZRIjCghNSU1FVHlwZR' 'ChJUaW55VVJMS2luZERldGFpbHMSGAoHTG9uZ1VSTBgBIAEoCVIHTG9uZ1VSTBIaCghGaWxlTm'
'gCIAEoCUIH+kIEcgIQAVIITUlNRVR5cGUSEgoEU2l6ZRgDIAEoA1IEU2l6ZQ=='); 'FtZRgCIAEoCVIIRmlsZU5hbWU=');
@$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');
@$core.Deprecated('Use tinyURLDescriptor instead') @$core.Deprecated('Use tinyURLDescriptor instead')
const TinyURL$json = { const TinyURL$json = {
@@ -64,237 +50,338 @@ const TinyURL$json = {
'2': [ '2': [
{'1': 'ID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ID'}, {'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': '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': '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': 'MIMEType', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'MIMEType'},
{'1': 'ResourceRefID', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'ResourceRefID'}, {'1': 'Size', '3': 6, '4': 1, '5': 3, '10': 'Size'},
{'1': 'TimeToLive', '3': 7, '4': 1, '5': 3, '8': {}, '10': 'TimeToLive'}, {'1': 'ResourceType', '3': 7, '4': 1, '5': 14, '6': '.api.ResourceType', '8': {}, '10': 'ResourceType'},
{'1': 'CreatedAt', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'CreatedAt'}, {'1': 'ResourceRefID', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'ResourceRefID'},
{'1': 'IsPublic', '3': 9, '4': 1, '5': 8, '10': 'IsPublic'}, {'1': 'TimeToLive', '3': 9, '4': 1, '5': 3, '8': {}, '10': 'TimeToLive'},
{'1': 'IsOnce', '3': 10, '4': 1, '5': 8, '10': 'IsOnce'}, {'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`. /// Descriptor for `TinyURL`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List tinyURLDescriptor = $convert.base64Decode( final $typed_data.Uint8List tinyURLDescriptor = $convert.base64Decode(
'CgdUaW55VVJMEhcKAklEGAEgASgJQgf6QgRyAhABUgJJRBIuCgRLaW5kGAIgASgOMhAuYXBpLl' 'CgdUaW55VVJMEhcKAklEGAEgASgJQgf6QgRyAhABUgJJRBJfCgRLaW5kGAIgASgOMhAuYXBpLl'
'RpbnlVUkxLaW5kQgj6QgWCAQIQAVIES2luZBIuCgREYXRhGAMgASgLMhAuYXBpLlRpbnlVUkxE' 'RpbnlVUkxLaW5kQjmSQS4yLEtpbmQgb2YgdGhlIHRpbnkgdXJsIChmaWxlLCBwYXlsb2FkIG9y'
'YXRhQgj6QgWKAQIQAVIERGF0YRJdCgNVUkwYBCABKAlCS5JBQTI/U2hvcnRlbmVkIFVSTCB1c2' 'IHVybCku+kIFggECEAFSBEtpbmQSdQoHRGV0YWlscxgDIAEoCzIXLmFwaS5UaW55VVJMS2luZE'
'VkIHRvIHJldHJpZXZlIHRoZSBvcmlnaW5hbCBkYXRhIChVUkwgb3IgZmlsZSku+kIEcgIQAVID' 'RldGFpbHNCQpJBNzI1Q29udGFpbnMgZGF0YSBzcGVjaWZpYyB0byB0aGUgc2VsZWN0ZWQgdGlu'
'VVJMEj8KDFJlc291cmNlVHlwZRgFIAEoDjIRLmFwaS5SZXNvdXJjZVR5cGVCCPpCBYIBAhABUg' 'eSB1cmwga2luZC76QgWKAQIQAVIHRGV0YWlscxJPCgNVUkwYBCABKAlCPZJBMzIxU2hvcnRlbm'
'xSZXNvdXJjZVR5cGUSLQoNUmVzb3VyY2VSZWZJRBgGIAEoCUIH+kIEcgIQAVINUmVzb3VyY2VS' 'VkIFVSTCB1c2VkIHRvIHJldHJpZXZlIHRoZSBvcmlnaW5hbCBkYXRhLvpCBHICEAFSA1VSTBIj'
'ZWZJRBK5AQoKVGltZVRvTGl2ZRgHIAEoA0KYAZJBiQEyhgFTcGVjaWZpZXMgdGhlIHRpbWUgdG' 'CghNSU1FVHlwZRgFIAEoCUIH+kIEcgIQAVIITUlNRVR5cGUSEgoEU2l6ZRgGIAEoA1IEU2l6ZR'
'8gbGl2ZSAoVFRMKSBvZiB0aGUgVGlueVVSTCBpbiBzZWNvbmRzLCBsaW1pdGVkIHRvIGZpZnR5' 'I/CgxSZXNvdXJjZVR5cGUYByABKA4yES5hcGkuUmVzb3VyY2VUeXBlQgj6QgWCAQIQAVIMUmVz'
'IHllYXJzLiBBIHZhbHVlIG9mIHplcm8gb3IgbGVzcyBpbmRpY2F0ZXMgYW4gaW5maW5pdGUgVF' 'b3VyY2VUeXBlEi0KDVJlc291cmNlUmVmSUQYCCABKAlCB/pCBHICEAFSDVJlc291cmNlUmVmSU'
'RMLvpCCCIGGIDeoMsFUgpUaW1lVG9MaXZlEoABCglDcmVhdGVkQXQYCCABKAlCYpJBVzJVVVRD' 'QSuQEKClRpbWVUb0xpdmUYCSABKANCmAGSQYkBMoYBU3BlY2lmaWVzIHRoZSB0aW1lIHRvIGxp'
'IGRhdGUvdGltZSBpbiA8YSBocmVmPSdodHRwczovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9JU0' 'dmUgKFRUTCkgb2YgdGhlIFRpbnlVUkwgaW4gc2Vjb25kcywgbGltaXRlZCB0byBmaWZ0eSB5ZW'
'9fODYwMSc+SVNPIDg2MDE8L2E+IGZvcm1hdPpCBXID0AEBUglDcmVhdGVkQXQSGgoISXNQdWJs' 'Fycy4gQSB2YWx1ZSBvZiB6ZXJvIG9yIGxlc3MgaW5kaWNhdGVzIGFuIGluZmluaXRlIFRUTC76'
'aWMYCSABKAhSCElzUHVibGljEhYKBklzT25jZRgKIAEoCFIGSXNPbmNl'); 'QggiBhiA3qDLBVIKVGltZVRvTGl2ZRKAAQoJQ3JlYXRlZEF0GAogASgJQmKSQVcyVVVUQyBkYX'
'RlL3RpbWUgaW4gPGEgaHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzg2'
'MDEnPklTTyA4NjAxPC9hPiBmb3JtYXT6QgVyA9ABAVIJQ3JlYXRlZEF0EhoKCElzUHVibGljGA'
'sgASgIUghJc1B1YmxpYxIWCgZJc09uY2UYDCABKAhSBklzT25jZQ==');
@$core.Deprecated('Use shortenSiteURLRequestDescriptor instead') @$core.Deprecated('Use siteShortenURLRequestDescriptor instead')
const ShortenSiteURLRequest$json = { const SiteShortenURLRequest$json = {
'1': 'ShortenSiteURLRequest', '1': 'SiteShortenURLRequest',
'2': [ '2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'}, {'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': 'URL', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'URL'},
{'1': 'TimeToLive', '3': 3, '4': 1, '5': 3, '8': {}, '10': 'TimeToLive'}, {'1': 'TimeToLive', '3': 3, '4': 1, '5': 3, '8': {}, '10': 'TimeToLive'},
{'1': 'isPublic', '3': 4, '4': 1, '5': 8, '10': 'isPublic'}, {'1': 'IsPublic', '3': 4, '4': 1, '5': 8, '10': 'IsPublic'},
{'1': 'isOnce', '3': 5, '4': 1, '5': 8, '10': 'isOnce'}, {'1': 'IsOnce', '3': 5, '4': 1, '5': 8, '10': 'IsOnce'},
{'1': 'Alias', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'Alias'},
], ],
'7': {}, '7': {},
}; };
/// Descriptor for `ShortenSiteURLRequest`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `SiteShortenURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List shortenSiteURLRequestDescriptor = $convert.base64Decode( final $typed_data.Uint8List siteShortenURLRequestDescriptor = $convert.base64Decode(
'ChVTaG9ydGVuU2l0ZVVSTFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3RTaX' 'ChVTaXRlU2hvcnRlblVSTFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3RTaX'
'RlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhkKA1VSTBgCIAEoCUIH+kIEcgIQAVIDVVJMErkB' 'RlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhkKA1VSTBgCIAEoCUIH+kIEcgIQAVIDVVJMErkB'
'CgpUaW1lVG9MaXZlGAMgASgDQpgBkkGJATKGAVNwZWNpZmllcyB0aGUgdGltZSB0byBsaXZlIC' 'CgpUaW1lVG9MaXZlGAMgASgDQpgBkkGJATKGAVNwZWNpZmllcyB0aGUgdGltZSB0byBsaXZlIC'
'hUVEwpIG9mIHRoZSBUaW55VVJMIGluIHNlY29uZHMsIGxpbWl0ZWQgdG8gZmlmdHkgeWVhcnMu' 'hUVEwpIG9mIHRoZSBUaW55VVJMIGluIHNlY29uZHMsIGxpbWl0ZWQgdG8gZmlmdHkgeWVhcnMu'
'IEEgdmFsdWUgb2YgemVybyBvciBsZXNzIGluZGljYXRlcyBhbiBpbmZpbml0ZSBUVEwu+kIIIg' 'IEEgdmFsdWUgb2YgemVybyBvciBsZXNzIGluZGljYXRlcyBhbiBpbmZpbml0ZSBUVEwu+kIIIg'
'YYgN6gywVSClRpbWVUb0xpdmUSGgoIaXNQdWJsaWMYBCABKAhSCGlzUHVibGljEhYKBmlzT25j' 'YYgN6gywVSClRpbWVUb0xpdmUSGgoISXNQdWJsaWMYBCABKAhSCElzUHVibGljEhYKBklzT25j'
'ZRgFIAEoCFIGaXNPbmNlOiGSQR4KHNIBBkhlYWRlctIBA1VSTNIBClRpbWVUb0xpdmU='); 'ZRgFIAEoCFIGSXNPbmNlEpIBCgVBbGlhcxgGIAEoCUJ8kkFhMl9PcHRpb25hbCwgY3VzdG9taX'
'plIHRoZSBsaW5rIGJ5IGFkZGluZyBhbiBhbGlhcyB0byB0aGUgdXJsLiBJZiBvbWl0dGVkIGEg'
'dW5pcXVlIElEIGlzIGdlbmVyYXRlZPpCFXITGDIyD15bYS16QS1aMC05LV0qJFIFQWxpYXM6IZ'
'JBHgoc0gEGSGVhZGVy0gEDVVJM0gEKVGltZVRvTGl2ZQ==');
@$core.Deprecated('Use shortenSiteURLResultDescriptor instead') @$core.Deprecated('Use siteShortenURLResponseDescriptor instead')
const ShortenSiteURLResult$json = { const SiteShortenURLResponse$json = {
'1': 'ShortenSiteURLResult', '1': 'SiteShortenURLResponse',
'2': [ '2': [
{'1': 'TinyURL', '3': 1, '4': 1, '5': 11, '6': '.api.TinyURL', '10': 'TinyURL'}, {'1': 'TinyURL', '3': 1, '4': 1, '5': 11, '6': '.api.TinyURL', '10': 'TinyURL'},
], ],
}; };
/// Descriptor for `ShortenSiteURLResult`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `SiteShortenURLResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List shortenSiteURLResultDescriptor = $convert.base64Decode( final $typed_data.Uint8List siteShortenURLResponseDescriptor = $convert.base64Decode(
'ChRTaG9ydGVuU2l0ZVVSTFJlc3VsdBImCgdUaW55VVJMGAEgASgLMgwuYXBpLlRpbnlVUkxSB1' 'ChZTaXRlU2hvcnRlblVSTFJlc3BvbnNlEiYKB1RpbnlVUkwYASABKAsyDC5hcGkuVGlueVVSTF'
'RpbnlVUkw='); 'IHVGlueVVSTA==');
@$core.Deprecated('Use shortenPartnerAppURLRequestDescriptor instead') @$core.Deprecated('Use partnerAppShortenURLRequestDescriptor instead')
const ShortenPartnerAppURLRequest$json = { const PartnerAppShortenURLRequest$json = {
'1': 'ShortenPartnerAppURLRequest', '1': 'PartnerAppShortenURLRequest',
'2': [ '2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestPartnerAppHeader', '8': {}, '10': 'Header'}, {'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': 'URL', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'URL'},
{'1': 'TimeToLive', '3': 3, '4': 1, '5': 3, '8': {}, '10': 'TimeToLive'}, {'1': 'TimeToLive', '3': 3, '4': 1, '5': 3, '8': {}, '10': 'TimeToLive'},
{'1': 'isPublic', '3': 4, '4': 1, '5': 8, '10': 'isPublic'}, {'1': 'IsPublic', '3': 4, '4': 1, '5': 8, '10': 'IsPublic'},
{'1': 'isOnce', '3': 5, '4': 1, '5': 8, '10': 'isOnce'}, {'1': 'IsOnce', '3': 5, '4': 1, '5': 8, '10': 'IsOnce'},
{'1': 'Alias', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'Alias'},
], ],
'7': {}, '7': {},
}; };
/// Descriptor for `ShortenPartnerAppURLRequest`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `PartnerAppShortenURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List shortenPartnerAppURLRequestDescriptor = $convert.base64Decode( final $typed_data.Uint8List partnerAppShortenURLRequestDescriptor = $convert.base64Decode(
'ChtTaG9ydGVuUGFydG5lckFwcFVSTFJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLlJlcX' 'ChtQYXJ0bmVyQXBwU2hvcnRlblVSTFJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLlJlcX'
'Vlc3RQYXJ0bmVyQXBwSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhkKA1VSTBgCIAEoCUIH+kIE' 'Vlc3RQYXJ0bmVyQXBwSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhkKA1VSTBgCIAEoCUIH+kIE'
'cgIQAVIDVVJMErkBCgpUaW1lVG9MaXZlGAMgASgDQpgBkkGJATKGAVNwZWNpZmllcyB0aGUgdG' 'cgIQAVIDVVJMErkBCgpUaW1lVG9MaXZlGAMgASgDQpgBkkGJATKGAVNwZWNpZmllcyB0aGUgdG'
'ltZSB0byBsaXZlIChUVEwpIG9mIHRoZSBUaW55VVJMIGluIHNlY29uZHMsIGxpbWl0ZWQgdG8g' 'ltZSB0byBsaXZlIChUVEwpIG9mIHRoZSBUaW55VVJMIGluIHNlY29uZHMsIGxpbWl0ZWQgdG8g'
'ZmlmdHkgeWVhcnMuIEEgdmFsdWUgb2YgemVybyBvciBsZXNzIGluZGljYXRlcyBhbiBpbmZpbm' 'ZmlmdHkgeWVhcnMuIEEgdmFsdWUgb2YgemVybyBvciBsZXNzIGluZGljYXRlcyBhbiBpbmZpbm'
'l0ZSBUVEwu+kIIIgYYgN6gywVSClRpbWVUb0xpdmUSGgoIaXNQdWJsaWMYBCABKAhSCGlzUHVi' 'l0ZSBUVEwu+kIIIgYYgN6gywVSClRpbWVUb0xpdmUSGgoISXNQdWJsaWMYBCABKAhSCElzUHVi'
'bGljEhYKBmlzT25jZRgFIAEoCFIGaXNPbmNlOiGSQR4KHNIBBkhlYWRlctIBA1VSTNIBClRpbW' 'bGljEhYKBklzT25jZRgFIAEoCFIGSXNPbmNlEpIBCgVBbGlhcxgGIAEoCUJ8kkFhMl9PcHRpb2'
'VUb0xpdmU='); '5hbCwgY3VzdG9taXplIHRoZSBsaW5rIGJ5IGFkZGluZyBhbiBhbGlhcyB0byB0aGUgdXJsLiBJ'
'ZiBvbWl0dGVkIGEgdW5pcXVlIElEIGlzIGdlbmVyYXRlZPpCFXITGDIyD15bYS16QS1aMC05LV'
'0qJFIFQWxpYXM6IZJBHgoc0gEGSGVhZGVy0gEDVVJM0gEKVGltZVRvTGl2ZQ==');
@$core.Deprecated('Use shortenPartnerAppURLResultDescriptor instead') @$core.Deprecated('Use partnerAppShortenURLResponseDescriptor instead')
const ShortenPartnerAppURLResult$json = { const PartnerAppShortenURLResponse$json = {
'1': 'ShortenPartnerAppURLResult', '1': 'PartnerAppShortenURLResponse',
'2': [ '2': [
{'1': 'TinyURL', '3': 1, '4': 1, '5': 11, '6': '.api.TinyURL', '10': 'TinyURL'}, {'1': 'TinyURL', '3': 1, '4': 1, '5': 11, '6': '.api.TinyURL', '10': 'TinyURL'},
], ],
}; };
/// Descriptor for `ShortenPartnerAppURLResult`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `PartnerAppShortenURLResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List shortenPartnerAppURLResultDescriptor = $convert.base64Decode( final $typed_data.Uint8List partnerAppShortenURLResponseDescriptor = $convert.base64Decode(
'ChpTaG9ydGVuUGFydG5lckFwcFVSTFJlc3VsdBImCgdUaW55VVJMGAEgASgLMgwuYXBpLlRpbn' 'ChxQYXJ0bmVyQXBwU2hvcnRlblVSTFJlc3BvbnNlEiYKB1RpbnlVUkwYASABKAsyDC5hcGkuVG'
'lVUkxSB1RpbnlVUkw='); 'lueVVSTFIHVGlueVVSTA==');
@$core.Deprecated('Use uploadSiteFileRequestDescriptor instead') @$core.Deprecated('Use siteUploadFileRequestDescriptor instead')
const UploadSiteFileRequest$json = { const SiteUploadFileRequest$json = {
'1': 'UploadSiteFileRequest', '1': 'SiteUploadFileRequest',
'2': [ '2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'}, {'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': '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': 'TimeToLive', '3': 3, '4': 1, '5': 3, '8': {}, '10': 'TimeToLive'},
{'1': 'isPublic', '3': 4, '4': 1, '5': 8, '10': 'isPublic'}, {'1': 'IsPublic', '3': 4, '4': 1, '5': 8, '10': 'IsPublic'},
{'1': 'isOnce', '3': 5, '4': 1, '5': 8, '10': 'isOnce'}, {'1': 'IsOnce', '3': 5, '4': 1, '5': 8, '10': 'IsOnce'},
{'1': 'Alias', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'Alias'},
], ],
'7': {}, '7': {},
}; };
/// Descriptor for `UploadSiteFileRequest`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `SiteUploadFileRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List uploadSiteFileRequestDescriptor = $convert.base64Decode( final $typed_data.Uint8List siteUploadFileRequestDescriptor = $convert.base64Decode(
'ChVVcGxvYWRTaXRlRmlsZVJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3RTaX' 'ChVTaXRlVXBsb2FkRmlsZVJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3RTaX'
'RlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjoKCEZpbGVEYXRhGAIgASgLMhQuYXBpLkZpbGVE' 'RlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjoKCEZpbGVEYXRhGAIgASgLMhQuYXBpLkZpbGVE'
'YXRhUmVxdWVzdEII+kIFigECEAFSCEZpbGVEYXRhErkBCgpUaW1lVG9MaXZlGAMgASgDQpgBkk' 'YXRhUmVxdWVzdEII+kIFigECEAFSCEZpbGVEYXRhErkBCgpUaW1lVG9MaXZlGAMgASgDQpgBkk'
'GJATKGAVNwZWNpZmllcyB0aGUgdGltZSB0byBsaXZlIChUVEwpIG9mIHRoZSBUaW55VVJMIGlu' 'GJATKGAVNwZWNpZmllcyB0aGUgdGltZSB0byBsaXZlIChUVEwpIG9mIHRoZSBUaW55VVJMIGlu'
'IHNlY29uZHMsIGxpbWl0ZWQgdG8gZmlmdHkgeWVhcnMuIEEgdmFsdWUgb2YgemVybyBvciBsZX' 'IHNlY29uZHMsIGxpbWl0ZWQgdG8gZmlmdHkgeWVhcnMuIEEgdmFsdWUgb2YgemVybyBvciBsZX'
'NzIGluZGljYXRlcyBhbiBpbmZpbml0ZSBUVEwu+kIIIgYYgN6gywVSClRpbWVUb0xpdmUSGgoI' 'NzIGluZGljYXRlcyBhbiBpbmZpbml0ZSBUVEwu+kIIIgYYgN6gywVSClRpbWVUb0xpdmUSGgoI'
'aXNQdWJsaWMYBCABKAhSCGlzUHVibGljEhYKBmlzT25jZRgFIAEoCFIGaXNPbmNlOiaSQSMKId' 'SXNQdWJsaWMYBCABKAhSCElzUHVibGljEhYKBklzT25jZRgFIAEoCFIGSXNPbmNlEpIBCgVBbG'
'IBBkhlYWRlctIBCEZpbGVEYXRh0gEKVGltZVRvTGl2ZQ=='); 'lhcxgGIAEoCUJ8kkFhMl9PcHRpb25hbCwgY3VzdG9taXplIHRoZSBsaW5rIGJ5IGFkZGluZyBh'
'biBhbGlhcyB0byB0aGUgdXJsLiBJZiBvbWl0dGVkIGEgdW5pcXVlIElEIGlzIGdlbmVyYXRlZP'
'pCFXITGDIyD15bYS16QS1aMC05LV0qJFIFQWxpYXM6JpJBIwoh0gEGSGVhZGVy0gEIRmlsZURh'
'dGHSAQpUaW1lVG9MaXZl');
@$core.Deprecated('Use uploadSiteFileResponseDescriptor instead') @$core.Deprecated('Use siteUploadFileResponseDescriptor instead')
const UploadSiteFileResponse$json = { const SiteUploadFileResponse$json = {
'1': 'UploadSiteFileResponse', '1': 'SiteUploadFileResponse',
'2': [ '2': [
{'1': 'TinyURL', '3': 1, '4': 1, '5': 11, '6': '.api.TinyURL', '10': 'TinyURL'}, {'1': 'TinyURL', '3': 1, '4': 1, '5': 11, '6': '.api.TinyURL', '10': 'TinyURL'},
], ],
}; };
/// Descriptor for `UploadSiteFileResponse`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `SiteUploadFileResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List uploadSiteFileResponseDescriptor = $convert.base64Decode( final $typed_data.Uint8List siteUploadFileResponseDescriptor = $convert.base64Decode(
'ChZVcGxvYWRTaXRlRmlsZVJlc3BvbnNlEiYKB1RpbnlVUkwYASABKAsyDC5hcGkuVGlueVVSTF' 'ChZTaXRlVXBsb2FkRmlsZVJlc3BvbnNlEiYKB1RpbnlVUkwYASABKAsyDC5hcGkuVGlueVVSTF'
'IHVGlueVVSTA=='); 'IHVGlueVVSTA==');
@$core.Deprecated('Use uploadPartnerAppFileRequestDescriptor instead') @$core.Deprecated('Use partnerAppUploadFileRequestDescriptor instead')
const UploadPartnerAppFileRequest$json = { const PartnerAppUploadFileRequest$json = {
'1': 'UploadPartnerAppFileRequest', '1': 'PartnerAppUploadFileRequest',
'2': [ '2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestPartnerAppHeader', '8': {}, '10': 'Header'}, {'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': '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': 'TimeToLive', '3': 3, '4': 1, '5': 3, '8': {}, '10': 'TimeToLive'},
{'1': 'isPublic', '3': 4, '4': 1, '5': 8, '10': 'isPublic'}, {'1': 'IsPublic', '3': 4, '4': 1, '5': 8, '10': 'IsPublic'},
{'1': 'isOnce', '3': 5, '4': 1, '5': 8, '10': 'isOnce'}, {'1': 'IsOnce', '3': 5, '4': 1, '5': 8, '10': 'IsOnce'},
{'1': 'Alias', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'Alias'},
], ],
'7': {}, '7': {},
}; };
/// Descriptor for `UploadPartnerAppFileRequest`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `PartnerAppUploadFileRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List uploadPartnerAppFileRequestDescriptor = $convert.base64Decode( final $typed_data.Uint8List partnerAppUploadFileRequestDescriptor = $convert.base64Decode(
'ChtVcGxvYWRQYXJ0bmVyQXBwRmlsZVJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLlJlcX' 'ChtQYXJ0bmVyQXBwVXBsb2FkRmlsZVJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLlJlcX'
'Vlc3RQYXJ0bmVyQXBwSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjoKCEZpbGVEYXRhGAIgASgL' 'Vlc3RQYXJ0bmVyQXBwSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjoKCEZpbGVEYXRhGAIgASgL'
'MhQuYXBpLkZpbGVEYXRhUmVxdWVzdEII+kIFigECEAFSCEZpbGVEYXRhErkBCgpUaW1lVG9MaX' 'MhQuYXBpLkZpbGVEYXRhUmVxdWVzdEII+kIFigECEAFSCEZpbGVEYXRhErkBCgpUaW1lVG9MaX'
'ZlGAMgASgDQpgBkkGJATKGAVNwZWNpZmllcyB0aGUgdGltZSB0byBsaXZlIChUVEwpIG9mIHRo' 'ZlGAMgASgDQpgBkkGJATKGAVNwZWNpZmllcyB0aGUgdGltZSB0byBsaXZlIChUVEwpIG9mIHRo'
'ZSBUaW55VVJMIGluIHNlY29uZHMsIGxpbWl0ZWQgdG8gZmlmdHkgeWVhcnMuIEEgdmFsdWUgb2' 'ZSBUaW55VVJMIGluIHNlY29uZHMsIGxpbWl0ZWQgdG8gZmlmdHkgeWVhcnMuIEEgdmFsdWUgb2'
'YgemVybyBvciBsZXNzIGluZGljYXRlcyBhbiBpbmZpbml0ZSBUVEwu+kIIIgYYgN6gywVSClRp' 'YgemVybyBvciBsZXNzIGluZGljYXRlcyBhbiBpbmZpbml0ZSBUVEwu+kIIIgYYgN6gywVSClRp'
'bWVUb0xpdmUSGgoIaXNQdWJsaWMYBCABKAhSCGlzUHVibGljEhYKBmlzT25jZRgFIAEoCFIGaX' 'bWVUb0xpdmUSGgoISXNQdWJsaWMYBCABKAhSCElzUHVibGljEhYKBklzT25jZRgFIAEoCFIGSX'
'NPbmNlOiaSQSMKIdIBBkhlYWRlctIBCEZpbGVEYXRh0gEKVGltZVRvTGl2ZQ=='); 'NPbmNlEpIBCgVBbGlhcxgGIAEoCUJ8kkFhMl9PcHRpb25hbCwgY3VzdG9taXplIHRoZSBsaW5r'
'IGJ5IGFkZGluZyBhbiBhbGlhcyB0byB0aGUgdXJsLiBJZiBvbWl0dGVkIGEgdW5pcXVlIElEIG'
'lzIGdlbmVyYXRlZPpCFXITGDIyD15bYS16QS1aMC05LV0qJFIFQWxpYXM6JpJBIwoh0gEGSGVh'
'ZGVy0gEIRmlsZURhdGHSAQpUaW1lVG9MaXZl');
@$core.Deprecated('Use uploadPartnerAppFileResponseDescriptor instead') @$core.Deprecated('Use partnerAppUploadFileResponseDescriptor instead')
const UploadPartnerAppFileResponse$json = { const PartnerAppUploadFileResponse$json = {
'1': 'UploadPartnerAppFileResponse', '1': 'PartnerAppUploadFileResponse',
'2': [ '2': [
{'1': 'TinyURL', '3': 1, '4': 1, '5': 11, '6': '.api.TinyURL', '10': 'TinyURL'}, {'1': 'TinyURL', '3': 1, '4': 1, '5': 11, '6': '.api.TinyURL', '10': 'TinyURL'},
], ],
}; };
/// Descriptor for `UploadPartnerAppFileResponse`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `PartnerAppUploadFileResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List uploadPartnerAppFileResponseDescriptor = $convert.base64Decode( final $typed_data.Uint8List partnerAppUploadFileResponseDescriptor = $convert.base64Decode(
'ChxVcGxvYWRQYXJ0bmVyQXBwRmlsZVJlc3BvbnNlEiYKB1RpbnlVUkwYASABKAsyDC5hcGkuVG' 'ChxQYXJ0bmVyQXBwVXBsb2FkRmlsZVJlc3BvbnNlEiYKB1RpbnlVUkwYASABKAsyDC5hcGkuVG'
'lueVVSTFIHVGlueVVSTA=='); 'lueVVSTFIHVGlueVVSTA==');
@$core.Deprecated('Use listSiteTinyURLsRequestDescriptor instead') @$core.Deprecated('Use siteUploadPayloadRequestDescriptor instead')
const ListSiteTinyURLsRequest$json = { const SiteUploadPayloadRequest$json = {
'1': 'ListSiteTinyURLsRequest', '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': [ '2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'}, {'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
], ],
'7': {}, '7': {},
}; };
/// Descriptor for `ListSiteTinyURLsRequest`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `SiteListTinyURLsRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listSiteTinyURLsRequestDescriptor = $convert.base64Decode( final $typed_data.Uint8List siteListTinyURLsRequestDescriptor = $convert.base64Decode(
'ChdMaXN0U2l0ZVRpbnlVUkxzUmVxdWVzdBI4CgZIZWFkZXIYASABKAsyFi5hcGkuUmVxdWVzdF' 'ChdTaXRlTGlzdFRpbnlVUkxzUmVxdWVzdBI4CgZIZWFkZXIYASABKAsyFi5hcGkuUmVxdWVzdF'
'NpdGVIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXI6DpJBCwoJ0gEGSGVhZGVy'); 'NpdGVIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXI6DpJBCwoJ0gEGSGVhZGVy');
@$core.Deprecated('Use listSiteTinyURLsResponseDescriptor instead') @$core.Deprecated('Use siteListTinyURLsResponseDescriptor instead')
const ListSiteTinyURLsResponse$json = { const SiteListTinyURLsResponse$json = {
'1': 'ListSiteTinyURLsResponse', '1': 'SiteListTinyURLsResponse',
'2': [ '2': [
{'1': 'TinyURLs', '3': 1, '4': 3, '5': 11, '6': '.api.TinyURL', '10': 'TinyURLs'}, {'1': 'TinyURLs', '3': 1, '4': 3, '5': 11, '6': '.api.TinyURL', '10': 'TinyURLs'},
], ],
}; };
/// Descriptor for `ListSiteTinyURLsResponse`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `SiteListTinyURLsResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listSiteTinyURLsResponseDescriptor = $convert.base64Decode( final $typed_data.Uint8List siteListTinyURLsResponseDescriptor = $convert.base64Decode(
'ChhMaXN0U2l0ZVRpbnlVUkxzUmVzcG9uc2USKAoIVGlueVVSTHMYASADKAsyDC5hcGkuVGlueV' 'ChhTaXRlTGlzdFRpbnlVUkxzUmVzcG9uc2USKAoIVGlueVVSTHMYASADKAsyDC5hcGkuVGlueV'
'VSTFIIVGlueVVSTHM='); 'VSTFIIVGlueVVSTHM=');
@$core.Deprecated('Use listPartnerAppTinyURLsRequestDescriptor instead') @$core.Deprecated('Use partnerAppListTinyURLsRequestDescriptor instead')
const ListPartnerAppTinyURLsRequest$json = { const PartnerAppListTinyURLsRequest$json = {
'1': 'ListPartnerAppTinyURLsRequest', '1': 'PartnerAppListTinyURLsRequest',
'2': [ '2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestPartnerAppHeader', '8': {}, '10': 'Header'}, {'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestPartnerAppHeader', '8': {}, '10': 'Header'},
], ],
'7': {}, '7': {},
}; };
/// Descriptor for `ListPartnerAppTinyURLsRequest`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `PartnerAppListTinyURLsRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listPartnerAppTinyURLsRequestDescriptor = $convert.base64Decode( final $typed_data.Uint8List partnerAppListTinyURLsRequestDescriptor = $convert.base64Decode(
'Ch1MaXN0UGFydG5lckFwcFRpbnlVUkxzUmVxdWVzdBI+CgZIZWFkZXIYASABKAsyHC5hcGkuUm' 'Ch1QYXJ0bmVyQXBwTGlzdFRpbnlVUkxzUmVxdWVzdBI+CgZIZWFkZXIYASABKAsyHC5hcGkuUm'
'VxdWVzdFBhcnRuZXJBcHBIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXI6DpJBCwoJ0gEGSGVhZGVy'); 'VxdWVzdFBhcnRuZXJBcHBIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXI6DpJBCwoJ0gEGSGVhZGVy');
@$core.Deprecated('Use listPartnerAppTinyURLsResponseDescriptor instead') @$core.Deprecated('Use partnerAppListTinyURLsResponseDescriptor instead')
const ListPartnerAppTinyURLsResponse$json = { const PartnerAppListTinyURLsResponse$json = {
'1': 'ListPartnerAppTinyURLsResponse', '1': 'PartnerAppListTinyURLsResponse',
'2': [ '2': [
{'1': 'TinyURLs', '3': 1, '4': 3, '5': 11, '6': '.api.TinyURL', '10': 'TinyURLs'}, {'1': 'TinyURLs', '3': 1, '4': 3, '5': 11, '6': '.api.TinyURL', '10': 'TinyURLs'},
], ],
}; };
/// Descriptor for `ListPartnerAppTinyURLsResponse`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `PartnerAppListTinyURLsResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listPartnerAppTinyURLsResponseDescriptor = $convert.base64Decode( final $typed_data.Uint8List partnerAppListTinyURLsResponseDescriptor = $convert.base64Decode(
'Ch5MaXN0UGFydG5lckFwcFRpbnlVUkxzUmVzcG9uc2USKAoIVGlueVVSTHMYASADKAsyDC5hcG' 'Ch5QYXJ0bmVyQXBwTGlzdFRpbnlVUkxzUmVzcG9uc2USKAoIVGlueVVSTHMYASADKAsyDC5hcG'
'kuVGlueVVSTFIIVGlueVVSTHM='); 'kuVGlueVVSTFIIVGlueVVSTHM=');
@$core.Deprecated('Use deleteSiteTinyURLRequestDescriptor instead') @$core.Deprecated('Use siteDeleteTinyURLRequestDescriptor instead')
const DeleteSiteTinyURLRequest$json = { const SiteDeleteTinyURLRequest$json = {
'1': 'DeleteSiteTinyURLRequest', '1': 'SiteDeleteTinyURLRequest',
'2': [ '2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'}, {'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'}, {'1': 'ID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ID'},
@@ -302,24 +389,24 @@ const DeleteSiteTinyURLRequest$json = {
'7': {}, '7': {},
}; };
/// Descriptor for `DeleteSiteTinyURLRequest`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `SiteDeleteTinyURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteSiteTinyURLRequestDescriptor = $convert.base64Decode( final $typed_data.Uint8List siteDeleteTinyURLRequestDescriptor = $convert.base64Decode(
'ChhEZWxldGVTaXRlVGlueVVSTFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3' 'ChhTaXRlRGVsZXRlVGlueVVSTFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3'
'RTaXRlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhcKAklEGAIgASgJQgf6QgRyAhABUgJJRDoT' 'RTaXRlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhcKAklEGAIgASgJQgf6QgRyAhABUgJJRDoT'
'kkEQCg7SAQZIZWFkZXLSAQJJRA=='); 'kkEQCg7SAQZIZWFkZXLSAQJJRA==');
@$core.Deprecated('Use deleteSiteTinyURLResponseDescriptor instead') @$core.Deprecated('Use siteDeleteTinyURLResponseDescriptor instead')
const DeleteSiteTinyURLResponse$json = { const SiteDeleteTinyURLResponse$json = {
'1': 'DeleteSiteTinyURLResponse', '1': 'SiteDeleteTinyURLResponse',
}; };
/// Descriptor for `DeleteSiteTinyURLResponse`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `SiteDeleteTinyURLResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteSiteTinyURLResponseDescriptor = $convert.base64Decode( final $typed_data.Uint8List siteDeleteTinyURLResponseDescriptor = $convert.base64Decode(
'ChlEZWxldGVTaXRlVGlueVVSTFJlc3BvbnNl'); 'ChlTaXRlRGVsZXRlVGlueVVSTFJlc3BvbnNl');
@$core.Deprecated('Use deletePartnerAppTinyURLRequestDescriptor instead') @$core.Deprecated('Use partnerAppDeleteTinyURLRequestDescriptor instead')
const DeletePartnerAppTinyURLRequest$json = { const PartnerAppDeleteTinyURLRequest$json = {
'1': 'DeletePartnerAppTinyURLRequest', '1': 'PartnerAppDeleteTinyURLRequest',
'2': [ '2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestPartnerAppHeader', '8': {}, '10': 'Header'}, {'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'}, {'1': 'ID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ID'},
@@ -327,24 +414,24 @@ const DeletePartnerAppTinyURLRequest$json = {
'7': {}, '7': {},
}; };
/// Descriptor for `DeletePartnerAppTinyURLRequest`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `PartnerAppDeleteTinyURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deletePartnerAppTinyURLRequestDescriptor = $convert.base64Decode( final $typed_data.Uint8List partnerAppDeleteTinyURLRequestDescriptor = $convert.base64Decode(
'Ch5EZWxldGVQYXJ0bmVyQXBwVGlueVVSTFJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLl' 'Ch5QYXJ0bmVyQXBwRGVsZXRlVGlueVVSTFJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLl'
'JlcXVlc3RQYXJ0bmVyQXBwSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhcKAklEGAIgASgJQgf6' 'JlcXVlc3RQYXJ0bmVyQXBwSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhcKAklEGAIgASgJQgf6'
'QgRyAhABUgJJRDoTkkEQCg7SAQZIZWFkZXLSAQJJRA=='); 'QgRyAhABUgJJRDoTkkEQCg7SAQZIZWFkZXLSAQJJRA==');
@$core.Deprecated('Use deletePartnerAppTinyURLResponseDescriptor instead') @$core.Deprecated('Use partnerAppDeleteTinyURLResponseDescriptor instead')
const DeletePartnerAppTinyURLResponse$json = { const PartnerAppDeleteTinyURLResponse$json = {
'1': 'DeletePartnerAppTinyURLResponse', '1': 'PartnerAppDeleteTinyURLResponse',
}; };
/// Descriptor for `DeletePartnerAppTinyURLResponse`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `PartnerAppDeleteTinyURLResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deletePartnerAppTinyURLResponseDescriptor = $convert.base64Decode( final $typed_data.Uint8List partnerAppDeleteTinyURLResponseDescriptor = $convert.base64Decode(
'Ch9EZWxldGVQYXJ0bmVyQXBwVGlueVVSTFJlc3BvbnNl'); 'Ch9QYXJ0bmVyQXBwRGVsZXRlVGlueVVSTFJlc3BvbnNl');
@$core.Deprecated('Use getSiteTinyURLRequestDescriptor instead') @$core.Deprecated('Use siteGetTinyURLRequestDescriptor instead')
const GetSiteTinyURLRequest$json = { const SiteGetTinyURLRequest$json = {
'1': 'GetSiteTinyURLRequest', '1': 'SiteGetTinyURLRequest',
'2': [ '2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'}, {'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'}, {'1': 'ID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ID'},
@@ -352,31 +439,32 @@ const GetSiteTinyURLRequest$json = {
'7': {}, '7': {},
}; };
/// Descriptor for `GetSiteTinyURLRequest`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `SiteGetTinyURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getSiteTinyURLRequestDescriptor = $convert.base64Decode( final $typed_data.Uint8List siteGetTinyURLRequestDescriptor = $convert.base64Decode(
'ChVHZXRTaXRlVGlueVVSTFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3RTaX' 'ChVTaXRlR2V0VGlueVVSTFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3RTaX'
'RlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhcKAklEGAIgASgJQgf6QgRyAhABUgJJRDoTkkEQ' 'RlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhcKAklEGAIgASgJQgf6QgRyAhABUgJJRDoTkkEQ'
'Cg7SAQZIZWFkZXLSAQJJRA=='); 'Cg7SAQZIZWFkZXLSAQJJRA==');
@$core.Deprecated('Use getSiteTinyURLResultDescriptor instead') @$core.Deprecated('Use siteGetTinyURLResponseDescriptor instead')
const GetSiteTinyURLResult$json = { const SiteGetTinyURLResponse$json = {
'1': 'GetSiteTinyURLResult', '1': 'SiteGetTinyURLResponse',
'2': [ '2': [
{'1': 'Kind', '3': 1, '4': 1, '5': 14, '6': '.api.TinyURLKind', '10': 'Kind'}, {'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': 'File', '3': 2, '4': 1, '5': 11, '6': '.api.FileDataResponse', '10': 'File'},
{'1': 'LongURL', '3': 3, '4': 1, '5': 9, '10': 'LongURL'}, {'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`. /// Descriptor for `SiteGetTinyURLResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getSiteTinyURLResultDescriptor = $convert.base64Decode( final $typed_data.Uint8List siteGetTinyURLResponseDescriptor = $convert.base64Decode(
'ChRHZXRTaXRlVGlueVVSTFJlc3VsdBIkCgRLaW5kGAEgASgOMhAuYXBpLlRpbnlVUkxLaW5kUg' 'ChZTaXRlR2V0VGlueVVSTFJlc3BvbnNlEiQKBEtpbmQYASABKA4yEC5hcGkuVGlueVVSTEtpbm'
'RLaW5kEikKBEZpbGUYAiABKAsyFS5hcGkuRmlsZURhdGFSZXNwb25zZVIERmlsZRIYCgdMb25n' 'RSBEtpbmQSKQoERmlsZRgCIAEoCzIVLmFwaS5GaWxlRGF0YVJlc3BvbnNlUgRGaWxlEhgKB0xv'
'VVJMGAMgASgJUgdMb25nVVJM'); 'bmdVUkwYAyABKAlSB0xvbmdVUkwSGAoHUGF5bG9hZBgEIAEoCVIHUGF5bG9hZA==');
@$core.Deprecated('Use getPartnerAppTinyURLRequestDescriptor instead') @$core.Deprecated('Use partnerAppGetTinyURLRequestDescriptor instead')
const GetPartnerAppTinyURLRequest$json = { const PartnerAppGetTinyURLRequest$json = {
'1': 'GetPartnerAppTinyURLRequest', '1': 'PartnerAppGetTinyURLRequest',
'2': [ '2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestPartnerAppHeader', '8': {}, '10': 'Header'}, {'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'}, {'1': 'ID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ID'},
@@ -384,27 +472,28 @@ const GetPartnerAppTinyURLRequest$json = {
'7': {}, '7': {},
}; };
/// Descriptor for `GetPartnerAppTinyURLRequest`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `PartnerAppGetTinyURLRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getPartnerAppTinyURLRequestDescriptor = $convert.base64Decode( final $typed_data.Uint8List partnerAppGetTinyURLRequestDescriptor = $convert.base64Decode(
'ChtHZXRQYXJ0bmVyQXBwVGlueVVSTFJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLlJlcX' 'ChtQYXJ0bmVyQXBwR2V0VGlueVVSTFJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLlJlcX'
'Vlc3RQYXJ0bmVyQXBwSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhcKAklEGAIgASgJQgf6QgRy' 'Vlc3RQYXJ0bmVyQXBwSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEhcKAklEGAIgASgJQgf6QgRy'
'AhABUgJJRDoTkkEQCg7SAQZIZWFkZXLSAQJJRA=='); 'AhABUgJJRDoTkkEQCg7SAQZIZWFkZXLSAQJJRA==');
@$core.Deprecated('Use getPartnerAppTinyURLResultDescriptor instead') @$core.Deprecated('Use partnerAppGetTinyURLResponseDescriptor instead')
const GetPartnerAppTinyURLResult$json = { const PartnerAppGetTinyURLResponse$json = {
'1': 'GetPartnerAppTinyURLResult', '1': 'PartnerAppGetTinyURLResponse',
'2': [ '2': [
{'1': 'Kind', '3': 1, '4': 1, '5': 14, '6': '.api.TinyURLKind', '10': 'Kind'}, {'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': 'File', '3': 2, '4': 1, '5': 11, '6': '.api.FileDataResponse', '10': 'File'},
{'1': 'LongURL', '3': 3, '4': 1, '5': 9, '10': 'LongURL'}, {'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`. /// Descriptor for `PartnerAppGetTinyURLResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getPartnerAppTinyURLResultDescriptor = $convert.base64Decode( final $typed_data.Uint8List partnerAppGetTinyURLResponseDescriptor = $convert.base64Decode(
'ChpHZXRQYXJ0bmVyQXBwVGlueVVSTFJlc3VsdBIkCgRLaW5kGAEgASgOMhAuYXBpLlRpbnlVUk' 'ChxQYXJ0bmVyQXBwR2V0VGlueVVSTFJlc3BvbnNlEiQKBEtpbmQYASABKA4yEC5hcGkuVGlueV'
'xLaW5kUgRLaW5kEikKBEZpbGUYAiABKAsyFS5hcGkuRmlsZURhdGFSZXNwb25zZVIERmlsZRIY' 'VSTEtpbmRSBEtpbmQSKQoERmlsZRgCIAEoCzIVLmFwaS5GaWxlRGF0YVJlc3BvbnNlUgRGaWxl'
'CgdMb25nVVJMGAMgASgJUgdMb25nVVJM'); 'EhgKB0xvbmdVUkwYAyABKAlSB0xvbmdVUkwSGAoHUGF5bG9hZBgEIAEoCVIHUGF5bG9hZA==');
@$core.Deprecated('Use deleteAllTinyURLsRequestDescriptor instead') @$core.Deprecated('Use deleteAllTinyURLsRequestDescriptor instead')
const DeleteAllTinyURLsRequest$json = { const DeleteAllTinyURLsRequest$json = {
@@ -423,12 +512,12 @@ final $typed_data.Uint8List deleteAllTinyURLsRequestDescriptor = $convert.base64
'ASgJQgf6QgRyAhABUg1SZXNvdXJjZVJlZklEOiSSQSEKH9IBDFJlc291cmNlVHlwZdIBDVJlc2' 'ASgJQgf6QgRyAhABUg1SZXNvdXJjZVJlZklEOiSSQSEKH9IBDFJlc291cmNlVHlwZdIBDVJlc2'
'91cmNlUmVmSUQ='); '91cmNlUmVmSUQ=');
@$core.Deprecated('Use deleteAllTinyURLsResultDescriptor instead') @$core.Deprecated('Use deleteAllTinyURLsResponseDescriptor instead')
const DeleteAllTinyURLsResult$json = { const DeleteAllTinyURLsResponse$json = {
'1': 'DeleteAllTinyURLsResult', '1': 'DeleteAllTinyURLsResponse',
}; };
/// Descriptor for `DeleteAllTinyURLsResult`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `DeleteAllTinyURLsResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAllTinyURLsResultDescriptor = $convert.base64Decode( final $typed_data.Uint8List deleteAllTinyURLsResponseDescriptor = $convert.base64Decode(
'ChdEZWxldGVBbGxUaW55VVJMc1Jlc3VsdA=='); 'ChlEZWxldGVBbGxUaW55VVJMc1Jlc3BvbnNl');

View File

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