mirror of
https://github.com/aykhans/slash-e.git
synced 2026-09-23 14:26:49 +00:00
836 lines
29 KiB
Go
836 lines
29 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// versions:
|
|
// protoc-gen-go v1.36.7
|
|
// protoc (unknown)
|
|
// source: api/v1/shortcut_service.proto
|
|
|
|
package apiv1
|
|
|
|
import (
|
|
_ "google.golang.org/genproto/googleapis/api/annotations"
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
emptypb "google.golang.org/protobuf/types/known/emptypb"
|
|
fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb"
|
|
timestamppb "google.golang.org/protobuf/types/known/timestamppb"
|
|
reflect "reflect"
|
|
sync "sync"
|
|
unsafe "unsafe"
|
|
)
|
|
|
|
const (
|
|
// Verify that this generated code is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
)
|
|
|
|
type Shortcut struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
CreatorId int32 `protobuf:"varint,2,opt,name=creator_id,json=creatorId,proto3" json:"creator_id,omitempty"`
|
|
CreatedTime *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=created_time,json=createdTime,proto3" json:"created_time,omitempty"`
|
|
UpdatedTime *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=updated_time,json=updatedTime,proto3" json:"updated_time,omitempty"`
|
|
Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
|
|
Link string `protobuf:"bytes,7,opt,name=link,proto3" json:"link,omitempty"`
|
|
Title string `protobuf:"bytes,8,opt,name=title,proto3" json:"title,omitempty"`
|
|
Tags []string `protobuf:"bytes,9,rep,name=tags,proto3" json:"tags,omitempty"`
|
|
Description string `protobuf:"bytes,10,opt,name=description,proto3" json:"description,omitempty"`
|
|
Visibility Visibility `protobuf:"varint,11,opt,name=visibility,proto3,enum=slash.api.v1.Visibility" json:"visibility,omitempty"`
|
|
ViewCount int32 `protobuf:"varint,12,opt,name=view_count,json=viewCount,proto3" json:"view_count,omitempty"`
|
|
OgMetadata *Shortcut_OpenGraphMetadata `protobuf:"bytes,13,opt,name=og_metadata,json=ogMetadata,proto3" json:"og_metadata,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *Shortcut) Reset() {
|
|
*x = Shortcut{}
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[0]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *Shortcut) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*Shortcut) ProtoMessage() {}
|
|
|
|
func (x *Shortcut) ProtoReflect() protoreflect.Message {
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[0]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use Shortcut.ProtoReflect.Descriptor instead.
|
|
func (*Shortcut) Descriptor() ([]byte, []int) {
|
|
return file_api_v1_shortcut_service_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
func (x *Shortcut) GetId() int32 {
|
|
if x != nil {
|
|
return x.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *Shortcut) GetCreatorId() int32 {
|
|
if x != nil {
|
|
return x.CreatorId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *Shortcut) GetCreatedTime() *timestamppb.Timestamp {
|
|
if x != nil {
|
|
return x.CreatedTime
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *Shortcut) GetUpdatedTime() *timestamppb.Timestamp {
|
|
if x != nil {
|
|
return x.UpdatedTime
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *Shortcut) GetName() string {
|
|
if x != nil {
|
|
return x.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Shortcut) GetLink() string {
|
|
if x != nil {
|
|
return x.Link
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Shortcut) GetTitle() string {
|
|
if x != nil {
|
|
return x.Title
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Shortcut) GetTags() []string {
|
|
if x != nil {
|
|
return x.Tags
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *Shortcut) GetDescription() string {
|
|
if x != nil {
|
|
return x.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Shortcut) GetVisibility() Visibility {
|
|
if x != nil {
|
|
return x.Visibility
|
|
}
|
|
return Visibility_VISIBILITY_UNSPECIFIED
|
|
}
|
|
|
|
func (x *Shortcut) GetViewCount() int32 {
|
|
if x != nil {
|
|
return x.ViewCount
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *Shortcut) GetOgMetadata() *Shortcut_OpenGraphMetadata {
|
|
if x != nil {
|
|
return x.OgMetadata
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ListShortcutsRequest struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *ListShortcutsRequest) Reset() {
|
|
*x = ListShortcutsRequest{}
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[1]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *ListShortcutsRequest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*ListShortcutsRequest) ProtoMessage() {}
|
|
|
|
func (x *ListShortcutsRequest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[1]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use ListShortcutsRequest.ProtoReflect.Descriptor instead.
|
|
func (*ListShortcutsRequest) Descriptor() ([]byte, []int) {
|
|
return file_api_v1_shortcut_service_proto_rawDescGZIP(), []int{1}
|
|
}
|
|
|
|
type ListShortcutsResponse struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Shortcuts []*Shortcut `protobuf:"bytes,1,rep,name=shortcuts,proto3" json:"shortcuts,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *ListShortcutsResponse) Reset() {
|
|
*x = ListShortcutsResponse{}
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[2]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *ListShortcutsResponse) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*ListShortcutsResponse) ProtoMessage() {}
|
|
|
|
func (x *ListShortcutsResponse) ProtoReflect() protoreflect.Message {
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[2]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use ListShortcutsResponse.ProtoReflect.Descriptor instead.
|
|
func (*ListShortcutsResponse) Descriptor() ([]byte, []int) {
|
|
return file_api_v1_shortcut_service_proto_rawDescGZIP(), []int{2}
|
|
}
|
|
|
|
func (x *ListShortcutsResponse) GetShortcuts() []*Shortcut {
|
|
if x != nil {
|
|
return x.Shortcuts
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type GetShortcutRequest struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *GetShortcutRequest) Reset() {
|
|
*x = GetShortcutRequest{}
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[3]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *GetShortcutRequest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*GetShortcutRequest) ProtoMessage() {}
|
|
|
|
func (x *GetShortcutRequest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[3]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use GetShortcutRequest.ProtoReflect.Descriptor instead.
|
|
func (*GetShortcutRequest) Descriptor() ([]byte, []int) {
|
|
return file_api_v1_shortcut_service_proto_rawDescGZIP(), []int{3}
|
|
}
|
|
|
|
func (x *GetShortcutRequest) GetId() int32 {
|
|
if x != nil {
|
|
return x.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type GetShortcutByNameRequest struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *GetShortcutByNameRequest) Reset() {
|
|
*x = GetShortcutByNameRequest{}
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[4]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *GetShortcutByNameRequest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*GetShortcutByNameRequest) ProtoMessage() {}
|
|
|
|
func (x *GetShortcutByNameRequest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[4]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use GetShortcutByNameRequest.ProtoReflect.Descriptor instead.
|
|
func (*GetShortcutByNameRequest) Descriptor() ([]byte, []int) {
|
|
return file_api_v1_shortcut_service_proto_rawDescGZIP(), []int{4}
|
|
}
|
|
|
|
func (x *GetShortcutByNameRequest) GetName() string {
|
|
if x != nil {
|
|
return x.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type CreateShortcutRequest struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Shortcut *Shortcut `protobuf:"bytes,1,opt,name=shortcut,proto3" json:"shortcut,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *CreateShortcutRequest) Reset() {
|
|
*x = CreateShortcutRequest{}
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[5]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *CreateShortcutRequest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*CreateShortcutRequest) ProtoMessage() {}
|
|
|
|
func (x *CreateShortcutRequest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[5]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use CreateShortcutRequest.ProtoReflect.Descriptor instead.
|
|
func (*CreateShortcutRequest) Descriptor() ([]byte, []int) {
|
|
return file_api_v1_shortcut_service_proto_rawDescGZIP(), []int{5}
|
|
}
|
|
|
|
func (x *CreateShortcutRequest) GetShortcut() *Shortcut {
|
|
if x != nil {
|
|
return x.Shortcut
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UpdateShortcutRequest struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Shortcut *Shortcut `protobuf:"bytes,1,opt,name=shortcut,proto3" json:"shortcut,omitempty"`
|
|
UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *UpdateShortcutRequest) Reset() {
|
|
*x = UpdateShortcutRequest{}
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[6]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *UpdateShortcutRequest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*UpdateShortcutRequest) ProtoMessage() {}
|
|
|
|
func (x *UpdateShortcutRequest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[6]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use UpdateShortcutRequest.ProtoReflect.Descriptor instead.
|
|
func (*UpdateShortcutRequest) Descriptor() ([]byte, []int) {
|
|
return file_api_v1_shortcut_service_proto_rawDescGZIP(), []int{6}
|
|
}
|
|
|
|
func (x *UpdateShortcutRequest) GetShortcut() *Shortcut {
|
|
if x != nil {
|
|
return x.Shortcut
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *UpdateShortcutRequest) GetUpdateMask() *fieldmaskpb.FieldMask {
|
|
if x != nil {
|
|
return x.UpdateMask
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DeleteShortcutRequest struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *DeleteShortcutRequest) Reset() {
|
|
*x = DeleteShortcutRequest{}
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[7]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *DeleteShortcutRequest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*DeleteShortcutRequest) ProtoMessage() {}
|
|
|
|
func (x *DeleteShortcutRequest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[7]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use DeleteShortcutRequest.ProtoReflect.Descriptor instead.
|
|
func (*DeleteShortcutRequest) Descriptor() ([]byte, []int) {
|
|
return file_api_v1_shortcut_service_proto_rawDescGZIP(), []int{7}
|
|
}
|
|
|
|
func (x *DeleteShortcutRequest) GetId() int32 {
|
|
if x != nil {
|
|
return x.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type GetShortcutAnalyticsRequest struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *GetShortcutAnalyticsRequest) Reset() {
|
|
*x = GetShortcutAnalyticsRequest{}
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[8]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *GetShortcutAnalyticsRequest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*GetShortcutAnalyticsRequest) ProtoMessage() {}
|
|
|
|
func (x *GetShortcutAnalyticsRequest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[8]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use GetShortcutAnalyticsRequest.ProtoReflect.Descriptor instead.
|
|
func (*GetShortcutAnalyticsRequest) Descriptor() ([]byte, []int) {
|
|
return file_api_v1_shortcut_service_proto_rawDescGZIP(), []int{8}
|
|
}
|
|
|
|
func (x *GetShortcutAnalyticsRequest) GetId() int32 {
|
|
if x != nil {
|
|
return x.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type GetShortcutAnalyticsResponse struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
References []*GetShortcutAnalyticsResponse_AnalyticsItem `protobuf:"bytes,1,rep,name=references,proto3" json:"references,omitempty"`
|
|
Devices []*GetShortcutAnalyticsResponse_AnalyticsItem `protobuf:"bytes,2,rep,name=devices,proto3" json:"devices,omitempty"`
|
|
Browsers []*GetShortcutAnalyticsResponse_AnalyticsItem `protobuf:"bytes,3,rep,name=browsers,proto3" json:"browsers,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *GetShortcutAnalyticsResponse) Reset() {
|
|
*x = GetShortcutAnalyticsResponse{}
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[9]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *GetShortcutAnalyticsResponse) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*GetShortcutAnalyticsResponse) ProtoMessage() {}
|
|
|
|
func (x *GetShortcutAnalyticsResponse) ProtoReflect() protoreflect.Message {
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[9]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use GetShortcutAnalyticsResponse.ProtoReflect.Descriptor instead.
|
|
func (*GetShortcutAnalyticsResponse) Descriptor() ([]byte, []int) {
|
|
return file_api_v1_shortcut_service_proto_rawDescGZIP(), []int{9}
|
|
}
|
|
|
|
func (x *GetShortcutAnalyticsResponse) GetReferences() []*GetShortcutAnalyticsResponse_AnalyticsItem {
|
|
if x != nil {
|
|
return x.References
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *GetShortcutAnalyticsResponse) GetDevices() []*GetShortcutAnalyticsResponse_AnalyticsItem {
|
|
if x != nil {
|
|
return x.Devices
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *GetShortcutAnalyticsResponse) GetBrowsers() []*GetShortcutAnalyticsResponse_AnalyticsItem {
|
|
if x != nil {
|
|
return x.Browsers
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type Shortcut_OpenGraphMetadata struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
|
|
Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
|
|
Image string `protobuf:"bytes,3,opt,name=image,proto3" json:"image,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *Shortcut_OpenGraphMetadata) Reset() {
|
|
*x = Shortcut_OpenGraphMetadata{}
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[10]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *Shortcut_OpenGraphMetadata) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*Shortcut_OpenGraphMetadata) ProtoMessage() {}
|
|
|
|
func (x *Shortcut_OpenGraphMetadata) ProtoReflect() protoreflect.Message {
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[10]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use Shortcut_OpenGraphMetadata.ProtoReflect.Descriptor instead.
|
|
func (*Shortcut_OpenGraphMetadata) Descriptor() ([]byte, []int) {
|
|
return file_api_v1_shortcut_service_proto_rawDescGZIP(), []int{0, 0}
|
|
}
|
|
|
|
func (x *Shortcut_OpenGraphMetadata) GetTitle() string {
|
|
if x != nil {
|
|
return x.Title
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Shortcut_OpenGraphMetadata) GetDescription() string {
|
|
if x != nil {
|
|
return x.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Shortcut_OpenGraphMetadata) GetImage() string {
|
|
if x != nil {
|
|
return x.Image
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type GetShortcutAnalyticsResponse_AnalyticsItem struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
Count int32 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *GetShortcutAnalyticsResponse_AnalyticsItem) Reset() {
|
|
*x = GetShortcutAnalyticsResponse_AnalyticsItem{}
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[11]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *GetShortcutAnalyticsResponse_AnalyticsItem) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*GetShortcutAnalyticsResponse_AnalyticsItem) ProtoMessage() {}
|
|
|
|
func (x *GetShortcutAnalyticsResponse_AnalyticsItem) ProtoReflect() protoreflect.Message {
|
|
mi := &file_api_v1_shortcut_service_proto_msgTypes[11]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use GetShortcutAnalyticsResponse_AnalyticsItem.ProtoReflect.Descriptor instead.
|
|
func (*GetShortcutAnalyticsResponse_AnalyticsItem) Descriptor() ([]byte, []int) {
|
|
return file_api_v1_shortcut_service_proto_rawDescGZIP(), []int{9, 0}
|
|
}
|
|
|
|
func (x *GetShortcutAnalyticsResponse_AnalyticsItem) GetName() string {
|
|
if x != nil {
|
|
return x.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *GetShortcutAnalyticsResponse_AnalyticsItem) GetCount() int32 {
|
|
if x != nil {
|
|
return x.Count
|
|
}
|
|
return 0
|
|
}
|
|
|
|
var File_api_v1_shortcut_service_proto protoreflect.FileDescriptor
|
|
|
|
const file_api_v1_shortcut_service_proto_rawDesc = "" +
|
|
"\n" +
|
|
"\x1dapi/v1/shortcut_service.proto\x12\fslash.api.v1\x1a\x13api/v1/common.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xb2\x04\n" +
|
|
"\bShortcut\x12\x0e\n" +
|
|
"\x02id\x18\x01 \x01(\x05R\x02id\x12\x1d\n" +
|
|
"\n" +
|
|
"creator_id\x18\x02 \x01(\x05R\tcreatorId\x12=\n" +
|
|
"\fcreated_time\x18\x03 \x01(\v2\x1a.google.protobuf.TimestampR\vcreatedTime\x12=\n" +
|
|
"\fupdated_time\x18\x04 \x01(\v2\x1a.google.protobuf.TimestampR\vupdatedTime\x12\x12\n" +
|
|
"\x04name\x18\x06 \x01(\tR\x04name\x12\x12\n" +
|
|
"\x04link\x18\a \x01(\tR\x04link\x12\x14\n" +
|
|
"\x05title\x18\b \x01(\tR\x05title\x12\x12\n" +
|
|
"\x04tags\x18\t \x03(\tR\x04tags\x12 \n" +
|
|
"\vdescription\x18\n" +
|
|
" \x01(\tR\vdescription\x128\n" +
|
|
"\n" +
|
|
"visibility\x18\v \x01(\x0e2\x18.slash.api.v1.VisibilityR\n" +
|
|
"visibility\x12\x1d\n" +
|
|
"\n" +
|
|
"view_count\x18\f \x01(\x05R\tviewCount\x12I\n" +
|
|
"\vog_metadata\x18\r \x01(\v2(.slash.api.v1.Shortcut.OpenGraphMetadataR\n" +
|
|
"ogMetadata\x1aa\n" +
|
|
"\x11OpenGraphMetadata\x12\x14\n" +
|
|
"\x05title\x18\x01 \x01(\tR\x05title\x12 \n" +
|
|
"\vdescription\x18\x02 \x01(\tR\vdescription\x12\x14\n" +
|
|
"\x05image\x18\x03 \x01(\tR\x05image\"\x16\n" +
|
|
"\x14ListShortcutsRequest\"M\n" +
|
|
"\x15ListShortcutsResponse\x124\n" +
|
|
"\tshortcuts\x18\x01 \x03(\v2\x16.slash.api.v1.ShortcutR\tshortcuts\"$\n" +
|
|
"\x12GetShortcutRequest\x12\x0e\n" +
|
|
"\x02id\x18\x01 \x01(\x05R\x02id\".\n" +
|
|
"\x18GetShortcutByNameRequest\x12\x12\n" +
|
|
"\x04name\x18\x01 \x01(\tR\x04name\"K\n" +
|
|
"\x15CreateShortcutRequest\x122\n" +
|
|
"\bshortcut\x18\x01 \x01(\v2\x16.slash.api.v1.ShortcutR\bshortcut\"\x88\x01\n" +
|
|
"\x15UpdateShortcutRequest\x122\n" +
|
|
"\bshortcut\x18\x01 \x01(\v2\x16.slash.api.v1.ShortcutR\bshortcut\x12;\n" +
|
|
"\vupdate_mask\x18\x02 \x01(\v2\x1a.google.protobuf.FieldMaskR\n" +
|
|
"updateMask\"'\n" +
|
|
"\x15DeleteShortcutRequest\x12\x0e\n" +
|
|
"\x02id\x18\x01 \x01(\x05R\x02id\"-\n" +
|
|
"\x1bGetShortcutAnalyticsRequest\x12\x0e\n" +
|
|
"\x02id\x18\x01 \x01(\x05R\x02id\"\xdd\x02\n" +
|
|
"\x1cGetShortcutAnalyticsResponse\x12X\n" +
|
|
"\n" +
|
|
"references\x18\x01 \x03(\v28.slash.api.v1.GetShortcutAnalyticsResponse.AnalyticsItemR\n" +
|
|
"references\x12R\n" +
|
|
"\adevices\x18\x02 \x03(\v28.slash.api.v1.GetShortcutAnalyticsResponse.AnalyticsItemR\adevices\x12T\n" +
|
|
"\bbrowsers\x18\x03 \x03(\v28.slash.api.v1.GetShortcutAnalyticsResponse.AnalyticsItemR\bbrowsers\x1a9\n" +
|
|
"\rAnalyticsItem\x12\x12\n" +
|
|
"\x04name\x18\x01 \x01(\tR\x04name\x12\x14\n" +
|
|
"\x05count\x18\x02 \x01(\x05R\x05count2\xec\x06\n" +
|
|
"\x0fShortcutService\x12s\n" +
|
|
"\rListShortcuts\x12\".slash.api.v1.ListShortcutsRequest\x1a#.slash.api.v1.ListShortcutsResponse\"\x19\x82\xd3\xe4\x93\x02\x13\x12\x11/api/v1/shortcuts\x12l\n" +
|
|
"\vGetShortcut\x12 .slash.api.v1.GetShortcutRequest\x1a\x16.slash.api.v1.Shortcut\"#\xdaA\x02id\x82\xd3\xe4\x93\x02\x18\x12\x16/api/v1/shortcuts/{id}\x12U\n" +
|
|
"\x11GetShortcutByName\x12&.slash.api.v1.GetShortcutByNameRequest\x1a\x16.slash.api.v1.Shortcut\"\x00\x12r\n" +
|
|
"\x0eCreateShortcut\x12#.slash.api.v1.CreateShortcutRequest\x1a\x16.slash.api.v1.Shortcut\"#\x82\xd3\xe4\x93\x02\x1d:\bshortcut\"\x11/api/v1/shortcuts\x12\x97\x01\n" +
|
|
"\x0eUpdateShortcut\x12#.slash.api.v1.UpdateShortcutRequest\x1a\x16.slash.api.v1.Shortcut\"H\xdaA\x14shortcut,update_mask\x82\xd3\xe4\x93\x02+:\bshortcut\x1a\x1f/api/v1/shortcuts/{shortcut.id}\x12r\n" +
|
|
"\x0eDeleteShortcut\x12#.slash.api.v1.DeleteShortcutRequest\x1a\x16.google.protobuf.Empty\"#\xdaA\x02id\x82\xd3\xe4\x93\x02\x18*\x16/api/v1/shortcuts/{id}\x12\x9c\x01\n" +
|
|
"\x14GetShortcutAnalytics\x12).slash.api.v1.GetShortcutAnalyticsRequest\x1a*.slash.api.v1.GetShortcutAnalyticsResponse\"-\xdaA\x02id\x82\xd3\xe4\x93\x02\"\x12 /api/v1/shortcuts/{id}/analyticsB\xb2\x01\n" +
|
|
"\x10com.slash.api.v1B\x14ShortcutServiceProtoP\x01Z6github.com/yourselfhosted/slash/proto/gen/api/v1;apiv1\xa2\x02\x03SAX\xaa\x02\fSlash.Api.V1\xca\x02\fSlash\\Api\\V1\xe2\x02\x18Slash\\Api\\V1\\GPBMetadata\xea\x02\x0eSlash::Api::V1b\x06proto3"
|
|
|
|
var (
|
|
file_api_v1_shortcut_service_proto_rawDescOnce sync.Once
|
|
file_api_v1_shortcut_service_proto_rawDescData []byte
|
|
)
|
|
|
|
func file_api_v1_shortcut_service_proto_rawDescGZIP() []byte {
|
|
file_api_v1_shortcut_service_proto_rawDescOnce.Do(func() {
|
|
file_api_v1_shortcut_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_api_v1_shortcut_service_proto_rawDesc), len(file_api_v1_shortcut_service_proto_rawDesc)))
|
|
})
|
|
return file_api_v1_shortcut_service_proto_rawDescData
|
|
}
|
|
|
|
var file_api_v1_shortcut_service_proto_msgTypes = make([]protoimpl.MessageInfo, 12)
|
|
var file_api_v1_shortcut_service_proto_goTypes = []any{
|
|
(*Shortcut)(nil), // 0: slash.api.v1.Shortcut
|
|
(*ListShortcutsRequest)(nil), // 1: slash.api.v1.ListShortcutsRequest
|
|
(*ListShortcutsResponse)(nil), // 2: slash.api.v1.ListShortcutsResponse
|
|
(*GetShortcutRequest)(nil), // 3: slash.api.v1.GetShortcutRequest
|
|
(*GetShortcutByNameRequest)(nil), // 4: slash.api.v1.GetShortcutByNameRequest
|
|
(*CreateShortcutRequest)(nil), // 5: slash.api.v1.CreateShortcutRequest
|
|
(*UpdateShortcutRequest)(nil), // 6: slash.api.v1.UpdateShortcutRequest
|
|
(*DeleteShortcutRequest)(nil), // 7: slash.api.v1.DeleteShortcutRequest
|
|
(*GetShortcutAnalyticsRequest)(nil), // 8: slash.api.v1.GetShortcutAnalyticsRequest
|
|
(*GetShortcutAnalyticsResponse)(nil), // 9: slash.api.v1.GetShortcutAnalyticsResponse
|
|
(*Shortcut_OpenGraphMetadata)(nil), // 10: slash.api.v1.Shortcut.OpenGraphMetadata
|
|
(*GetShortcutAnalyticsResponse_AnalyticsItem)(nil), // 11: slash.api.v1.GetShortcutAnalyticsResponse.AnalyticsItem
|
|
(*timestamppb.Timestamp)(nil), // 12: google.protobuf.Timestamp
|
|
(Visibility)(0), // 13: slash.api.v1.Visibility
|
|
(*fieldmaskpb.FieldMask)(nil), // 14: google.protobuf.FieldMask
|
|
(*emptypb.Empty)(nil), // 15: google.protobuf.Empty
|
|
}
|
|
var file_api_v1_shortcut_service_proto_depIdxs = []int32{
|
|
12, // 0: slash.api.v1.Shortcut.created_time:type_name -> google.protobuf.Timestamp
|
|
12, // 1: slash.api.v1.Shortcut.updated_time:type_name -> google.protobuf.Timestamp
|
|
13, // 2: slash.api.v1.Shortcut.visibility:type_name -> slash.api.v1.Visibility
|
|
10, // 3: slash.api.v1.Shortcut.og_metadata:type_name -> slash.api.v1.Shortcut.OpenGraphMetadata
|
|
0, // 4: slash.api.v1.ListShortcutsResponse.shortcuts:type_name -> slash.api.v1.Shortcut
|
|
0, // 5: slash.api.v1.CreateShortcutRequest.shortcut:type_name -> slash.api.v1.Shortcut
|
|
0, // 6: slash.api.v1.UpdateShortcutRequest.shortcut:type_name -> slash.api.v1.Shortcut
|
|
14, // 7: slash.api.v1.UpdateShortcutRequest.update_mask:type_name -> google.protobuf.FieldMask
|
|
11, // 8: slash.api.v1.GetShortcutAnalyticsResponse.references:type_name -> slash.api.v1.GetShortcutAnalyticsResponse.AnalyticsItem
|
|
11, // 9: slash.api.v1.GetShortcutAnalyticsResponse.devices:type_name -> slash.api.v1.GetShortcutAnalyticsResponse.AnalyticsItem
|
|
11, // 10: slash.api.v1.GetShortcutAnalyticsResponse.browsers:type_name -> slash.api.v1.GetShortcutAnalyticsResponse.AnalyticsItem
|
|
1, // 11: slash.api.v1.ShortcutService.ListShortcuts:input_type -> slash.api.v1.ListShortcutsRequest
|
|
3, // 12: slash.api.v1.ShortcutService.GetShortcut:input_type -> slash.api.v1.GetShortcutRequest
|
|
4, // 13: slash.api.v1.ShortcutService.GetShortcutByName:input_type -> slash.api.v1.GetShortcutByNameRequest
|
|
5, // 14: slash.api.v1.ShortcutService.CreateShortcut:input_type -> slash.api.v1.CreateShortcutRequest
|
|
6, // 15: slash.api.v1.ShortcutService.UpdateShortcut:input_type -> slash.api.v1.UpdateShortcutRequest
|
|
7, // 16: slash.api.v1.ShortcutService.DeleteShortcut:input_type -> slash.api.v1.DeleteShortcutRequest
|
|
8, // 17: slash.api.v1.ShortcutService.GetShortcutAnalytics:input_type -> slash.api.v1.GetShortcutAnalyticsRequest
|
|
2, // 18: slash.api.v1.ShortcutService.ListShortcuts:output_type -> slash.api.v1.ListShortcutsResponse
|
|
0, // 19: slash.api.v1.ShortcutService.GetShortcut:output_type -> slash.api.v1.Shortcut
|
|
0, // 20: slash.api.v1.ShortcutService.GetShortcutByName:output_type -> slash.api.v1.Shortcut
|
|
0, // 21: slash.api.v1.ShortcutService.CreateShortcut:output_type -> slash.api.v1.Shortcut
|
|
0, // 22: slash.api.v1.ShortcutService.UpdateShortcut:output_type -> slash.api.v1.Shortcut
|
|
15, // 23: slash.api.v1.ShortcutService.DeleteShortcut:output_type -> google.protobuf.Empty
|
|
9, // 24: slash.api.v1.ShortcutService.GetShortcutAnalytics:output_type -> slash.api.v1.GetShortcutAnalyticsResponse
|
|
18, // [18:25] is the sub-list for method output_type
|
|
11, // [11:18] is the sub-list for method input_type
|
|
11, // [11:11] is the sub-list for extension type_name
|
|
11, // [11:11] is the sub-list for extension extendee
|
|
0, // [0:11] is the sub-list for field type_name
|
|
}
|
|
|
|
func init() { file_api_v1_shortcut_service_proto_init() }
|
|
func file_api_v1_shortcut_service_proto_init() {
|
|
if File_api_v1_shortcut_service_proto != nil {
|
|
return
|
|
}
|
|
file_api_v1_common_proto_init()
|
|
type x struct{}
|
|
out := protoimpl.TypeBuilder{
|
|
File: protoimpl.DescBuilder{
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_api_v1_shortcut_service_proto_rawDesc), len(file_api_v1_shortcut_service_proto_rawDesc)),
|
|
NumEnums: 0,
|
|
NumMessages: 12,
|
|
NumExtensions: 0,
|
|
NumServices: 1,
|
|
},
|
|
GoTypes: file_api_v1_shortcut_service_proto_goTypes,
|
|
DependencyIndexes: file_api_v1_shortcut_service_proto_depIdxs,
|
|
MessageInfos: file_api_v1_shortcut_service_proto_msgTypes,
|
|
}.Build()
|
|
File_api_v1_shortcut_service_proto = out.File
|
|
file_api_v1_shortcut_service_proto_goTypes = nil
|
|
file_api_v1_shortcut_service_proto_depIdxs = nil
|
|
}
|