From b5a288c3de5f5036cc67aa0e4248b2b6a8860cf8 Mon Sep 17 00:00:00 2001 From: Alex Dunmow Date: Tue, 7 Jul 2026 23:36:17 +0800 Subject: [PATCH] =?UTF-8?q?feat(content)!:=20PublishedBlockConfigs=20capab?= =?UTF-8?q?ility=20=E2=80=94=20published=20block=20content=20crosses=20the?= =?UTF-8?q?=20ABI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds content.published_block_configs: the host returns the stored content JSON of every block with a given key inside currently published page snapshots. Restores server-authoritative per-block enforcement for sandboxed guests (calcomblock's captcha requirement was inert under wasm — blockConfig hardcoded nil because no capability exposed published block content). Breaking: content.Content gains a method; the cms adapter implements it in the paired bump. Co-Authored-By: Claude Fable 5 --- abi/proto/v1/capability.proto | 12 + abi/v1/capability.pb.go | 1212 ++++++++++++++++-------------- content/content.go | 6 + plugin/wasmguest/caps/content.go | 16 + 4 files changed, 689 insertions(+), 557 deletions(-) diff --git a/abi/proto/v1/capability.proto b/abi/proto/v1/capability.proto index ae387e5..1905b47 100644 --- a/abi/proto/v1/capability.proto +++ b/abi/proto/v1/capability.proto @@ -82,6 +82,18 @@ message PageInfo { string title = 3; } +// ContentPublishedBlockConfigsRequest asks the host for the stored content +// (config JSON) of every block with the given key inside a CURRENTLY +// published page snapshot. Lets a guest resolve server-authoritative +// per-block settings (e.g. a captcha requirement) it cannot query itself. +message ContentPublishedBlockConfigsRequest { + string block_key = 1; +} + +message ContentPublishedBlockConfigsResponse { + repeated bytes configs = 1; // each entry: one block's content as JSON +} + message ContentGetPostRequest { string slug = 1; } diff --git a/abi/v1/capability.pb.go b/abi/v1/capability.pb.go index 8baaa3c..a4a9097 100644 --- a/abi/v1/capability.pb.go +++ b/abi/v1/capability.pb.go @@ -485,6 +485,98 @@ func (x *PageInfo) GetTitle() string { return "" } +// ContentPublishedBlockConfigsRequest asks the host for the stored content +// (config JSON) of every block with the given key inside a CURRENTLY +// published page snapshot. Lets a guest resolve server-authoritative +// per-block settings (e.g. a captcha requirement) it cannot query itself. +type ContentPublishedBlockConfigsRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + BlockKey string `protobuf:"bytes,1,opt,name=block_key,json=blockKey,proto3" json:"block_key,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ContentPublishedBlockConfigsRequest) Reset() { + *x = ContentPublishedBlockConfigsRequest{} + mi := &file_v1_capability_proto_msgTypes[8] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ContentPublishedBlockConfigsRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ContentPublishedBlockConfigsRequest) ProtoMessage() {} + +func (x *ContentPublishedBlockConfigsRequest) ProtoReflect() protoreflect.Message { + mi := &file_v1_capability_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 ContentPublishedBlockConfigsRequest.ProtoReflect.Descriptor instead. +func (*ContentPublishedBlockConfigsRequest) Descriptor() ([]byte, []int) { + return file_v1_capability_proto_rawDescGZIP(), []int{8} +} + +func (x *ContentPublishedBlockConfigsRequest) GetBlockKey() string { + if x != nil { + return x.BlockKey + } + return "" +} + +type ContentPublishedBlockConfigsResponse struct { + state protoimpl.MessageState `protogen:"open.v1"` + Configs [][]byte `protobuf:"bytes,1,rep,name=configs,proto3" json:"configs,omitempty"` // each entry: one block's content as JSON + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ContentPublishedBlockConfigsResponse) Reset() { + *x = ContentPublishedBlockConfigsResponse{} + mi := &file_v1_capability_proto_msgTypes[9] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ContentPublishedBlockConfigsResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ContentPublishedBlockConfigsResponse) ProtoMessage() {} + +func (x *ContentPublishedBlockConfigsResponse) ProtoReflect() protoreflect.Message { + mi := &file_v1_capability_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 ContentPublishedBlockConfigsResponse.ProtoReflect.Descriptor instead. +func (*ContentPublishedBlockConfigsResponse) Descriptor() ([]byte, []int) { + return file_v1_capability_proto_rawDescGZIP(), []int{9} +} + +func (x *ContentPublishedBlockConfigsResponse) GetConfigs() [][]byte { + if x != nil { + return x.Configs + } + return nil +} + type ContentGetPostRequest struct { state protoimpl.MessageState `protogen:"open.v1"` Slug string `protobuf:"bytes,1,opt,name=slug,proto3" json:"slug,omitempty"` @@ -494,7 +586,7 @@ type ContentGetPostRequest struct { func (x *ContentGetPostRequest) Reset() { *x = ContentGetPostRequest{} - mi := &file_v1_capability_proto_msgTypes[8] + mi := &file_v1_capability_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -506,7 +598,7 @@ func (x *ContentGetPostRequest) String() string { func (*ContentGetPostRequest) ProtoMessage() {} func (x *ContentGetPostRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[8] + mi := &file_v1_capability_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -519,7 +611,7 @@ func (x *ContentGetPostRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentGetPostRequest.ProtoReflect.Descriptor instead. func (*ContentGetPostRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{8} + return file_v1_capability_proto_rawDescGZIP(), []int{10} } func (x *ContentGetPostRequest) GetSlug() string { @@ -538,7 +630,7 @@ type ContentGetPostResponse struct { func (x *ContentGetPostResponse) Reset() { *x = ContentGetPostResponse{} - mi := &file_v1_capability_proto_msgTypes[9] + mi := &file_v1_capability_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -550,7 +642,7 @@ func (x *ContentGetPostResponse) String() string { func (*ContentGetPostResponse) ProtoMessage() {} func (x *ContentGetPostResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[9] + mi := &file_v1_capability_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -563,7 +655,7 @@ func (x *ContentGetPostResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentGetPostResponse.ProtoReflect.Descriptor instead. func (*ContentGetPostResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{9} + return file_v1_capability_proto_rawDescGZIP(), []int{11} } func (x *ContentGetPostResponse) GetPost() *PostInfo { @@ -592,7 +684,7 @@ type PostInfo struct { func (x *PostInfo) Reset() { *x = PostInfo{} - mi := &file_v1_capability_proto_msgTypes[10] + mi := &file_v1_capability_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -604,7 +696,7 @@ func (x *PostInfo) String() string { func (*PostInfo) ProtoMessage() {} func (x *PostInfo) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[10] + mi := &file_v1_capability_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -617,7 +709,7 @@ func (x *PostInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use PostInfo.ProtoReflect.Descriptor instead. func (*PostInfo) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{10} + return file_v1_capability_proto_rawDescGZIP(), []int{12} } func (x *PostInfo) GetId() string { @@ -704,7 +796,7 @@ type ContentListPostsRequest struct { func (x *ContentListPostsRequest) Reset() { *x = ContentListPostsRequest{} - mi := &file_v1_capability_proto_msgTypes[11] + mi := &file_v1_capability_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -716,7 +808,7 @@ func (x *ContentListPostsRequest) String() string { func (*ContentListPostsRequest) ProtoMessage() {} func (x *ContentListPostsRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[11] + mi := &file_v1_capability_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -729,7 +821,7 @@ func (x *ContentListPostsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentListPostsRequest.ProtoReflect.Descriptor instead. func (*ContentListPostsRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{11} + return file_v1_capability_proto_rawDescGZIP(), []int{13} } func (x *ContentListPostsRequest) GetLimit() int32 { @@ -783,7 +875,7 @@ type ContentListPostsResponse struct { func (x *ContentListPostsResponse) Reset() { *x = ContentListPostsResponse{} - mi := &file_v1_capability_proto_msgTypes[12] + mi := &file_v1_capability_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -795,7 +887,7 @@ func (x *ContentListPostsResponse) String() string { func (*ContentListPostsResponse) ProtoMessage() {} func (x *ContentListPostsResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[12] + mi := &file_v1_capability_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -808,7 +900,7 @@ func (x *ContentListPostsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentListPostsResponse.ProtoReflect.Descriptor instead. func (*ContentListPostsResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{12} + return file_v1_capability_proto_rawDescGZIP(), []int{14} } func (x *ContentListPostsResponse) GetPosts() []*PostInfo { @@ -827,7 +919,7 @@ type ContentSlugifyRequest struct { func (x *ContentSlugifyRequest) Reset() { *x = ContentSlugifyRequest{} - mi := &file_v1_capability_proto_msgTypes[13] + mi := &file_v1_capability_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -839,7 +931,7 @@ func (x *ContentSlugifyRequest) String() string { func (*ContentSlugifyRequest) ProtoMessage() {} func (x *ContentSlugifyRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[13] + mi := &file_v1_capability_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -852,7 +944,7 @@ func (x *ContentSlugifyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentSlugifyRequest.ProtoReflect.Descriptor instead. func (*ContentSlugifyRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{13} + return file_v1_capability_proto_rawDescGZIP(), []int{15} } func (x *ContentSlugifyRequest) GetText() string { @@ -871,7 +963,7 @@ type ContentSlugifyResponse struct { func (x *ContentSlugifyResponse) Reset() { *x = ContentSlugifyResponse{} - mi := &file_v1_capability_proto_msgTypes[14] + mi := &file_v1_capability_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -883,7 +975,7 @@ func (x *ContentSlugifyResponse) String() string { func (*ContentSlugifyResponse) ProtoMessage() {} func (x *ContentSlugifyResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[14] + mi := &file_v1_capability_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -896,7 +988,7 @@ func (x *ContentSlugifyResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentSlugifyResponse.ProtoReflect.Descriptor instead. func (*ContentSlugifyResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{14} + return file_v1_capability_proto_rawDescGZIP(), []int{16} } func (x *ContentSlugifyResponse) GetSlug() string { @@ -916,7 +1008,7 @@ type ContentBlockNoteToHtmlRequest struct { func (x *ContentBlockNoteToHtmlRequest) Reset() { *x = ContentBlockNoteToHtmlRequest{} - mi := &file_v1_capability_proto_msgTypes[15] + mi := &file_v1_capability_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -928,7 +1020,7 @@ func (x *ContentBlockNoteToHtmlRequest) String() string { func (*ContentBlockNoteToHtmlRequest) ProtoMessage() {} func (x *ContentBlockNoteToHtmlRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[15] + mi := &file_v1_capability_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -941,7 +1033,7 @@ func (x *ContentBlockNoteToHtmlRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentBlockNoteToHtmlRequest.ProtoReflect.Descriptor instead. func (*ContentBlockNoteToHtmlRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{15} + return file_v1_capability_proto_rawDescGZIP(), []int{17} } func (x *ContentBlockNoteToHtmlRequest) GetDocJson() []byte { @@ -960,7 +1052,7 @@ type ContentBlockNoteToHtmlResponse struct { func (x *ContentBlockNoteToHtmlResponse) Reset() { *x = ContentBlockNoteToHtmlResponse{} - mi := &file_v1_capability_proto_msgTypes[16] + mi := &file_v1_capability_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -972,7 +1064,7 @@ func (x *ContentBlockNoteToHtmlResponse) String() string { func (*ContentBlockNoteToHtmlResponse) ProtoMessage() {} func (x *ContentBlockNoteToHtmlResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[16] + mi := &file_v1_capability_proto_msgTypes[18] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -985,7 +1077,7 @@ func (x *ContentBlockNoteToHtmlResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentBlockNoteToHtmlResponse.ProtoReflect.Descriptor instead. func (*ContentBlockNoteToHtmlResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{16} + return file_v1_capability_proto_rawDescGZIP(), []int{18} } func (x *ContentBlockNoteToHtmlResponse) GetHtml() string { @@ -1005,7 +1097,7 @@ type ContentGenerateExcerptRequest struct { func (x *ContentGenerateExcerptRequest) Reset() { *x = ContentGenerateExcerptRequest{} - mi := &file_v1_capability_proto_msgTypes[17] + mi := &file_v1_capability_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1017,7 +1109,7 @@ func (x *ContentGenerateExcerptRequest) String() string { func (*ContentGenerateExcerptRequest) ProtoMessage() {} func (x *ContentGenerateExcerptRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[17] + mi := &file_v1_capability_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1030,7 +1122,7 @@ func (x *ContentGenerateExcerptRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentGenerateExcerptRequest.ProtoReflect.Descriptor instead. func (*ContentGenerateExcerptRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{17} + return file_v1_capability_proto_rawDescGZIP(), []int{19} } func (x *ContentGenerateExcerptRequest) GetHtml() string { @@ -1056,7 +1148,7 @@ type ContentGenerateExcerptResponse struct { func (x *ContentGenerateExcerptResponse) Reset() { *x = ContentGenerateExcerptResponse{} - mi := &file_v1_capability_proto_msgTypes[18] + mi := &file_v1_capability_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1068,7 +1160,7 @@ func (x *ContentGenerateExcerptResponse) String() string { func (*ContentGenerateExcerptResponse) ProtoMessage() {} func (x *ContentGenerateExcerptResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[18] + mi := &file_v1_capability_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1081,7 +1173,7 @@ func (x *ContentGenerateExcerptResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentGenerateExcerptResponse.ProtoReflect.Descriptor instead. func (*ContentGenerateExcerptResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{18} + return file_v1_capability_proto_rawDescGZIP(), []int{20} } func (x *ContentGenerateExcerptResponse) GetExcerpt() string { @@ -1100,7 +1192,7 @@ type ContentStripHtmlRequest struct { func (x *ContentStripHtmlRequest) Reset() { *x = ContentStripHtmlRequest{} - mi := &file_v1_capability_proto_msgTypes[19] + mi := &file_v1_capability_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1112,7 +1204,7 @@ func (x *ContentStripHtmlRequest) String() string { func (*ContentStripHtmlRequest) ProtoMessage() {} func (x *ContentStripHtmlRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[19] + mi := &file_v1_capability_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1125,7 +1217,7 @@ func (x *ContentStripHtmlRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentStripHtmlRequest.ProtoReflect.Descriptor instead. func (*ContentStripHtmlRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{19} + return file_v1_capability_proto_rawDescGZIP(), []int{21} } func (x *ContentStripHtmlRequest) GetHtml() string { @@ -1144,7 +1236,7 @@ type ContentStripHtmlResponse struct { func (x *ContentStripHtmlResponse) Reset() { *x = ContentStripHtmlResponse{} - mi := &file_v1_capability_proto_msgTypes[20] + mi := &file_v1_capability_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1156,7 +1248,7 @@ func (x *ContentStripHtmlResponse) String() string { func (*ContentStripHtmlResponse) ProtoMessage() {} func (x *ContentStripHtmlResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[20] + mi := &file_v1_capability_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1169,7 +1261,7 @@ func (x *ContentStripHtmlResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentStripHtmlResponse.ProtoReflect.Descriptor instead. func (*ContentStripHtmlResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{20} + return file_v1_capability_proto_rawDescGZIP(), []int{22} } func (x *ContentStripHtmlResponse) GetText() string { @@ -1187,7 +1279,7 @@ type SettingsGetSiteSettingsRequest struct { func (x *SettingsGetSiteSettingsRequest) Reset() { *x = SettingsGetSiteSettingsRequest{} - mi := &file_v1_capability_proto_msgTypes[21] + mi := &file_v1_capability_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1199,7 +1291,7 @@ func (x *SettingsGetSiteSettingsRequest) String() string { func (*SettingsGetSiteSettingsRequest) ProtoMessage() {} func (x *SettingsGetSiteSettingsRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[21] + mi := &file_v1_capability_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1212,7 +1304,7 @@ func (x *SettingsGetSiteSettingsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SettingsGetSiteSettingsRequest.ProtoReflect.Descriptor instead. func (*SettingsGetSiteSettingsRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{21} + return file_v1_capability_proto_rawDescGZIP(), []int{23} } type SettingsGetSiteSettingsResponse struct { @@ -1225,7 +1317,7 @@ type SettingsGetSiteSettingsResponse struct { func (x *SettingsGetSiteSettingsResponse) Reset() { *x = SettingsGetSiteSettingsResponse{} - mi := &file_v1_capability_proto_msgTypes[22] + mi := &file_v1_capability_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1237,7 +1329,7 @@ func (x *SettingsGetSiteSettingsResponse) String() string { func (*SettingsGetSiteSettingsResponse) ProtoMessage() {} func (x *SettingsGetSiteSettingsResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[22] + mi := &file_v1_capability_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1250,7 +1342,7 @@ func (x *SettingsGetSiteSettingsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SettingsGetSiteSettingsResponse.ProtoReflect.Descriptor instead. func (*SettingsGetSiteSettingsResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{22} + return file_v1_capability_proto_rawDescGZIP(), []int{24} } func (x *SettingsGetSiteSettingsResponse) GetSettingsJson() []byte { @@ -1269,7 +1361,7 @@ type SettingsGetPluginSettingsRequest struct { func (x *SettingsGetPluginSettingsRequest) Reset() { *x = SettingsGetPluginSettingsRequest{} - mi := &file_v1_capability_proto_msgTypes[23] + mi := &file_v1_capability_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1281,7 +1373,7 @@ func (x *SettingsGetPluginSettingsRequest) String() string { func (*SettingsGetPluginSettingsRequest) ProtoMessage() {} func (x *SettingsGetPluginSettingsRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[23] + mi := &file_v1_capability_proto_msgTypes[25] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1294,7 +1386,7 @@ func (x *SettingsGetPluginSettingsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SettingsGetPluginSettingsRequest.ProtoReflect.Descriptor instead. func (*SettingsGetPluginSettingsRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{23} + return file_v1_capability_proto_rawDescGZIP(), []int{25} } func (x *SettingsGetPluginSettingsRequest) GetPluginName() string { @@ -1314,7 +1406,7 @@ type SettingsGetPluginSettingsResponse struct { func (x *SettingsGetPluginSettingsResponse) Reset() { *x = SettingsGetPluginSettingsResponse{} - mi := &file_v1_capability_proto_msgTypes[24] + mi := &file_v1_capability_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1326,7 +1418,7 @@ func (x *SettingsGetPluginSettingsResponse) String() string { func (*SettingsGetPluginSettingsResponse) ProtoMessage() {} func (x *SettingsGetPluginSettingsResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[24] + mi := &file_v1_capability_proto_msgTypes[26] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1339,7 +1431,7 @@ func (x *SettingsGetPluginSettingsResponse) ProtoReflect() protoreflect.Message // Deprecated: Use SettingsGetPluginSettingsResponse.ProtoReflect.Descriptor instead. func (*SettingsGetPluginSettingsResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{24} + return file_v1_capability_proto_rawDescGZIP(), []int{26} } func (x *SettingsGetPluginSettingsResponse) GetSettingsJson() []byte { @@ -1360,7 +1452,7 @@ type SettingsUpdateSiteSettingRequest struct { func (x *SettingsUpdateSiteSettingRequest) Reset() { *x = SettingsUpdateSiteSettingRequest{} - mi := &file_v1_capability_proto_msgTypes[25] + mi := &file_v1_capability_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1372,7 +1464,7 @@ func (x *SettingsUpdateSiteSettingRequest) String() string { func (*SettingsUpdateSiteSettingRequest) ProtoMessage() {} func (x *SettingsUpdateSiteSettingRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[25] + mi := &file_v1_capability_proto_msgTypes[27] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1385,7 +1477,7 @@ func (x *SettingsUpdateSiteSettingRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SettingsUpdateSiteSettingRequest.ProtoReflect.Descriptor instead. func (*SettingsUpdateSiteSettingRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{25} + return file_v1_capability_proto_rawDescGZIP(), []int{27} } func (x *SettingsUpdateSiteSettingRequest) GetKey() string { @@ -1410,7 +1502,7 @@ type SettingsUpdateSiteSettingResponse struct { func (x *SettingsUpdateSiteSettingResponse) Reset() { *x = SettingsUpdateSiteSettingResponse{} - mi := &file_v1_capability_proto_msgTypes[26] + mi := &file_v1_capability_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1422,7 +1514,7 @@ func (x *SettingsUpdateSiteSettingResponse) String() string { func (*SettingsUpdateSiteSettingResponse) ProtoMessage() {} func (x *SettingsUpdateSiteSettingResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[26] + mi := &file_v1_capability_proto_msgTypes[28] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1435,7 +1527,7 @@ func (x *SettingsUpdateSiteSettingResponse) ProtoReflect() protoreflect.Message // Deprecated: Use SettingsUpdateSiteSettingResponse.ProtoReflect.Descriptor instead. func (*SettingsUpdateSiteSettingResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{26} + return file_v1_capability_proto_rawDescGZIP(), []int{28} } type GatingGetSubscriberTierLevelRequest struct { @@ -1447,7 +1539,7 @@ type GatingGetSubscriberTierLevelRequest struct { func (x *GatingGetSubscriberTierLevelRequest) Reset() { *x = GatingGetSubscriberTierLevelRequest{} - mi := &file_v1_capability_proto_msgTypes[27] + mi := &file_v1_capability_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1459,7 +1551,7 @@ func (x *GatingGetSubscriberTierLevelRequest) String() string { func (*GatingGetSubscriberTierLevelRequest) ProtoMessage() {} func (x *GatingGetSubscriberTierLevelRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[27] + mi := &file_v1_capability_proto_msgTypes[29] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1472,7 +1564,7 @@ func (x *GatingGetSubscriberTierLevelRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use GatingGetSubscriberTierLevelRequest.ProtoReflect.Descriptor instead. func (*GatingGetSubscriberTierLevelRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{27} + return file_v1_capability_proto_rawDescGZIP(), []int{29} } func (x *GatingGetSubscriberTierLevelRequest) GetUserId() string { @@ -1491,7 +1583,7 @@ type GatingGetSubscriberTierLevelResponse struct { func (x *GatingGetSubscriberTierLevelResponse) Reset() { *x = GatingGetSubscriberTierLevelResponse{} - mi := &file_v1_capability_proto_msgTypes[28] + mi := &file_v1_capability_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1503,7 +1595,7 @@ func (x *GatingGetSubscriberTierLevelResponse) String() string { func (*GatingGetSubscriberTierLevelResponse) ProtoMessage() {} func (x *GatingGetSubscriberTierLevelResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[28] + mi := &file_v1_capability_proto_msgTypes[30] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1516,7 +1608,7 @@ func (x *GatingGetSubscriberTierLevelResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use GatingGetSubscriberTierLevelResponse.ProtoReflect.Descriptor instead. func (*GatingGetSubscriberTierLevelResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{28} + return file_v1_capability_proto_rawDescGZIP(), []int{30} } func (x *GatingGetSubscriberTierLevelResponse) GetLevel() int32 { @@ -1537,7 +1629,7 @@ type GatingEvaluateAccessRequest struct { func (x *GatingEvaluateAccessRequest) Reset() { *x = GatingEvaluateAccessRequest{} - mi := &file_v1_capability_proto_msgTypes[29] + mi := &file_v1_capability_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1549,7 +1641,7 @@ func (x *GatingEvaluateAccessRequest) String() string { func (*GatingEvaluateAccessRequest) ProtoMessage() {} func (x *GatingEvaluateAccessRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[29] + mi := &file_v1_capability_proto_msgTypes[31] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1562,7 +1654,7 @@ func (x *GatingEvaluateAccessRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GatingEvaluateAccessRequest.ProtoReflect.Descriptor instead. func (*GatingEvaluateAccessRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{29} + return file_v1_capability_proto_rawDescGZIP(), []int{31} } func (x *GatingEvaluateAccessRequest) GetUserTierLevel() int32 { @@ -1588,7 +1680,7 @@ type GatingEvaluateAccessResponse struct { func (x *GatingEvaluateAccessResponse) Reset() { *x = GatingEvaluateAccessResponse{} - mi := &file_v1_capability_proto_msgTypes[30] + mi := &file_v1_capability_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1600,7 +1692,7 @@ func (x *GatingEvaluateAccessResponse) String() string { func (*GatingEvaluateAccessResponse) ProtoMessage() {} func (x *GatingEvaluateAccessResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[30] + mi := &file_v1_capability_proto_msgTypes[32] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1613,7 +1705,7 @@ func (x *GatingEvaluateAccessResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GatingEvaluateAccessResponse.ProtoReflect.Descriptor instead. func (*GatingEvaluateAccessResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{30} + return file_v1_capability_proto_rawDescGZIP(), []int{32} } func (x *GatingEvaluateAccessResponse) GetResult() *AccessResult { @@ -1636,7 +1728,7 @@ type AccessRule struct { func (x *AccessRule) Reset() { *x = AccessRule{} - mi := &file_v1_capability_proto_msgTypes[31] + mi := &file_v1_capability_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1648,7 +1740,7 @@ func (x *AccessRule) String() string { func (*AccessRule) ProtoMessage() {} func (x *AccessRule) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[31] + mi := &file_v1_capability_proto_msgTypes[33] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1661,7 +1753,7 @@ func (x *AccessRule) ProtoReflect() protoreflect.Message { // Deprecated: Use AccessRule.ProtoReflect.Descriptor instead. func (*AccessRule) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{31} + return file_v1_capability_proto_rawDescGZIP(), []int{33} } func (x *AccessRule) GetMinTierLevel() int32 { @@ -1705,7 +1797,7 @@ type AccessResult struct { func (x *AccessResult) Reset() { *x = AccessResult{} - mi := &file_v1_capability_proto_msgTypes[32] + mi := &file_v1_capability_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1717,7 +1809,7 @@ func (x *AccessResult) String() string { func (*AccessResult) ProtoMessage() {} func (x *AccessResult) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[32] + mi := &file_v1_capability_proto_msgTypes[34] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1730,7 +1822,7 @@ func (x *AccessResult) ProtoReflect() protoreflect.Message { // Deprecated: Use AccessResult.ProtoReflect.Descriptor instead. func (*AccessResult) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{32} + return file_v1_capability_proto_rawDescGZIP(), []int{34} } func (x *AccessResult) GetHasAccess() bool { @@ -1770,7 +1862,7 @@ type CryptoEncryptSecretRequest struct { func (x *CryptoEncryptSecretRequest) Reset() { *x = CryptoEncryptSecretRequest{} - mi := &file_v1_capability_proto_msgTypes[33] + mi := &file_v1_capability_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1782,7 +1874,7 @@ func (x *CryptoEncryptSecretRequest) String() string { func (*CryptoEncryptSecretRequest) ProtoMessage() {} func (x *CryptoEncryptSecretRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[33] + mi := &file_v1_capability_proto_msgTypes[35] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1795,7 +1887,7 @@ func (x *CryptoEncryptSecretRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CryptoEncryptSecretRequest.ProtoReflect.Descriptor instead. func (*CryptoEncryptSecretRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{33} + return file_v1_capability_proto_rawDescGZIP(), []int{35} } func (x *CryptoEncryptSecretRequest) GetPlaintext() string { @@ -1814,7 +1906,7 @@ type CryptoEncryptSecretResponse struct { func (x *CryptoEncryptSecretResponse) Reset() { *x = CryptoEncryptSecretResponse{} - mi := &file_v1_capability_proto_msgTypes[34] + mi := &file_v1_capability_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1826,7 +1918,7 @@ func (x *CryptoEncryptSecretResponse) String() string { func (*CryptoEncryptSecretResponse) ProtoMessage() {} func (x *CryptoEncryptSecretResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[34] + mi := &file_v1_capability_proto_msgTypes[36] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1839,7 +1931,7 @@ func (x *CryptoEncryptSecretResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CryptoEncryptSecretResponse.ProtoReflect.Descriptor instead. func (*CryptoEncryptSecretResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{34} + return file_v1_capability_proto_rawDescGZIP(), []int{36} } func (x *CryptoEncryptSecretResponse) GetCiphertext() string { @@ -1858,7 +1950,7 @@ type CryptoDecryptSecretRequest struct { func (x *CryptoDecryptSecretRequest) Reset() { *x = CryptoDecryptSecretRequest{} - mi := &file_v1_capability_proto_msgTypes[35] + mi := &file_v1_capability_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1870,7 +1962,7 @@ func (x *CryptoDecryptSecretRequest) String() string { func (*CryptoDecryptSecretRequest) ProtoMessage() {} func (x *CryptoDecryptSecretRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[35] + mi := &file_v1_capability_proto_msgTypes[37] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1883,7 +1975,7 @@ func (x *CryptoDecryptSecretRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CryptoDecryptSecretRequest.ProtoReflect.Descriptor instead. func (*CryptoDecryptSecretRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{35} + return file_v1_capability_proto_rawDescGZIP(), []int{37} } func (x *CryptoDecryptSecretRequest) GetCiphertext() string { @@ -1902,7 +1994,7 @@ type CryptoDecryptSecretResponse struct { func (x *CryptoDecryptSecretResponse) Reset() { *x = CryptoDecryptSecretResponse{} - mi := &file_v1_capability_proto_msgTypes[36] + mi := &file_v1_capability_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1914,7 +2006,7 @@ func (x *CryptoDecryptSecretResponse) String() string { func (*CryptoDecryptSecretResponse) ProtoMessage() {} func (x *CryptoDecryptSecretResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[36] + mi := &file_v1_capability_proto_msgTypes[38] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1927,7 +2019,7 @@ func (x *CryptoDecryptSecretResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CryptoDecryptSecretResponse.ProtoReflect.Descriptor instead. func (*CryptoDecryptSecretResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{36} + return file_v1_capability_proto_rawDescGZIP(), []int{38} } func (x *CryptoDecryptSecretResponse) GetPlaintext() string { @@ -1946,7 +2038,7 @@ type MenusGetMenuByNameRequest struct { func (x *MenusGetMenuByNameRequest) Reset() { *x = MenusGetMenuByNameRequest{} - mi := &file_v1_capability_proto_msgTypes[37] + mi := &file_v1_capability_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1958,7 +2050,7 @@ func (x *MenusGetMenuByNameRequest) String() string { func (*MenusGetMenuByNameRequest) ProtoMessage() {} func (x *MenusGetMenuByNameRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[37] + mi := &file_v1_capability_proto_msgTypes[39] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1971,7 +2063,7 @@ func (x *MenusGetMenuByNameRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MenusGetMenuByNameRequest.ProtoReflect.Descriptor instead. func (*MenusGetMenuByNameRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{37} + return file_v1_capability_proto_rawDescGZIP(), []int{39} } func (x *MenusGetMenuByNameRequest) GetName() string { @@ -1990,7 +2082,7 @@ type MenusGetMenuByNameResponse struct { func (x *MenusGetMenuByNameResponse) Reset() { *x = MenusGetMenuByNameResponse{} - mi := &file_v1_capability_proto_msgTypes[38] + mi := &file_v1_capability_proto_msgTypes[40] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2002,7 +2094,7 @@ func (x *MenusGetMenuByNameResponse) String() string { func (*MenusGetMenuByNameResponse) ProtoMessage() {} func (x *MenusGetMenuByNameResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[38] + mi := &file_v1_capability_proto_msgTypes[40] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2015,7 +2107,7 @@ func (x *MenusGetMenuByNameResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MenusGetMenuByNameResponse.ProtoReflect.Descriptor instead. func (*MenusGetMenuByNameResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{38} + return file_v1_capability_proto_rawDescGZIP(), []int{40} } func (x *MenusGetMenuByNameResponse) GetMenu() *Menu { @@ -2036,7 +2128,7 @@ type Menu struct { func (x *Menu) Reset() { *x = Menu{} - mi := &file_v1_capability_proto_msgTypes[39] + mi := &file_v1_capability_proto_msgTypes[41] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2048,7 +2140,7 @@ func (x *Menu) String() string { func (*Menu) ProtoMessage() {} func (x *Menu) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[39] + mi := &file_v1_capability_proto_msgTypes[41] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2061,7 +2153,7 @@ func (x *Menu) ProtoReflect() protoreflect.Message { // Deprecated: Use Menu.ProtoReflect.Descriptor instead. func (*Menu) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{39} + return file_v1_capability_proto_rawDescGZIP(), []int{41} } func (x *Menu) GetId() string { @@ -2087,7 +2179,7 @@ type MenusGetMenuItemsRequest struct { func (x *MenusGetMenuItemsRequest) Reset() { *x = MenusGetMenuItemsRequest{} - mi := &file_v1_capability_proto_msgTypes[40] + mi := &file_v1_capability_proto_msgTypes[42] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2099,7 +2191,7 @@ func (x *MenusGetMenuItemsRequest) String() string { func (*MenusGetMenuItemsRequest) ProtoMessage() {} func (x *MenusGetMenuItemsRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[40] + mi := &file_v1_capability_proto_msgTypes[42] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2112,7 +2204,7 @@ func (x *MenusGetMenuItemsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MenusGetMenuItemsRequest.ProtoReflect.Descriptor instead. func (*MenusGetMenuItemsRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{40} + return file_v1_capability_proto_rawDescGZIP(), []int{42} } func (x *MenusGetMenuItemsRequest) GetMenuId() string { @@ -2131,7 +2223,7 @@ type MenusGetMenuItemsResponse struct { func (x *MenusGetMenuItemsResponse) Reset() { *x = MenusGetMenuItemsResponse{} - mi := &file_v1_capability_proto_msgTypes[41] + mi := &file_v1_capability_proto_msgTypes[43] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2143,7 +2235,7 @@ func (x *MenusGetMenuItemsResponse) String() string { func (*MenusGetMenuItemsResponse) ProtoMessage() {} func (x *MenusGetMenuItemsResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[41] + mi := &file_v1_capability_proto_msgTypes[43] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2156,7 +2248,7 @@ func (x *MenusGetMenuItemsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MenusGetMenuItemsResponse.ProtoReflect.Descriptor instead. func (*MenusGetMenuItemsResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{41} + return file_v1_capability_proto_rawDescGZIP(), []int{43} } func (x *MenusGetMenuItemsResponse) GetItems() []*MenuItem { @@ -2186,7 +2278,7 @@ type MenuItem struct { func (x *MenuItem) Reset() { *x = MenuItem{} - mi := &file_v1_capability_proto_msgTypes[42] + mi := &file_v1_capability_proto_msgTypes[44] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2198,7 +2290,7 @@ func (x *MenuItem) String() string { func (*MenuItem) ProtoMessage() {} func (x *MenuItem) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[42] + mi := &file_v1_capability_proto_msgTypes[44] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2211,7 +2303,7 @@ func (x *MenuItem) ProtoReflect() protoreflect.Message { // Deprecated: Use MenuItem.ProtoReflect.Descriptor instead. func (*MenuItem) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{42} + return file_v1_capability_proto_rawDescGZIP(), []int{44} } func (x *MenuItem) GetId() string { @@ -2300,7 +2392,7 @@ type DatasourcesResolveBucketRequest struct { func (x *DatasourcesResolveBucketRequest) Reset() { *x = DatasourcesResolveBucketRequest{} - mi := &file_v1_capability_proto_msgTypes[43] + mi := &file_v1_capability_proto_msgTypes[45] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2312,7 +2404,7 @@ func (x *DatasourcesResolveBucketRequest) String() string { func (*DatasourcesResolveBucketRequest) ProtoMessage() {} func (x *DatasourcesResolveBucketRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[43] + mi := &file_v1_capability_proto_msgTypes[45] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2325,7 +2417,7 @@ func (x *DatasourcesResolveBucketRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DatasourcesResolveBucketRequest.ProtoReflect.Descriptor instead. func (*DatasourcesResolveBucketRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{43} + return file_v1_capability_proto_rawDescGZIP(), []int{45} } func (x *DatasourcesResolveBucketRequest) GetBucketId() string { @@ -2344,7 +2436,7 @@ type DatasourcesResolveBucketResponse struct { func (x *DatasourcesResolveBucketResponse) Reset() { *x = DatasourcesResolveBucketResponse{} - mi := &file_v1_capability_proto_msgTypes[44] + mi := &file_v1_capability_proto_msgTypes[46] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2356,7 +2448,7 @@ func (x *DatasourcesResolveBucketResponse) String() string { func (*DatasourcesResolveBucketResponse) ProtoMessage() {} func (x *DatasourcesResolveBucketResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[44] + mi := &file_v1_capability_proto_msgTypes[46] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2369,7 +2461,7 @@ func (x *DatasourcesResolveBucketResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DatasourcesResolveBucketResponse.ProtoReflect.Descriptor instead. func (*DatasourcesResolveBucketResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{44} + return file_v1_capability_proto_rawDescGZIP(), []int{46} } func (x *DatasourcesResolveBucketResponse) GetResult() *DatasourceResult { @@ -2388,7 +2480,7 @@ type DatasourcesResolveBucketByKeyRequest struct { func (x *DatasourcesResolveBucketByKeyRequest) Reset() { *x = DatasourcesResolveBucketByKeyRequest{} - mi := &file_v1_capability_proto_msgTypes[45] + mi := &file_v1_capability_proto_msgTypes[47] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2400,7 +2492,7 @@ func (x *DatasourcesResolveBucketByKeyRequest) String() string { func (*DatasourcesResolveBucketByKeyRequest) ProtoMessage() {} func (x *DatasourcesResolveBucketByKeyRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[45] + mi := &file_v1_capability_proto_msgTypes[47] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2413,7 +2505,7 @@ func (x *DatasourcesResolveBucketByKeyRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use DatasourcesResolveBucketByKeyRequest.ProtoReflect.Descriptor instead. func (*DatasourcesResolveBucketByKeyRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{45} + return file_v1_capability_proto_rawDescGZIP(), []int{47} } func (x *DatasourcesResolveBucketByKeyRequest) GetBucketKey() string { @@ -2432,7 +2524,7 @@ type DatasourcesResolveBucketByKeyResponse struct { func (x *DatasourcesResolveBucketByKeyResponse) Reset() { *x = DatasourcesResolveBucketByKeyResponse{} - mi := &file_v1_capability_proto_msgTypes[46] + mi := &file_v1_capability_proto_msgTypes[48] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2444,7 +2536,7 @@ func (x *DatasourcesResolveBucketByKeyResponse) String() string { func (*DatasourcesResolveBucketByKeyResponse) ProtoMessage() {} func (x *DatasourcesResolveBucketByKeyResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[46] + mi := &file_v1_capability_proto_msgTypes[48] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2457,7 +2549,7 @@ func (x *DatasourcesResolveBucketByKeyResponse) ProtoReflect() protoreflect.Mess // Deprecated: Use DatasourcesResolveBucketByKeyResponse.ProtoReflect.Descriptor instead. func (*DatasourcesResolveBucketByKeyResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{46} + return file_v1_capability_proto_rawDescGZIP(), []int{48} } func (x *DatasourcesResolveBucketByKeyResponse) GetResult() *DatasourceResult { @@ -2482,7 +2574,7 @@ type DatasourceResult struct { func (x *DatasourceResult) Reset() { *x = DatasourceResult{} - mi := &file_v1_capability_proto_msgTypes[47] + mi := &file_v1_capability_proto_msgTypes[49] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2494,7 +2586,7 @@ func (x *DatasourceResult) String() string { func (*DatasourceResult) ProtoMessage() {} func (x *DatasourceResult) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[47] + mi := &file_v1_capability_proto_msgTypes[49] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2507,7 +2599,7 @@ func (x *DatasourceResult) ProtoReflect() protoreflect.Message { // Deprecated: Use DatasourceResult.ProtoReflect.Descriptor instead. func (*DatasourceResult) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{47} + return file_v1_capability_proto_rawDescGZIP(), []int{49} } func (x *DatasourceResult) GetItemsJson() []byte { @@ -2540,7 +2632,7 @@ type UsersGetByUsernameRequest struct { func (x *UsersGetByUsernameRequest) Reset() { *x = UsersGetByUsernameRequest{} - mi := &file_v1_capability_proto_msgTypes[48] + mi := &file_v1_capability_proto_msgTypes[50] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2552,7 +2644,7 @@ func (x *UsersGetByUsernameRequest) String() string { func (*UsersGetByUsernameRequest) ProtoMessage() {} func (x *UsersGetByUsernameRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[48] + mi := &file_v1_capability_proto_msgTypes[50] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2565,7 +2657,7 @@ func (x *UsersGetByUsernameRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UsersGetByUsernameRequest.ProtoReflect.Descriptor instead. func (*UsersGetByUsernameRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{48} + return file_v1_capability_proto_rawDescGZIP(), []int{50} } func (x *UsersGetByUsernameRequest) GetUsername() string { @@ -2584,7 +2676,7 @@ type UsersGetByUsernameResponse struct { func (x *UsersGetByUsernameResponse) Reset() { *x = UsersGetByUsernameResponse{} - mi := &file_v1_capability_proto_msgTypes[49] + mi := &file_v1_capability_proto_msgTypes[51] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2596,7 +2688,7 @@ func (x *UsersGetByUsernameResponse) String() string { func (*UsersGetByUsernameResponse) ProtoMessage() {} func (x *UsersGetByUsernameResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[49] + mi := &file_v1_capability_proto_msgTypes[51] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2609,7 +2701,7 @@ func (x *UsersGetByUsernameResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UsersGetByUsernameResponse.ProtoReflect.Descriptor instead. func (*UsersGetByUsernameResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{49} + return file_v1_capability_proto_rawDescGZIP(), []int{51} } func (x *UsersGetByUsernameResponse) GetUser() *PublicUserProfile { @@ -2628,7 +2720,7 @@ type UsersGetByIdRequest struct { func (x *UsersGetByIdRequest) Reset() { *x = UsersGetByIdRequest{} - mi := &file_v1_capability_proto_msgTypes[50] + mi := &file_v1_capability_proto_msgTypes[52] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2640,7 +2732,7 @@ func (x *UsersGetByIdRequest) String() string { func (*UsersGetByIdRequest) ProtoMessage() {} func (x *UsersGetByIdRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[50] + mi := &file_v1_capability_proto_msgTypes[52] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2653,7 +2745,7 @@ func (x *UsersGetByIdRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UsersGetByIdRequest.ProtoReflect.Descriptor instead. func (*UsersGetByIdRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{50} + return file_v1_capability_proto_rawDescGZIP(), []int{52} } func (x *UsersGetByIdRequest) GetId() string { @@ -2672,7 +2764,7 @@ type UsersGetByIdResponse struct { func (x *UsersGetByIdResponse) Reset() { *x = UsersGetByIdResponse{} - mi := &file_v1_capability_proto_msgTypes[51] + mi := &file_v1_capability_proto_msgTypes[53] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2684,7 +2776,7 @@ func (x *UsersGetByIdResponse) String() string { func (*UsersGetByIdResponse) ProtoMessage() {} func (x *UsersGetByIdResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[51] + mi := &file_v1_capability_proto_msgTypes[53] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2697,7 +2789,7 @@ func (x *UsersGetByIdResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UsersGetByIdResponse.ProtoReflect.Descriptor instead. func (*UsersGetByIdResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{51} + return file_v1_capability_proto_rawDescGZIP(), []int{53} } func (x *UsersGetByIdResponse) GetUser() *PublicUserProfile { @@ -2724,7 +2816,7 @@ type PublicUserProfile struct { func (x *PublicUserProfile) Reset() { *x = PublicUserProfile{} - mi := &file_v1_capability_proto_msgTypes[52] + mi := &file_v1_capability_proto_msgTypes[54] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2736,7 +2828,7 @@ func (x *PublicUserProfile) String() string { func (*PublicUserProfile) ProtoMessage() {} func (x *PublicUserProfile) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[52] + mi := &file_v1_capability_proto_msgTypes[54] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2749,7 +2841,7 @@ func (x *PublicUserProfile) ProtoReflect() protoreflect.Message { // Deprecated: Use PublicUserProfile.ProtoReflect.Descriptor instead. func (*PublicUserProfile) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{52} + return file_v1_capability_proto_rawDescGZIP(), []int{54} } func (x *PublicUserProfile) GetId() string { @@ -2817,7 +2909,7 @@ type SubscriptionsGetUserTierLevelRequest struct { func (x *SubscriptionsGetUserTierLevelRequest) Reset() { *x = SubscriptionsGetUserTierLevelRequest{} - mi := &file_v1_capability_proto_msgTypes[53] + mi := &file_v1_capability_proto_msgTypes[55] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2829,7 +2921,7 @@ func (x *SubscriptionsGetUserTierLevelRequest) String() string { func (*SubscriptionsGetUserTierLevelRequest) ProtoMessage() {} func (x *SubscriptionsGetUserTierLevelRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[53] + mi := &file_v1_capability_proto_msgTypes[55] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2842,7 +2934,7 @@ func (x *SubscriptionsGetUserTierLevelRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use SubscriptionsGetUserTierLevelRequest.ProtoReflect.Descriptor instead. func (*SubscriptionsGetUserTierLevelRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{53} + return file_v1_capability_proto_rawDescGZIP(), []int{55} } func (x *SubscriptionsGetUserTierLevelRequest) GetUserId() string { @@ -2861,7 +2953,7 @@ type SubscriptionsGetUserTierLevelResponse struct { func (x *SubscriptionsGetUserTierLevelResponse) Reset() { *x = SubscriptionsGetUserTierLevelResponse{} - mi := &file_v1_capability_proto_msgTypes[54] + mi := &file_v1_capability_proto_msgTypes[56] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2873,7 +2965,7 @@ func (x *SubscriptionsGetUserTierLevelResponse) String() string { func (*SubscriptionsGetUserTierLevelResponse) ProtoMessage() {} func (x *SubscriptionsGetUserTierLevelResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[54] + mi := &file_v1_capability_proto_msgTypes[56] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2886,7 +2978,7 @@ func (x *SubscriptionsGetUserTierLevelResponse) ProtoReflect() protoreflect.Mess // Deprecated: Use SubscriptionsGetUserTierLevelResponse.ProtoReflect.Descriptor instead. func (*SubscriptionsGetUserTierLevelResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{54} + return file_v1_capability_proto_rawDescGZIP(), []int{56} } func (x *SubscriptionsGetUserTierLevelResponse) GetTierLevel() *TierLevel { @@ -2908,7 +3000,7 @@ type TierLevel struct { func (x *TierLevel) Reset() { *x = TierLevel{} - mi := &file_v1_capability_proto_msgTypes[55] + mi := &file_v1_capability_proto_msgTypes[57] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2920,7 +3012,7 @@ func (x *TierLevel) String() string { func (*TierLevel) ProtoMessage() {} func (x *TierLevel) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[55] + mi := &file_v1_capability_proto_msgTypes[57] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2933,7 +3025,7 @@ func (x *TierLevel) ProtoReflect() protoreflect.Message { // Deprecated: Use TierLevel.ProtoReflect.Descriptor instead. func (*TierLevel) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{55} + return file_v1_capability_proto_rawDescGZIP(), []int{57} } func (x *TierLevel) GetLevel() int32 { @@ -2959,7 +3051,7 @@ type SubscriptionsGetTierBySlugRequest struct { func (x *SubscriptionsGetTierBySlugRequest) Reset() { *x = SubscriptionsGetTierBySlugRequest{} - mi := &file_v1_capability_proto_msgTypes[56] + mi := &file_v1_capability_proto_msgTypes[58] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2971,7 +3063,7 @@ func (x *SubscriptionsGetTierBySlugRequest) String() string { func (*SubscriptionsGetTierBySlugRequest) ProtoMessage() {} func (x *SubscriptionsGetTierBySlugRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[56] + mi := &file_v1_capability_proto_msgTypes[58] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2984,7 +3076,7 @@ func (x *SubscriptionsGetTierBySlugRequest) ProtoReflect() protoreflect.Message // Deprecated: Use SubscriptionsGetTierBySlugRequest.ProtoReflect.Descriptor instead. func (*SubscriptionsGetTierBySlugRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{56} + return file_v1_capability_proto_rawDescGZIP(), []int{58} } func (x *SubscriptionsGetTierBySlugRequest) GetSlug() string { @@ -3003,7 +3095,7 @@ type SubscriptionsGetTierBySlugResponse struct { func (x *SubscriptionsGetTierBySlugResponse) Reset() { *x = SubscriptionsGetTierBySlugResponse{} - mi := &file_v1_capability_proto_msgTypes[57] + mi := &file_v1_capability_proto_msgTypes[59] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3015,7 +3107,7 @@ func (x *SubscriptionsGetTierBySlugResponse) String() string { func (*SubscriptionsGetTierBySlugResponse) ProtoMessage() {} func (x *SubscriptionsGetTierBySlugResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[57] + mi := &file_v1_capability_proto_msgTypes[59] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3028,7 +3120,7 @@ func (x *SubscriptionsGetTierBySlugResponse) ProtoReflect() protoreflect.Message // Deprecated: Use SubscriptionsGetTierBySlugResponse.ProtoReflect.Descriptor instead. func (*SubscriptionsGetTierBySlugResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{57} + return file_v1_capability_proto_rawDescGZIP(), []int{59} } func (x *SubscriptionsGetTierBySlugResponse) GetTier() *Tier { @@ -3056,7 +3148,7 @@ type Tier struct { func (x *Tier) Reset() { *x = Tier{} - mi := &file_v1_capability_proto_msgTypes[58] + mi := &file_v1_capability_proto_msgTypes[60] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3068,7 +3160,7 @@ func (x *Tier) String() string { func (*Tier) ProtoMessage() {} func (x *Tier) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[58] + mi := &file_v1_capability_proto_msgTypes[60] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3081,7 +3173,7 @@ func (x *Tier) ProtoReflect() protoreflect.Message { // Deprecated: Use Tier.ProtoReflect.Descriptor instead. func (*Tier) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{58} + return file_v1_capability_proto_rawDescGZIP(), []int{60} } func (x *Tier) GetId() string { @@ -3148,7 +3240,7 @@ type SubscriptionsListTiersRequest struct { func (x *SubscriptionsListTiersRequest) Reset() { *x = SubscriptionsListTiersRequest{} - mi := &file_v1_capability_proto_msgTypes[59] + mi := &file_v1_capability_proto_msgTypes[61] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3160,7 +3252,7 @@ func (x *SubscriptionsListTiersRequest) String() string { func (*SubscriptionsListTiersRequest) ProtoMessage() {} func (x *SubscriptionsListTiersRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[59] + mi := &file_v1_capability_proto_msgTypes[61] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3173,7 +3265,7 @@ func (x *SubscriptionsListTiersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SubscriptionsListTiersRequest.ProtoReflect.Descriptor instead. func (*SubscriptionsListTiersRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{59} + return file_v1_capability_proto_rawDescGZIP(), []int{61} } type SubscriptionsListTiersResponse struct { @@ -3185,7 +3277,7 @@ type SubscriptionsListTiersResponse struct { func (x *SubscriptionsListTiersResponse) Reset() { *x = SubscriptionsListTiersResponse{} - mi := &file_v1_capability_proto_msgTypes[60] + mi := &file_v1_capability_proto_msgTypes[62] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3197,7 +3289,7 @@ func (x *SubscriptionsListTiersResponse) String() string { func (*SubscriptionsListTiersResponse) ProtoMessage() {} func (x *SubscriptionsListTiersResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[60] + mi := &file_v1_capability_proto_msgTypes[62] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3210,7 +3302,7 @@ func (x *SubscriptionsListTiersResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SubscriptionsListTiersResponse.ProtoReflect.Descriptor instead. func (*SubscriptionsListTiersResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{60} + return file_v1_capability_proto_rawDescGZIP(), []int{62} } func (x *SubscriptionsListTiersResponse) GetTiers() []*Tier { @@ -3229,7 +3321,7 @@ type SubscriptionsListActivePlansRequest struct { func (x *SubscriptionsListActivePlansRequest) Reset() { *x = SubscriptionsListActivePlansRequest{} - mi := &file_v1_capability_proto_msgTypes[61] + mi := &file_v1_capability_proto_msgTypes[63] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3241,7 +3333,7 @@ func (x *SubscriptionsListActivePlansRequest) String() string { func (*SubscriptionsListActivePlansRequest) ProtoMessage() {} func (x *SubscriptionsListActivePlansRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[61] + mi := &file_v1_capability_proto_msgTypes[63] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3254,7 +3346,7 @@ func (x *SubscriptionsListActivePlansRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use SubscriptionsListActivePlansRequest.ProtoReflect.Descriptor instead. func (*SubscriptionsListActivePlansRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{61} + return file_v1_capability_proto_rawDescGZIP(), []int{63} } func (x *SubscriptionsListActivePlansRequest) GetTierId() string { @@ -3273,7 +3365,7 @@ type SubscriptionsListActivePlansResponse struct { func (x *SubscriptionsListActivePlansResponse) Reset() { *x = SubscriptionsListActivePlansResponse{} - mi := &file_v1_capability_proto_msgTypes[62] + mi := &file_v1_capability_proto_msgTypes[64] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3285,7 +3377,7 @@ func (x *SubscriptionsListActivePlansResponse) String() string { func (*SubscriptionsListActivePlansResponse) ProtoMessage() {} func (x *SubscriptionsListActivePlansResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[62] + mi := &file_v1_capability_proto_msgTypes[64] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3298,7 +3390,7 @@ func (x *SubscriptionsListActivePlansResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use SubscriptionsListActivePlansResponse.ProtoReflect.Descriptor instead. func (*SubscriptionsListActivePlansResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{62} + return file_v1_capability_proto_rawDescGZIP(), []int{64} } func (x *SubscriptionsListActivePlansResponse) GetPlans() []*Plan { @@ -3324,7 +3416,7 @@ type Plan struct { func (x *Plan) Reset() { *x = Plan{} - mi := &file_v1_capability_proto_msgTypes[63] + mi := &file_v1_capability_proto_msgTypes[65] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3336,7 +3428,7 @@ func (x *Plan) String() string { func (*Plan) ProtoMessage() {} func (x *Plan) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[63] + mi := &file_v1_capability_proto_msgTypes[65] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3349,7 +3441,7 @@ func (x *Plan) ProtoReflect() protoreflect.Message { // Deprecated: Use Plan.ProtoReflect.Descriptor instead. func (*Plan) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{63} + return file_v1_capability_proto_rawDescGZIP(), []int{65} } func (x *Plan) GetId() string { @@ -3417,7 +3509,7 @@ type MediaDepositRequest struct { func (x *MediaDepositRequest) Reset() { *x = MediaDepositRequest{} - mi := &file_v1_capability_proto_msgTypes[64] + mi := &file_v1_capability_proto_msgTypes[66] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3429,7 +3521,7 @@ func (x *MediaDepositRequest) String() string { func (*MediaDepositRequest) ProtoMessage() {} func (x *MediaDepositRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[64] + mi := &file_v1_capability_proto_msgTypes[66] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3442,7 +3534,7 @@ func (x *MediaDepositRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaDepositRequest.ProtoReflect.Descriptor instead. func (*MediaDepositRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{64} + return file_v1_capability_proto_rawDescGZIP(), []int{66} } func (x *MediaDepositRequest) GetId() string { @@ -3500,7 +3592,7 @@ type MediaDepositResponse struct { func (x *MediaDepositResponse) Reset() { *x = MediaDepositResponse{} - mi := &file_v1_capability_proto_msgTypes[65] + mi := &file_v1_capability_proto_msgTypes[67] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3512,7 +3604,7 @@ func (x *MediaDepositResponse) String() string { func (*MediaDepositResponse) ProtoMessage() {} func (x *MediaDepositResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[65] + mi := &file_v1_capability_proto_msgTypes[67] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3525,7 +3617,7 @@ func (x *MediaDepositResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaDepositResponse.ProtoReflect.Descriptor instead. func (*MediaDepositResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{65} + return file_v1_capability_proto_rawDescGZIP(), []int{67} } func (x *MediaDepositResponse) GetId() string { @@ -3560,7 +3652,7 @@ type EmailSendRequest struct { func (x *EmailSendRequest) Reset() { *x = EmailSendRequest{} - mi := &file_v1_capability_proto_msgTypes[66] + mi := &file_v1_capability_proto_msgTypes[68] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3572,7 +3664,7 @@ func (x *EmailSendRequest) String() string { func (*EmailSendRequest) ProtoMessage() {} func (x *EmailSendRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[66] + mi := &file_v1_capability_proto_msgTypes[68] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3585,7 +3677,7 @@ func (x *EmailSendRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use EmailSendRequest.ProtoReflect.Descriptor instead. func (*EmailSendRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{66} + return file_v1_capability_proto_rawDescGZIP(), []int{68} } func (x *EmailSendRequest) GetTo() string { @@ -3617,7 +3709,7 @@ type EmailSendResponse struct { func (x *EmailSendResponse) Reset() { *x = EmailSendResponse{} - mi := &file_v1_capability_proto_msgTypes[67] + mi := &file_v1_capability_proto_msgTypes[69] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3629,7 +3721,7 @@ func (x *EmailSendResponse) String() string { func (*EmailSendResponse) ProtoMessage() {} func (x *EmailSendResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[67] + mi := &file_v1_capability_proto_msgTypes[69] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3642,7 +3734,7 @@ func (x *EmailSendResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use EmailSendResponse.ProtoReflect.Descriptor instead. func (*EmailSendResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{67} + return file_v1_capability_proto_rawDescGZIP(), []int{69} } type AiTextCallRequest struct { @@ -3656,7 +3748,7 @@ type AiTextCallRequest struct { func (x *AiTextCallRequest) Reset() { *x = AiTextCallRequest{} - mi := &file_v1_capability_proto_msgTypes[68] + mi := &file_v1_capability_proto_msgTypes[70] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3668,7 +3760,7 @@ func (x *AiTextCallRequest) String() string { func (*AiTextCallRequest) ProtoMessage() {} func (x *AiTextCallRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[68] + mi := &file_v1_capability_proto_msgTypes[70] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3681,7 +3773,7 @@ func (x *AiTextCallRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AiTextCallRequest.ProtoReflect.Descriptor instead. func (*AiTextCallRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{68} + return file_v1_capability_proto_rawDescGZIP(), []int{70} } func (x *AiTextCallRequest) GetTaskKey() string { @@ -3714,7 +3806,7 @@ type AiTextCallResponse struct { func (x *AiTextCallResponse) Reset() { *x = AiTextCallResponse{} - mi := &file_v1_capability_proto_msgTypes[69] + mi := &file_v1_capability_proto_msgTypes[71] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3726,7 +3818,7 @@ func (x *AiTextCallResponse) String() string { func (*AiTextCallResponse) ProtoMessage() {} func (x *AiTextCallResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[69] + mi := &file_v1_capability_proto_msgTypes[71] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3739,7 +3831,7 @@ func (x *AiTextCallResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AiTextCallResponse.ProtoReflect.Descriptor instead. func (*AiTextCallResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{69} + return file_v1_capability_proto_rawDescGZIP(), []int{71} } func (x *AiTextCallResponse) GetText() string { @@ -3764,7 +3856,7 @@ type AiToolRegisterRequest struct { func (x *AiToolRegisterRequest) Reset() { *x = AiToolRegisterRequest{} - mi := &file_v1_capability_proto_msgTypes[70] + mi := &file_v1_capability_proto_msgTypes[72] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3776,7 +3868,7 @@ func (x *AiToolRegisterRequest) String() string { func (*AiToolRegisterRequest) ProtoMessage() {} func (x *AiToolRegisterRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[70] + mi := &file_v1_capability_proto_msgTypes[72] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3789,7 +3881,7 @@ func (x *AiToolRegisterRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AiToolRegisterRequest.ProtoReflect.Descriptor instead. func (*AiToolRegisterRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{70} + return file_v1_capability_proto_rawDescGZIP(), []int{72} } func (x *AiToolRegisterRequest) GetSlug() string { @@ -3828,7 +3920,7 @@ type AiToolRegisterResponse struct { func (x *AiToolRegisterResponse) Reset() { *x = AiToolRegisterResponse{} - mi := &file_v1_capability_proto_msgTypes[71] + mi := &file_v1_capability_proto_msgTypes[73] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3840,7 +3932,7 @@ func (x *AiToolRegisterResponse) String() string { func (*AiToolRegisterResponse) ProtoMessage() {} func (x *AiToolRegisterResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[71] + mi := &file_v1_capability_proto_msgTypes[73] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3853,7 +3945,7 @@ func (x *AiToolRegisterResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AiToolRegisterResponse.ProtoReflect.Descriptor instead. func (*AiToolRegisterResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{71} + return file_v1_capability_proto_rawDescGZIP(), []int{73} } type BridgeRegisterServiceRequest struct { @@ -3866,7 +3958,7 @@ type BridgeRegisterServiceRequest struct { func (x *BridgeRegisterServiceRequest) Reset() { *x = BridgeRegisterServiceRequest{} - mi := &file_v1_capability_proto_msgTypes[72] + mi := &file_v1_capability_proto_msgTypes[74] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3878,7 +3970,7 @@ func (x *BridgeRegisterServiceRequest) String() string { func (*BridgeRegisterServiceRequest) ProtoMessage() {} func (x *BridgeRegisterServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[72] + mi := &file_v1_capability_proto_msgTypes[74] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3891,7 +3983,7 @@ func (x *BridgeRegisterServiceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BridgeRegisterServiceRequest.ProtoReflect.Descriptor instead. func (*BridgeRegisterServiceRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{72} + return file_v1_capability_proto_rawDescGZIP(), []int{74} } func (x *BridgeRegisterServiceRequest) GetPluginName() string { @@ -3916,7 +4008,7 @@ type BridgeRegisterServiceResponse struct { func (x *BridgeRegisterServiceResponse) Reset() { *x = BridgeRegisterServiceResponse{} - mi := &file_v1_capability_proto_msgTypes[73] + mi := &file_v1_capability_proto_msgTypes[75] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3928,7 +4020,7 @@ func (x *BridgeRegisterServiceResponse) String() string { func (*BridgeRegisterServiceResponse) ProtoMessage() {} func (x *BridgeRegisterServiceResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[73] + mi := &file_v1_capability_proto_msgTypes[75] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3941,7 +4033,7 @@ func (x *BridgeRegisterServiceResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use BridgeRegisterServiceResponse.ProtoReflect.Descriptor instead. func (*BridgeRegisterServiceResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{73} + return file_v1_capability_proto_rawDescGZIP(), []int{75} } type BridgeGetServiceRequest struct { @@ -3954,7 +4046,7 @@ type BridgeGetServiceRequest struct { func (x *BridgeGetServiceRequest) Reset() { *x = BridgeGetServiceRequest{} - mi := &file_v1_capability_proto_msgTypes[74] + mi := &file_v1_capability_proto_msgTypes[76] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3966,7 +4058,7 @@ func (x *BridgeGetServiceRequest) String() string { func (*BridgeGetServiceRequest) ProtoMessage() {} func (x *BridgeGetServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[74] + mi := &file_v1_capability_proto_msgTypes[76] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3979,7 +4071,7 @@ func (x *BridgeGetServiceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BridgeGetServiceRequest.ProtoReflect.Descriptor instead. func (*BridgeGetServiceRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{74} + return file_v1_capability_proto_rawDescGZIP(), []int{76} } func (x *BridgeGetServiceRequest) GetPluginName() string { @@ -4005,7 +4097,7 @@ type BridgeGetServiceResponse struct { func (x *BridgeGetServiceResponse) Reset() { *x = BridgeGetServiceResponse{} - mi := &file_v1_capability_proto_msgTypes[75] + mi := &file_v1_capability_proto_msgTypes[77] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4017,7 +4109,7 @@ func (x *BridgeGetServiceResponse) String() string { func (*BridgeGetServiceResponse) ProtoMessage() {} func (x *BridgeGetServiceResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[75] + mi := &file_v1_capability_proto_msgTypes[77] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4030,7 +4122,7 @@ func (x *BridgeGetServiceResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use BridgeGetServiceResponse.ProtoReflect.Descriptor instead. func (*BridgeGetServiceResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{75} + return file_v1_capability_proto_rawDescGZIP(), []int{77} } func (x *BridgeGetServiceResponse) GetAvailable() bool { @@ -4051,7 +4143,7 @@ type JobsSubmitRequest struct { func (x *JobsSubmitRequest) Reset() { *x = JobsSubmitRequest{} - mi := &file_v1_capability_proto_msgTypes[76] + mi := &file_v1_capability_proto_msgTypes[78] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4063,7 +4155,7 @@ func (x *JobsSubmitRequest) String() string { func (*JobsSubmitRequest) ProtoMessage() {} func (x *JobsSubmitRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[76] + mi := &file_v1_capability_proto_msgTypes[78] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4076,7 +4168,7 @@ func (x *JobsSubmitRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use JobsSubmitRequest.ProtoReflect.Descriptor instead. func (*JobsSubmitRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{76} + return file_v1_capability_proto_rawDescGZIP(), []int{78} } func (x *JobsSubmitRequest) GetJobType() string { @@ -4101,7 +4193,7 @@ type JobsSubmitResponse struct { func (x *JobsSubmitResponse) Reset() { *x = JobsSubmitResponse{} - mi := &file_v1_capability_proto_msgTypes[77] + mi := &file_v1_capability_proto_msgTypes[79] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4113,7 +4205,7 @@ func (x *JobsSubmitResponse) String() string { func (*JobsSubmitResponse) ProtoMessage() {} func (x *JobsSubmitResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[77] + mi := &file_v1_capability_proto_msgTypes[79] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4126,7 +4218,7 @@ func (x *JobsSubmitResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use JobsSubmitResponse.ProtoReflect.Descriptor instead. func (*JobsSubmitResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{77} + return file_v1_capability_proto_rawDescGZIP(), []int{79} } type EmbeddingsGenerateEmbeddingRequest struct { @@ -4138,7 +4230,7 @@ type EmbeddingsGenerateEmbeddingRequest struct { func (x *EmbeddingsGenerateEmbeddingRequest) Reset() { *x = EmbeddingsGenerateEmbeddingRequest{} - mi := &file_v1_capability_proto_msgTypes[78] + mi := &file_v1_capability_proto_msgTypes[80] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4150,7 +4242,7 @@ func (x *EmbeddingsGenerateEmbeddingRequest) String() string { func (*EmbeddingsGenerateEmbeddingRequest) ProtoMessage() {} func (x *EmbeddingsGenerateEmbeddingRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[78] + mi := &file_v1_capability_proto_msgTypes[80] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4163,7 +4255,7 @@ func (x *EmbeddingsGenerateEmbeddingRequest) ProtoReflect() protoreflect.Message // Deprecated: Use EmbeddingsGenerateEmbeddingRequest.ProtoReflect.Descriptor instead. func (*EmbeddingsGenerateEmbeddingRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{78} + return file_v1_capability_proto_rawDescGZIP(), []int{80} } func (x *EmbeddingsGenerateEmbeddingRequest) GetText() string { @@ -4182,7 +4274,7 @@ type EmbeddingsGenerateEmbeddingResponse struct { func (x *EmbeddingsGenerateEmbeddingResponse) Reset() { *x = EmbeddingsGenerateEmbeddingResponse{} - mi := &file_v1_capability_proto_msgTypes[79] + mi := &file_v1_capability_proto_msgTypes[81] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4194,7 +4286,7 @@ func (x *EmbeddingsGenerateEmbeddingResponse) String() string { func (*EmbeddingsGenerateEmbeddingResponse) ProtoMessage() {} func (x *EmbeddingsGenerateEmbeddingResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[79] + mi := &file_v1_capability_proto_msgTypes[81] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4207,7 +4299,7 @@ func (x *EmbeddingsGenerateEmbeddingResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use EmbeddingsGenerateEmbeddingResponse.ProtoReflect.Descriptor instead. func (*EmbeddingsGenerateEmbeddingResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{79} + return file_v1_capability_proto_rawDescGZIP(), []int{81} } func (x *EmbeddingsGenerateEmbeddingResponse) GetEmbedding() []float32 { @@ -4228,7 +4320,7 @@ type EmbeddingsEmbedContentRequest struct { func (x *EmbeddingsEmbedContentRequest) Reset() { *x = EmbeddingsEmbedContentRequest{} - mi := &file_v1_capability_proto_msgTypes[80] + mi := &file_v1_capability_proto_msgTypes[82] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4240,7 +4332,7 @@ func (x *EmbeddingsEmbedContentRequest) String() string { func (*EmbeddingsEmbedContentRequest) ProtoMessage() {} func (x *EmbeddingsEmbedContentRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[80] + mi := &file_v1_capability_proto_msgTypes[82] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4253,7 +4345,7 @@ func (x *EmbeddingsEmbedContentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use EmbeddingsEmbedContentRequest.ProtoReflect.Descriptor instead. func (*EmbeddingsEmbedContentRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{80} + return file_v1_capability_proto_rawDescGZIP(), []int{82} } func (x *EmbeddingsEmbedContentRequest) GetSourceType() string { @@ -4286,7 +4378,7 @@ type EmbeddingsEmbedContentResponse struct { func (x *EmbeddingsEmbedContentResponse) Reset() { *x = EmbeddingsEmbedContentResponse{} - mi := &file_v1_capability_proto_msgTypes[81] + mi := &file_v1_capability_proto_msgTypes[83] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4298,7 +4390,7 @@ func (x *EmbeddingsEmbedContentResponse) String() string { func (*EmbeddingsEmbedContentResponse) ProtoMessage() {} func (x *EmbeddingsEmbedContentResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[81] + mi := &file_v1_capability_proto_msgTypes[83] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4311,7 +4403,7 @@ func (x *EmbeddingsEmbedContentResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use EmbeddingsEmbedContentResponse.ProtoReflect.Descriptor instead. func (*EmbeddingsEmbedContentResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{81} + return file_v1_capability_proto_rawDescGZIP(), []int{83} } func (x *EmbeddingsEmbedContentResponse) GetEmbedded() bool { @@ -4329,7 +4421,7 @@ type EmbeddingsIsAvailableRequest struct { func (x *EmbeddingsIsAvailableRequest) Reset() { *x = EmbeddingsIsAvailableRequest{} - mi := &file_v1_capability_proto_msgTypes[82] + mi := &file_v1_capability_proto_msgTypes[84] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4341,7 +4433,7 @@ func (x *EmbeddingsIsAvailableRequest) String() string { func (*EmbeddingsIsAvailableRequest) ProtoMessage() {} func (x *EmbeddingsIsAvailableRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[82] + mi := &file_v1_capability_proto_msgTypes[84] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4354,7 +4446,7 @@ func (x *EmbeddingsIsAvailableRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use EmbeddingsIsAvailableRequest.ProtoReflect.Descriptor instead. func (*EmbeddingsIsAvailableRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{82} + return file_v1_capability_proto_rawDescGZIP(), []int{84} } type EmbeddingsIsAvailableResponse struct { @@ -4366,7 +4458,7 @@ type EmbeddingsIsAvailableResponse struct { func (x *EmbeddingsIsAvailableResponse) Reset() { *x = EmbeddingsIsAvailableResponse{} - mi := &file_v1_capability_proto_msgTypes[83] + mi := &file_v1_capability_proto_msgTypes[85] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4378,7 +4470,7 @@ func (x *EmbeddingsIsAvailableResponse) String() string { func (*EmbeddingsIsAvailableResponse) ProtoMessage() {} func (x *EmbeddingsIsAvailableResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[83] + mi := &file_v1_capability_proto_msgTypes[85] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4391,7 +4483,7 @@ func (x *EmbeddingsIsAvailableResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use EmbeddingsIsAvailableResponse.ProtoReflect.Descriptor instead. func (*EmbeddingsIsAvailableResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{83} + return file_v1_capability_proto_rawDescGZIP(), []int{85} } func (x *EmbeddingsIsAvailableResponse) GetAvailable() bool { @@ -4411,7 +4503,7 @@ type RagQueryRequest struct { func (x *RagQueryRequest) Reset() { *x = RagQueryRequest{} - mi := &file_v1_capability_proto_msgTypes[84] + mi := &file_v1_capability_proto_msgTypes[86] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4423,7 +4515,7 @@ func (x *RagQueryRequest) String() string { func (*RagQueryRequest) ProtoMessage() {} func (x *RagQueryRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[84] + mi := &file_v1_capability_proto_msgTypes[86] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4436,7 +4528,7 @@ func (x *RagQueryRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RagQueryRequest.ProtoReflect.Descriptor instead. func (*RagQueryRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{84} + return file_v1_capability_proto_rawDescGZIP(), []int{86} } func (x *RagQueryRequest) GetQuery() string { @@ -4462,7 +4554,7 @@ type RagQueryResponse struct { func (x *RagQueryResponse) Reset() { *x = RagQueryResponse{} - mi := &file_v1_capability_proto_msgTypes[85] + mi := &file_v1_capability_proto_msgTypes[87] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4474,7 +4566,7 @@ func (x *RagQueryResponse) String() string { func (*RagQueryResponse) ProtoMessage() {} func (x *RagQueryResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[85] + mi := &file_v1_capability_proto_msgTypes[87] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4487,7 +4579,7 @@ func (x *RagQueryResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RagQueryResponse.ProtoReflect.Descriptor instead. func (*RagQueryResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{85} + return file_v1_capability_proto_rawDescGZIP(), []int{87} } func (x *RagQueryResponse) GetResults() []*RagResult { @@ -4509,7 +4601,7 @@ type RagResult struct { func (x *RagResult) Reset() { *x = RagResult{} - mi := &file_v1_capability_proto_msgTypes[86] + mi := &file_v1_capability_proto_msgTypes[88] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4521,7 +4613,7 @@ func (x *RagResult) String() string { func (*RagResult) ProtoMessage() {} func (x *RagResult) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[86] + mi := &file_v1_capability_proto_msgTypes[88] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4534,7 +4626,7 @@ func (x *RagResult) ProtoReflect() protoreflect.Message { // Deprecated: Use RagResult.ProtoReflect.Descriptor instead. func (*RagResult) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{86} + return file_v1_capability_proto_rawDescGZIP(), []int{88} } func (x *RagResult) GetContent() string { @@ -4568,7 +4660,7 @@ type RagOnContentChangedRequest struct { func (x *RagOnContentChangedRequest) Reset() { *x = RagOnContentChangedRequest{} - mi := &file_v1_capability_proto_msgTypes[87] + mi := &file_v1_capability_proto_msgTypes[89] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4580,7 +4672,7 @@ func (x *RagOnContentChangedRequest) String() string { func (*RagOnContentChangedRequest) ProtoMessage() {} func (x *RagOnContentChangedRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[87] + mi := &file_v1_capability_proto_msgTypes[89] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4593,7 +4685,7 @@ func (x *RagOnContentChangedRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RagOnContentChangedRequest.ProtoReflect.Descriptor instead. func (*RagOnContentChangedRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{87} + return file_v1_capability_proto_rawDescGZIP(), []int{89} } func (x *RagOnContentChangedRequest) GetContentType() string { @@ -4618,7 +4710,7 @@ type RagOnContentChangedResponse struct { func (x *RagOnContentChangedResponse) Reset() { *x = RagOnContentChangedResponse{} - mi := &file_v1_capability_proto_msgTypes[88] + mi := &file_v1_capability_proto_msgTypes[90] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4630,7 +4722,7 @@ func (x *RagOnContentChangedResponse) String() string { func (*RagOnContentChangedResponse) ProtoMessage() {} func (x *RagOnContentChangedResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[88] + mi := &file_v1_capability_proto_msgTypes[90] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4643,7 +4735,7 @@ func (x *RagOnContentChangedResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RagOnContentChangedResponse.ProtoReflect.Descriptor instead. func (*RagOnContentChangedResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{88} + return file_v1_capability_proto_rawDescGZIP(), []int{90} } // ReviewsSubmitReviewRequest mirrors plugin.SubmitReviewParams. @@ -4662,7 +4754,7 @@ type ReviewsSubmitReviewRequest struct { func (x *ReviewsSubmitReviewRequest) Reset() { *x = ReviewsSubmitReviewRequest{} - mi := &file_v1_capability_proto_msgTypes[89] + mi := &file_v1_capability_proto_msgTypes[91] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4674,7 +4766,7 @@ func (x *ReviewsSubmitReviewRequest) String() string { func (*ReviewsSubmitReviewRequest) ProtoMessage() {} func (x *ReviewsSubmitReviewRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[89] + mi := &file_v1_capability_proto_msgTypes[91] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4687,7 +4779,7 @@ func (x *ReviewsSubmitReviewRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ReviewsSubmitReviewRequest.ProtoReflect.Descriptor instead. func (*ReviewsSubmitReviewRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{89} + return file_v1_capability_proto_rawDescGZIP(), []int{91} } func (x *ReviewsSubmitReviewRequest) GetTableId() string { @@ -4741,7 +4833,7 @@ type ReviewsSubmitReviewResponse struct { func (x *ReviewsSubmitReviewResponse) Reset() { *x = ReviewsSubmitReviewResponse{} - mi := &file_v1_capability_proto_msgTypes[90] + mi := &file_v1_capability_proto_msgTypes[92] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4753,7 +4845,7 @@ func (x *ReviewsSubmitReviewResponse) String() string { func (*ReviewsSubmitReviewResponse) ProtoMessage() {} func (x *ReviewsSubmitReviewResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[90] + mi := &file_v1_capability_proto_msgTypes[92] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4766,7 +4858,7 @@ func (x *ReviewsSubmitReviewResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ReviewsSubmitReviewResponse.ProtoReflect.Descriptor instead. func (*ReviewsSubmitReviewResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{90} + return file_v1_capability_proto_rawDescGZIP(), []int{92} } func (x *ReviewsSubmitReviewResponse) GetReviewId() string { @@ -4786,7 +4878,7 @@ type BadgesRefreshBadgesRequest struct { func (x *BadgesRefreshBadgesRequest) Reset() { *x = BadgesRefreshBadgesRequest{} - mi := &file_v1_capability_proto_msgTypes[91] + mi := &file_v1_capability_proto_msgTypes[93] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4798,7 +4890,7 @@ func (x *BadgesRefreshBadgesRequest) String() string { func (*BadgesRefreshBadgesRequest) ProtoMessage() {} func (x *BadgesRefreshBadgesRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[91] + mi := &file_v1_capability_proto_msgTypes[93] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4811,7 +4903,7 @@ func (x *BadgesRefreshBadgesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BadgesRefreshBadgesRequest.ProtoReflect.Descriptor instead. func (*BadgesRefreshBadgesRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{91} + return file_v1_capability_proto_rawDescGZIP(), []int{93} } func (x *BadgesRefreshBadgesRequest) GetTableId() string { @@ -4836,7 +4928,7 @@ type BadgesRefreshBadgesResponse struct { func (x *BadgesRefreshBadgesResponse) Reset() { *x = BadgesRefreshBadgesResponse{} - mi := &file_v1_capability_proto_msgTypes[92] + mi := &file_v1_capability_proto_msgTypes[94] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4848,7 +4940,7 @@ func (x *BadgesRefreshBadgesResponse) String() string { func (*BadgesRefreshBadgesResponse) ProtoMessage() {} func (x *BadgesRefreshBadgesResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[92] + mi := &file_v1_capability_proto_msgTypes[94] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4861,7 +4953,7 @@ func (x *BadgesRefreshBadgesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use BadgesRefreshBadgesResponse.ProtoReflect.Descriptor instead. func (*BadgesRefreshBadgesResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{92} + return file_v1_capability_proto_rawDescGZIP(), []int{94} } type ContentCreatePageRequest struct { @@ -4877,7 +4969,7 @@ type ContentCreatePageRequest struct { func (x *ContentCreatePageRequest) Reset() { *x = ContentCreatePageRequest{} - mi := &file_v1_capability_proto_msgTypes[93] + mi := &file_v1_capability_proto_msgTypes[95] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4889,7 +4981,7 @@ func (x *ContentCreatePageRequest) String() string { func (*ContentCreatePageRequest) ProtoMessage() {} func (x *ContentCreatePageRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[93] + mi := &file_v1_capability_proto_msgTypes[95] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4902,7 +4994,7 @@ func (x *ContentCreatePageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentCreatePageRequest.ProtoReflect.Descriptor instead. func (*ContentCreatePageRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{93} + return file_v1_capability_proto_rawDescGZIP(), []int{95} } func (x *ContentCreatePageRequest) GetSlug() string { @@ -4952,7 +5044,7 @@ type ContentCreatePageResponse struct { func (x *ContentCreatePageResponse) Reset() { *x = ContentCreatePageResponse{} - mi := &file_v1_capability_proto_msgTypes[94] + mi := &file_v1_capability_proto_msgTypes[96] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4964,7 +5056,7 @@ func (x *ContentCreatePageResponse) String() string { func (*ContentCreatePageResponse) ProtoMessage() {} func (x *ContentCreatePageResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[94] + mi := &file_v1_capability_proto_msgTypes[96] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4977,7 +5069,7 @@ func (x *ContentCreatePageResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentCreatePageResponse.ProtoReflect.Descriptor instead. func (*ContentCreatePageResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{94} + return file_v1_capability_proto_rawDescGZIP(), []int{96} } func (x *ContentCreatePageResponse) GetPageId() string { @@ -5011,7 +5103,7 @@ type PageBlock struct { func (x *PageBlock) Reset() { *x = PageBlock{} - mi := &file_v1_capability_proto_msgTypes[95] + mi := &file_v1_capability_proto_msgTypes[97] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5023,7 +5115,7 @@ func (x *PageBlock) String() string { func (*PageBlock) ProtoMessage() {} func (x *PageBlock) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[95] + mi := &file_v1_capability_proto_msgTypes[97] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5036,7 +5128,7 @@ func (x *PageBlock) ProtoReflect() protoreflect.Message { // Deprecated: Use PageBlock.ProtoReflect.Descriptor instead. func (*PageBlock) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{95} + return file_v1_capability_proto_rawDescGZIP(), []int{97} } func (x *PageBlock) GetBlockKey() string { @@ -5092,7 +5184,7 @@ type ContentSetPageBlocksRequest struct { func (x *ContentSetPageBlocksRequest) Reset() { *x = ContentSetPageBlocksRequest{} - mi := &file_v1_capability_proto_msgTypes[96] + mi := &file_v1_capability_proto_msgTypes[98] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5104,7 +5196,7 @@ func (x *ContentSetPageBlocksRequest) String() string { func (*ContentSetPageBlocksRequest) ProtoMessage() {} func (x *ContentSetPageBlocksRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[96] + mi := &file_v1_capability_proto_msgTypes[98] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5117,7 +5209,7 @@ func (x *ContentSetPageBlocksRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentSetPageBlocksRequest.ProtoReflect.Descriptor instead. func (*ContentSetPageBlocksRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{96} + return file_v1_capability_proto_rawDescGZIP(), []int{98} } func (x *ContentSetPageBlocksRequest) GetPageId() string { @@ -5142,7 +5234,7 @@ type ContentSetPageBlocksResponse struct { func (x *ContentSetPageBlocksResponse) Reset() { *x = ContentSetPageBlocksResponse{} - mi := &file_v1_capability_proto_msgTypes[97] + mi := &file_v1_capability_proto_msgTypes[99] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5154,7 +5246,7 @@ func (x *ContentSetPageBlocksResponse) String() string { func (*ContentSetPageBlocksResponse) ProtoMessage() {} func (x *ContentSetPageBlocksResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[97] + mi := &file_v1_capability_proto_msgTypes[99] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5167,7 +5259,7 @@ func (x *ContentSetPageBlocksResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentSetPageBlocksResponse.ProtoReflect.Descriptor instead. func (*ContentSetPageBlocksResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{97} + return file_v1_capability_proto_rawDescGZIP(), []int{99} } type ContentPublishPageRequest struct { @@ -5179,7 +5271,7 @@ type ContentPublishPageRequest struct { func (x *ContentPublishPageRequest) Reset() { *x = ContentPublishPageRequest{} - mi := &file_v1_capability_proto_msgTypes[98] + mi := &file_v1_capability_proto_msgTypes[100] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5191,7 +5283,7 @@ func (x *ContentPublishPageRequest) String() string { func (*ContentPublishPageRequest) ProtoMessage() {} func (x *ContentPublishPageRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[98] + mi := &file_v1_capability_proto_msgTypes[100] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5204,7 +5296,7 @@ func (x *ContentPublishPageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentPublishPageRequest.ProtoReflect.Descriptor instead. func (*ContentPublishPageRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{98} + return file_v1_capability_proto_rawDescGZIP(), []int{100} } func (x *ContentPublishPageRequest) GetPageId() string { @@ -5222,7 +5314,7 @@ type ContentPublishPageResponse struct { func (x *ContentPublishPageResponse) Reset() { *x = ContentPublishPageResponse{} - mi := &file_v1_capability_proto_msgTypes[99] + mi := &file_v1_capability_proto_msgTypes[101] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5234,7 +5326,7 @@ func (x *ContentPublishPageResponse) String() string { func (*ContentPublishPageResponse) ProtoMessage() {} func (x *ContentPublishPageResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[99] + mi := &file_v1_capability_proto_msgTypes[101] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5247,7 +5339,7 @@ func (x *ContentPublishPageResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentPublishPageResponse.ProtoReflect.Descriptor instead. func (*ContentPublishPageResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{99} + return file_v1_capability_proto_rawDescGZIP(), []int{101} } // ContentSetPageSeoRequest mirrors the CMS UpdatePageSEO surface. Unset @@ -5272,7 +5364,7 @@ type ContentSetPageSeoRequest struct { func (x *ContentSetPageSeoRequest) Reset() { *x = ContentSetPageSeoRequest{} - mi := &file_v1_capability_proto_msgTypes[100] + mi := &file_v1_capability_proto_msgTypes[102] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5284,7 +5376,7 @@ func (x *ContentSetPageSeoRequest) String() string { func (*ContentSetPageSeoRequest) ProtoMessage() {} func (x *ContentSetPageSeoRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[100] + mi := &file_v1_capability_proto_msgTypes[102] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5297,7 +5389,7 @@ func (x *ContentSetPageSeoRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentSetPageSeoRequest.ProtoReflect.Descriptor instead. func (*ContentSetPageSeoRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{100} + return file_v1_capability_proto_rawDescGZIP(), []int{102} } func (x *ContentSetPageSeoRequest) GetPageId() string { @@ -5392,7 +5484,7 @@ type ContentSetPageSeoResponse struct { func (x *ContentSetPageSeoResponse) Reset() { *x = ContentSetPageSeoResponse{} - mi := &file_v1_capability_proto_msgTypes[101] + mi := &file_v1_capability_proto_msgTypes[103] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5404,7 +5496,7 @@ func (x *ContentSetPageSeoResponse) String() string { func (*ContentSetPageSeoResponse) ProtoMessage() {} func (x *ContentSetPageSeoResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[101] + mi := &file_v1_capability_proto_msgTypes[103] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5417,7 +5509,7 @@ func (x *ContentSetPageSeoResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentSetPageSeoResponse.ProtoReflect.Descriptor instead. func (*ContentSetPageSeoResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{101} + return file_v1_capability_proto_rawDescGZIP(), []int{103} } // ContentUpsertPostRequest creates or updates a blog post by slug (posts live @@ -5440,7 +5532,7 @@ type ContentUpsertPostRequest struct { func (x *ContentUpsertPostRequest) Reset() { *x = ContentUpsertPostRequest{} - mi := &file_v1_capability_proto_msgTypes[102] + mi := &file_v1_capability_proto_msgTypes[104] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5452,7 +5544,7 @@ func (x *ContentUpsertPostRequest) String() string { func (*ContentUpsertPostRequest) ProtoMessage() {} func (x *ContentUpsertPostRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[102] + mi := &file_v1_capability_proto_msgTypes[104] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5465,7 +5557,7 @@ func (x *ContentUpsertPostRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentUpsertPostRequest.ProtoReflect.Descriptor instead. func (*ContentUpsertPostRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{102} + return file_v1_capability_proto_rawDescGZIP(), []int{104} } func (x *ContentUpsertPostRequest) GetSlug() string { @@ -5534,7 +5626,7 @@ type ContentUpsertPostResponse struct { func (x *ContentUpsertPostResponse) Reset() { *x = ContentUpsertPostResponse{} - mi := &file_v1_capability_proto_msgTypes[103] + mi := &file_v1_capability_proto_msgTypes[105] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5546,7 +5638,7 @@ func (x *ContentUpsertPostResponse) String() string { func (*ContentUpsertPostResponse) ProtoMessage() {} func (x *ContentUpsertPostResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[103] + mi := &file_v1_capability_proto_msgTypes[105] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5559,7 +5651,7 @@ func (x *ContentUpsertPostResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentUpsertPostResponse.ProtoReflect.Descriptor instead. func (*ContentUpsertPostResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{103} + return file_v1_capability_proto_rawDescGZIP(), []int{105} } func (x *ContentUpsertPostResponse) GetPostId() string { @@ -5590,7 +5682,7 @@ type ProvisionerEnsureDataTableRequest struct { func (x *ProvisionerEnsureDataTableRequest) Reset() { *x = ProvisionerEnsureDataTableRequest{} - mi := &file_v1_capability_proto_msgTypes[104] + mi := &file_v1_capability_proto_msgTypes[106] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5602,7 +5694,7 @@ func (x *ProvisionerEnsureDataTableRequest) String() string { func (*ProvisionerEnsureDataTableRequest) ProtoMessage() {} func (x *ProvisionerEnsureDataTableRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[104] + mi := &file_v1_capability_proto_msgTypes[106] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5615,7 +5707,7 @@ func (x *ProvisionerEnsureDataTableRequest) ProtoReflect() protoreflect.Message // Deprecated: Use ProvisionerEnsureDataTableRequest.ProtoReflect.Descriptor instead. func (*ProvisionerEnsureDataTableRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{104} + return file_v1_capability_proto_rawDescGZIP(), []int{106} } func (x *ProvisionerEnsureDataTableRequest) GetKey() string { @@ -5661,7 +5753,7 @@ type ProvisionerEnsureDataTableResponse struct { func (x *ProvisionerEnsureDataTableResponse) Reset() { *x = ProvisionerEnsureDataTableResponse{} - mi := &file_v1_capability_proto_msgTypes[105] + mi := &file_v1_capability_proto_msgTypes[107] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5673,7 +5765,7 @@ func (x *ProvisionerEnsureDataTableResponse) String() string { func (*ProvisionerEnsureDataTableResponse) ProtoMessage() {} func (x *ProvisionerEnsureDataTableResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[105] + mi := &file_v1_capability_proto_msgTypes[107] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5686,7 +5778,7 @@ func (x *ProvisionerEnsureDataTableResponse) ProtoReflect() protoreflect.Message // Deprecated: Use ProvisionerEnsureDataTableResponse.ProtoReflect.Descriptor instead. func (*ProvisionerEnsureDataTableResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{105} + return file_v1_capability_proto_rawDescGZIP(), []int{107} } type ProvisionerMergeSiteSettingsRequest struct { @@ -5699,7 +5791,7 @@ type ProvisionerMergeSiteSettingsRequest struct { func (x *ProvisionerMergeSiteSettingsRequest) Reset() { *x = ProvisionerMergeSiteSettingsRequest{} - mi := &file_v1_capability_proto_msgTypes[106] + mi := &file_v1_capability_proto_msgTypes[108] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5711,7 +5803,7 @@ func (x *ProvisionerMergeSiteSettingsRequest) String() string { func (*ProvisionerMergeSiteSettingsRequest) ProtoMessage() {} func (x *ProvisionerMergeSiteSettingsRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[106] + mi := &file_v1_capability_proto_msgTypes[108] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5724,7 +5816,7 @@ func (x *ProvisionerMergeSiteSettingsRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use ProvisionerMergeSiteSettingsRequest.ProtoReflect.Descriptor instead. func (*ProvisionerMergeSiteSettingsRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{106} + return file_v1_capability_proto_rawDescGZIP(), []int{108} } func (x *ProvisionerMergeSiteSettingsRequest) GetDefaultsJson() []byte { @@ -5742,7 +5834,7 @@ type ProvisionerMergeSiteSettingsResponse struct { func (x *ProvisionerMergeSiteSettingsResponse) Reset() { *x = ProvisionerMergeSiteSettingsResponse{} - mi := &file_v1_capability_proto_msgTypes[107] + mi := &file_v1_capability_proto_msgTypes[109] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5754,7 +5846,7 @@ func (x *ProvisionerMergeSiteSettingsResponse) String() string { func (*ProvisionerMergeSiteSettingsResponse) ProtoMessage() {} func (x *ProvisionerMergeSiteSettingsResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[107] + mi := &file_v1_capability_proto_msgTypes[109] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5767,7 +5859,7 @@ func (x *ProvisionerMergeSiteSettingsResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use ProvisionerMergeSiteSettingsResponse.ProtoReflect.Descriptor instead. func (*ProvisionerMergeSiteSettingsResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{107} + return file_v1_capability_proto_rawDescGZIP(), []int{109} } type ProvisionerEnsureSettingRequest struct { @@ -5781,7 +5873,7 @@ type ProvisionerEnsureSettingRequest struct { func (x *ProvisionerEnsureSettingRequest) Reset() { *x = ProvisionerEnsureSettingRequest{} - mi := &file_v1_capability_proto_msgTypes[108] + mi := &file_v1_capability_proto_msgTypes[110] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5793,7 +5885,7 @@ func (x *ProvisionerEnsureSettingRequest) String() string { func (*ProvisionerEnsureSettingRequest) ProtoMessage() {} func (x *ProvisionerEnsureSettingRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[108] + mi := &file_v1_capability_proto_msgTypes[110] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5806,7 +5898,7 @@ func (x *ProvisionerEnsureSettingRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ProvisionerEnsureSettingRequest.ProtoReflect.Descriptor instead. func (*ProvisionerEnsureSettingRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{108} + return file_v1_capability_proto_rawDescGZIP(), []int{110} } func (x *ProvisionerEnsureSettingRequest) GetKey() string { @@ -5831,7 +5923,7 @@ type ProvisionerEnsureSettingResponse struct { func (x *ProvisionerEnsureSettingResponse) Reset() { *x = ProvisionerEnsureSettingResponse{} - mi := &file_v1_capability_proto_msgTypes[109] + mi := &file_v1_capability_proto_msgTypes[111] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5843,7 +5935,7 @@ func (x *ProvisionerEnsureSettingResponse) String() string { func (*ProvisionerEnsureSettingResponse) ProtoMessage() {} func (x *ProvisionerEnsureSettingResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[109] + mi := &file_v1_capability_proto_msgTypes[111] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5856,7 +5948,7 @@ func (x *ProvisionerEnsureSettingResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ProvisionerEnsureSettingResponse.ProtoReflect.Descriptor instead. func (*ProvisionerEnsureSettingResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{109} + return file_v1_capability_proto_rawDescGZIP(), []int{111} } // PageSeed mirrors plugin.PageConfig. @@ -5878,7 +5970,7 @@ type PageSeed struct { func (x *PageSeed) Reset() { *x = PageSeed{} - mi := &file_v1_capability_proto_msgTypes[110] + mi := &file_v1_capability_proto_msgTypes[112] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5890,7 +5982,7 @@ func (x *PageSeed) String() string { func (*PageSeed) ProtoMessage() {} func (x *PageSeed) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[110] + mi := &file_v1_capability_proto_msgTypes[112] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5903,7 +5995,7 @@ func (x *PageSeed) ProtoReflect() protoreflect.Message { // Deprecated: Use PageSeed.ProtoReflect.Descriptor instead. func (*PageSeed) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{110} + return file_v1_capability_proto_rawDescGZIP(), []int{112} } func (x *PageSeed) GetSlug() string { @@ -5985,7 +6077,7 @@ type ProvisionerEnsurePageRequest struct { func (x *ProvisionerEnsurePageRequest) Reset() { *x = ProvisionerEnsurePageRequest{} - mi := &file_v1_capability_proto_msgTypes[111] + mi := &file_v1_capability_proto_msgTypes[113] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5997,7 +6089,7 @@ func (x *ProvisionerEnsurePageRequest) String() string { func (*ProvisionerEnsurePageRequest) ProtoMessage() {} func (x *ProvisionerEnsurePageRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[111] + mi := &file_v1_capability_proto_msgTypes[113] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6010,7 +6102,7 @@ func (x *ProvisionerEnsurePageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ProvisionerEnsurePageRequest.ProtoReflect.Descriptor instead. func (*ProvisionerEnsurePageRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{111} + return file_v1_capability_proto_rawDescGZIP(), []int{113} } func (x *ProvisionerEnsurePageRequest) GetPage() *PageSeed { @@ -6028,7 +6120,7 @@ type ProvisionerEnsurePageResponse struct { func (x *ProvisionerEnsurePageResponse) Reset() { *x = ProvisionerEnsurePageResponse{} - mi := &file_v1_capability_proto_msgTypes[112] + mi := &file_v1_capability_proto_msgTypes[114] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6040,7 +6132,7 @@ func (x *ProvisionerEnsurePageResponse) String() string { func (*ProvisionerEnsurePageResponse) ProtoMessage() {} func (x *ProvisionerEnsurePageResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[112] + mi := &file_v1_capability_proto_msgTypes[114] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6053,7 +6145,7 @@ func (x *ProvisionerEnsurePageResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ProvisionerEnsurePageResponse.ProtoReflect.Descriptor instead. func (*ProvisionerEnsurePageResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{112} + return file_v1_capability_proto_rawDescGZIP(), []int{114} } type ProvisionerOverrideSiteSettingsRequest struct { @@ -6066,7 +6158,7 @@ type ProvisionerOverrideSiteSettingsRequest struct { func (x *ProvisionerOverrideSiteSettingsRequest) Reset() { *x = ProvisionerOverrideSiteSettingsRequest{} - mi := &file_v1_capability_proto_msgTypes[113] + mi := &file_v1_capability_proto_msgTypes[115] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6078,7 +6170,7 @@ func (x *ProvisionerOverrideSiteSettingsRequest) String() string { func (*ProvisionerOverrideSiteSettingsRequest) ProtoMessage() {} func (x *ProvisionerOverrideSiteSettingsRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[113] + mi := &file_v1_capability_proto_msgTypes[115] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6091,7 +6183,7 @@ func (x *ProvisionerOverrideSiteSettingsRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use ProvisionerOverrideSiteSettingsRequest.ProtoReflect.Descriptor instead. func (*ProvisionerOverrideSiteSettingsRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{113} + return file_v1_capability_proto_rawDescGZIP(), []int{115} } func (x *ProvisionerOverrideSiteSettingsRequest) GetOverridesJson() []byte { @@ -6109,7 +6201,7 @@ type ProvisionerOverrideSiteSettingsResponse struct { func (x *ProvisionerOverrideSiteSettingsResponse) Reset() { *x = ProvisionerOverrideSiteSettingsResponse{} - mi := &file_v1_capability_proto_msgTypes[114] + mi := &file_v1_capability_proto_msgTypes[116] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6121,7 +6213,7 @@ func (x *ProvisionerOverrideSiteSettingsResponse) String() string { func (*ProvisionerOverrideSiteSettingsResponse) ProtoMessage() {} func (x *ProvisionerOverrideSiteSettingsResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[114] + mi := &file_v1_capability_proto_msgTypes[116] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6134,7 +6226,7 @@ func (x *ProvisionerOverrideSiteSettingsResponse) ProtoReflect() protoreflect.Me // Deprecated: Use ProvisionerOverrideSiteSettingsResponse.ProtoReflect.Descriptor instead. func (*ProvisionerOverrideSiteSettingsResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{114} + return file_v1_capability_proto_rawDescGZIP(), []int{116} } // ProvisionerEnsureMenuItemRequest mirrors plugin.MenuItemConfig under a @@ -6152,7 +6244,7 @@ type ProvisionerEnsureMenuItemRequest struct { func (x *ProvisionerEnsureMenuItemRequest) Reset() { *x = ProvisionerEnsureMenuItemRequest{} - mi := &file_v1_capability_proto_msgTypes[115] + mi := &file_v1_capability_proto_msgTypes[117] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6164,7 +6256,7 @@ func (x *ProvisionerEnsureMenuItemRequest) String() string { func (*ProvisionerEnsureMenuItemRequest) ProtoMessage() {} func (x *ProvisionerEnsureMenuItemRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[115] + mi := &file_v1_capability_proto_msgTypes[117] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6177,7 +6269,7 @@ func (x *ProvisionerEnsureMenuItemRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ProvisionerEnsureMenuItemRequest.ProtoReflect.Descriptor instead. func (*ProvisionerEnsureMenuItemRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{115} + return file_v1_capability_proto_rawDescGZIP(), []int{117} } func (x *ProvisionerEnsureMenuItemRequest) GetMenuName() string { @@ -6223,7 +6315,7 @@ type ProvisionerEnsureMenuItemResponse struct { func (x *ProvisionerEnsureMenuItemResponse) Reset() { *x = ProvisionerEnsureMenuItemResponse{} - mi := &file_v1_capability_proto_msgTypes[116] + mi := &file_v1_capability_proto_msgTypes[118] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6235,7 +6327,7 @@ func (x *ProvisionerEnsureMenuItemResponse) String() string { func (*ProvisionerEnsureMenuItemResponse) ProtoMessage() {} func (x *ProvisionerEnsureMenuItemResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[116] + mi := &file_v1_capability_proto_msgTypes[118] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6248,7 +6340,7 @@ func (x *ProvisionerEnsureMenuItemResponse) ProtoReflect() protoreflect.Message // Deprecated: Use ProvisionerEnsureMenuItemResponse.ProtoReflect.Descriptor instead. func (*ProvisionerEnsureMenuItemResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{116} + return file_v1_capability_proto_rawDescGZIP(), []int{118} } // ProvisionerRegisterEmbeddingConfigRequest mirrors plugin.EmbeddingConfigDef. @@ -6263,7 +6355,7 @@ type ProvisionerRegisterEmbeddingConfigRequest struct { func (x *ProvisionerRegisterEmbeddingConfigRequest) Reset() { *x = ProvisionerRegisterEmbeddingConfigRequest{} - mi := &file_v1_capability_proto_msgTypes[117] + mi := &file_v1_capability_proto_msgTypes[119] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6275,7 +6367,7 @@ func (x *ProvisionerRegisterEmbeddingConfigRequest) String() string { func (*ProvisionerRegisterEmbeddingConfigRequest) ProtoMessage() {} func (x *ProvisionerRegisterEmbeddingConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[117] + mi := &file_v1_capability_proto_msgTypes[119] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6288,7 +6380,7 @@ func (x *ProvisionerRegisterEmbeddingConfigRequest) ProtoReflect() protoreflect. // Deprecated: Use ProvisionerRegisterEmbeddingConfigRequest.ProtoReflect.Descriptor instead. func (*ProvisionerRegisterEmbeddingConfigRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{117} + return file_v1_capability_proto_rawDescGZIP(), []int{119} } func (x *ProvisionerRegisterEmbeddingConfigRequest) GetTableKey() string { @@ -6320,7 +6412,7 @@ type ProvisionerRegisterEmbeddingConfigResponse struct { func (x *ProvisionerRegisterEmbeddingConfigResponse) Reset() { *x = ProvisionerRegisterEmbeddingConfigResponse{} - mi := &file_v1_capability_proto_msgTypes[118] + mi := &file_v1_capability_proto_msgTypes[120] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6332,7 +6424,7 @@ func (x *ProvisionerRegisterEmbeddingConfigResponse) String() string { func (*ProvisionerRegisterEmbeddingConfigResponse) ProtoMessage() {} func (x *ProvisionerRegisterEmbeddingConfigResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[118] + mi := &file_v1_capability_proto_msgTypes[120] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6345,7 +6437,7 @@ func (x *ProvisionerRegisterEmbeddingConfigResponse) ProtoReflect() protoreflect // Deprecated: Use ProvisionerRegisterEmbeddingConfigResponse.ProtoReflect.Descriptor instead. func (*ProvisionerRegisterEmbeddingConfigResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{118} + return file_v1_capability_proto_rawDescGZIP(), []int{120} } // ProvisionerEnsureEmbedRequest mirrors plugin.EmbedConfig minus RenderFunc @@ -6366,7 +6458,7 @@ type ProvisionerEnsureEmbedRequest struct { func (x *ProvisionerEnsureEmbedRequest) Reset() { *x = ProvisionerEnsureEmbedRequest{} - mi := &file_v1_capability_proto_msgTypes[119] + mi := &file_v1_capability_proto_msgTypes[121] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6378,7 +6470,7 @@ func (x *ProvisionerEnsureEmbedRequest) String() string { func (*ProvisionerEnsureEmbedRequest) ProtoMessage() {} func (x *ProvisionerEnsureEmbedRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[119] + mi := &file_v1_capability_proto_msgTypes[121] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6391,7 +6483,7 @@ func (x *ProvisionerEnsureEmbedRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ProvisionerEnsureEmbedRequest.ProtoReflect.Descriptor instead. func (*ProvisionerEnsureEmbedRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{119} + return file_v1_capability_proto_rawDescGZIP(), []int{121} } func (x *ProvisionerEnsureEmbedRequest) GetKey() string { @@ -6458,7 +6550,7 @@ type ProvisionerEnsureEmbedResponse struct { func (x *ProvisionerEnsureEmbedResponse) Reset() { *x = ProvisionerEnsureEmbedResponse{} - mi := &file_v1_capability_proto_msgTypes[120] + mi := &file_v1_capability_proto_msgTypes[122] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6470,7 +6562,7 @@ func (x *ProvisionerEnsureEmbedResponse) String() string { func (*ProvisionerEnsureEmbedResponse) ProtoMessage() {} func (x *ProvisionerEnsureEmbedResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[120] + mi := &file_v1_capability_proto_msgTypes[122] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6483,7 +6575,7 @@ func (x *ProvisionerEnsureEmbedResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ProvisionerEnsureEmbedResponse.ProtoReflect.Descriptor instead. func (*ProvisionerEnsureEmbedResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{120} + return file_v1_capability_proto_rawDescGZIP(), []int{122} } // ProvisionerEnsureJobScheduleRequest mirrors plugin.JobScheduleConfig. @@ -6499,7 +6591,7 @@ type ProvisionerEnsureJobScheduleRequest struct { func (x *ProvisionerEnsureJobScheduleRequest) Reset() { *x = ProvisionerEnsureJobScheduleRequest{} - mi := &file_v1_capability_proto_msgTypes[121] + mi := &file_v1_capability_proto_msgTypes[123] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6511,7 +6603,7 @@ func (x *ProvisionerEnsureJobScheduleRequest) String() string { func (*ProvisionerEnsureJobScheduleRequest) ProtoMessage() {} func (x *ProvisionerEnsureJobScheduleRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[121] + mi := &file_v1_capability_proto_msgTypes[123] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6524,7 +6616,7 @@ func (x *ProvisionerEnsureJobScheduleRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use ProvisionerEnsureJobScheduleRequest.ProtoReflect.Descriptor instead. func (*ProvisionerEnsureJobScheduleRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{121} + return file_v1_capability_proto_rawDescGZIP(), []int{123} } func (x *ProvisionerEnsureJobScheduleRequest) GetJobType() string { @@ -6556,7 +6648,7 @@ type ProvisionerEnsureJobScheduleResponse struct { func (x *ProvisionerEnsureJobScheduleResponse) Reset() { *x = ProvisionerEnsureJobScheduleResponse{} - mi := &file_v1_capability_proto_msgTypes[122] + mi := &file_v1_capability_proto_msgTypes[124] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6568,7 +6660,7 @@ func (x *ProvisionerEnsureJobScheduleResponse) String() string { func (*ProvisionerEnsureJobScheduleResponse) ProtoMessage() {} func (x *ProvisionerEnsureJobScheduleResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[122] + mi := &file_v1_capability_proto_msgTypes[124] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6581,7 +6673,7 @@ func (x *ProvisionerEnsureJobScheduleResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use ProvisionerEnsureJobScheduleResponse.ProtoReflect.Descriptor instead. func (*ProvisionerEnsureJobScheduleResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{122} + return file_v1_capability_proto_rawDescGZIP(), []int{124} } type ProvisionerUpdateDataTableRowFieldRequest struct { @@ -6596,7 +6688,7 @@ type ProvisionerUpdateDataTableRowFieldRequest struct { func (x *ProvisionerUpdateDataTableRowFieldRequest) Reset() { *x = ProvisionerUpdateDataTableRowFieldRequest{} - mi := &file_v1_capability_proto_msgTypes[123] + mi := &file_v1_capability_proto_msgTypes[125] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6608,7 +6700,7 @@ func (x *ProvisionerUpdateDataTableRowFieldRequest) String() string { func (*ProvisionerUpdateDataTableRowFieldRequest) ProtoMessage() {} func (x *ProvisionerUpdateDataTableRowFieldRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[123] + mi := &file_v1_capability_proto_msgTypes[125] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6621,7 +6713,7 @@ func (x *ProvisionerUpdateDataTableRowFieldRequest) ProtoReflect() protoreflect. // Deprecated: Use ProvisionerUpdateDataTableRowFieldRequest.ProtoReflect.Descriptor instead. func (*ProvisionerUpdateDataTableRowFieldRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{123} + return file_v1_capability_proto_rawDescGZIP(), []int{125} } func (x *ProvisionerUpdateDataTableRowFieldRequest) GetRowId() string { @@ -6653,7 +6745,7 @@ type ProvisionerUpdateDataTableRowFieldResponse struct { func (x *ProvisionerUpdateDataTableRowFieldResponse) Reset() { *x = ProvisionerUpdateDataTableRowFieldResponse{} - mi := &file_v1_capability_proto_msgTypes[124] + mi := &file_v1_capability_proto_msgTypes[126] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6665,7 +6757,7 @@ func (x *ProvisionerUpdateDataTableRowFieldResponse) String() string { func (*ProvisionerUpdateDataTableRowFieldResponse) ProtoMessage() {} func (x *ProvisionerUpdateDataTableRowFieldResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[124] + mi := &file_v1_capability_proto_msgTypes[126] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6678,7 +6770,7 @@ func (x *ProvisionerUpdateDataTableRowFieldResponse) ProtoReflect() protoreflect // Deprecated: Use ProvisionerUpdateDataTableRowFieldResponse.ProtoReflect.Descriptor instead. func (*ProvisionerUpdateDataTableRowFieldResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{124} + return file_v1_capability_proto_rawDescGZIP(), []int{126} } type ProvisionerDisableOrphanedJobSchedulesRequest struct { @@ -6690,7 +6782,7 @@ type ProvisionerDisableOrphanedJobSchedulesRequest struct { func (x *ProvisionerDisableOrphanedJobSchedulesRequest) Reset() { *x = ProvisionerDisableOrphanedJobSchedulesRequest{} - mi := &file_v1_capability_proto_msgTypes[125] + mi := &file_v1_capability_proto_msgTypes[127] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6702,7 +6794,7 @@ func (x *ProvisionerDisableOrphanedJobSchedulesRequest) String() string { func (*ProvisionerDisableOrphanedJobSchedulesRequest) ProtoMessage() {} func (x *ProvisionerDisableOrphanedJobSchedulesRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[125] + mi := &file_v1_capability_proto_msgTypes[127] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6715,7 +6807,7 @@ func (x *ProvisionerDisableOrphanedJobSchedulesRequest) ProtoReflect() protorefl // Deprecated: Use ProvisionerDisableOrphanedJobSchedulesRequest.ProtoReflect.Descriptor instead. func (*ProvisionerDisableOrphanedJobSchedulesRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{125} + return file_v1_capability_proto_rawDescGZIP(), []int{127} } func (x *ProvisionerDisableOrphanedJobSchedulesRequest) GetRegisteredTypes() []string { @@ -6733,7 +6825,7 @@ type ProvisionerDisableOrphanedJobSchedulesResponse struct { func (x *ProvisionerDisableOrphanedJobSchedulesResponse) Reset() { *x = ProvisionerDisableOrphanedJobSchedulesResponse{} - mi := &file_v1_capability_proto_msgTypes[126] + mi := &file_v1_capability_proto_msgTypes[128] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6745,7 +6837,7 @@ func (x *ProvisionerDisableOrphanedJobSchedulesResponse) String() string { func (*ProvisionerDisableOrphanedJobSchedulesResponse) ProtoMessage() {} func (x *ProvisionerDisableOrphanedJobSchedulesResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[126] + mi := &file_v1_capability_proto_msgTypes[128] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6758,7 +6850,7 @@ func (x *ProvisionerDisableOrphanedJobSchedulesResponse) ProtoReflect() protoref // Deprecated: Use ProvisionerDisableOrphanedJobSchedulesResponse.ProtoReflect.Descriptor instead. func (*ProvisionerDisableOrphanedJobSchedulesResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{126} + return file_v1_capability_proto_rawDescGZIP(), []int{128} } type ProvisionerEnsurePluginRequest struct { @@ -6770,7 +6862,7 @@ type ProvisionerEnsurePluginRequest struct { func (x *ProvisionerEnsurePluginRequest) Reset() { *x = ProvisionerEnsurePluginRequest{} - mi := &file_v1_capability_proto_msgTypes[127] + mi := &file_v1_capability_proto_msgTypes[129] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6782,7 +6874,7 @@ func (x *ProvisionerEnsurePluginRequest) String() string { func (*ProvisionerEnsurePluginRequest) ProtoMessage() {} func (x *ProvisionerEnsurePluginRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[127] + mi := &file_v1_capability_proto_msgTypes[129] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6795,7 +6887,7 @@ func (x *ProvisionerEnsurePluginRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ProvisionerEnsurePluginRequest.ProtoReflect.Descriptor instead. func (*ProvisionerEnsurePluginRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{127} + return file_v1_capability_proto_rawDescGZIP(), []int{129} } func (x *ProvisionerEnsurePluginRequest) GetName() string { @@ -6813,7 +6905,7 @@ type ProvisionerEnsurePluginResponse struct { func (x *ProvisionerEnsurePluginResponse) Reset() { *x = ProvisionerEnsurePluginResponse{} - mi := &file_v1_capability_proto_msgTypes[128] + mi := &file_v1_capability_proto_msgTypes[130] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6825,7 +6917,7 @@ func (x *ProvisionerEnsurePluginResponse) String() string { func (*ProvisionerEnsurePluginResponse) ProtoMessage() {} func (x *ProvisionerEnsurePluginResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[128] + mi := &file_v1_capability_proto_msgTypes[130] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6838,7 +6930,7 @@ func (x *ProvisionerEnsurePluginResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ProvisionerEnsurePluginResponse.ProtoReflect.Descriptor instead. func (*ProvisionerEnsurePluginResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{128} + return file_v1_capability_proto_rawDescGZIP(), []int{130} } // ProvisionerEnsureCustomColorRequest mirrors plugin.CustomColorConfig. @@ -6854,7 +6946,7 @@ type ProvisionerEnsureCustomColorRequest struct { func (x *ProvisionerEnsureCustomColorRequest) Reset() { *x = ProvisionerEnsureCustomColorRequest{} - mi := &file_v1_capability_proto_msgTypes[129] + mi := &file_v1_capability_proto_msgTypes[131] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6866,7 +6958,7 @@ func (x *ProvisionerEnsureCustomColorRequest) String() string { func (*ProvisionerEnsureCustomColorRequest) ProtoMessage() {} func (x *ProvisionerEnsureCustomColorRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[129] + mi := &file_v1_capability_proto_msgTypes[131] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6879,7 +6971,7 @@ func (x *ProvisionerEnsureCustomColorRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use ProvisionerEnsureCustomColorRequest.ProtoReflect.Descriptor instead. func (*ProvisionerEnsureCustomColorRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{129} + return file_v1_capability_proto_rawDescGZIP(), []int{131} } func (x *ProvisionerEnsureCustomColorRequest) GetName() string { @@ -6918,7 +7010,7 @@ type ProvisionerEnsureCustomColorResponse struct { func (x *ProvisionerEnsureCustomColorResponse) Reset() { *x = ProvisionerEnsureCustomColorResponse{} - mi := &file_v1_capability_proto_msgTypes[130] + mi := &file_v1_capability_proto_msgTypes[132] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6930,7 +7022,7 @@ func (x *ProvisionerEnsureCustomColorResponse) String() string { func (*ProvisionerEnsureCustomColorResponse) ProtoMessage() {} func (x *ProvisionerEnsureCustomColorResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[130] + mi := &file_v1_capability_proto_msgTypes[132] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6943,7 +7035,7 @@ func (x *ProvisionerEnsureCustomColorResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use ProvisionerEnsureCustomColorResponse.ProtoReflect.Descriptor instead. func (*ProvisionerEnsureCustomColorResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{130} + return file_v1_capability_proto_rawDescGZIP(), []int{132} } // ProvisionerEnsureMediaRequest mirrors plugin.MediaDeposit with a REQUIRED @@ -6963,7 +7055,7 @@ type ProvisionerEnsureMediaRequest struct { func (x *ProvisionerEnsureMediaRequest) Reset() { *x = ProvisionerEnsureMediaRequest{} - mi := &file_v1_capability_proto_msgTypes[131] + mi := &file_v1_capability_proto_msgTypes[133] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6975,7 +7067,7 @@ func (x *ProvisionerEnsureMediaRequest) String() string { func (*ProvisionerEnsureMediaRequest) ProtoMessage() {} func (x *ProvisionerEnsureMediaRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[131] + mi := &file_v1_capability_proto_msgTypes[133] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6988,7 +7080,7 @@ func (x *ProvisionerEnsureMediaRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ProvisionerEnsureMediaRequest.ProtoReflect.Descriptor instead. func (*ProvisionerEnsureMediaRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{131} + return file_v1_capability_proto_rawDescGZIP(), []int{133} } func (x *ProvisionerEnsureMediaRequest) GetId() string { @@ -7041,7 +7133,7 @@ type ProvisionerEnsureMediaResponse struct { func (x *ProvisionerEnsureMediaResponse) Reset() { *x = ProvisionerEnsureMediaResponse{} - mi := &file_v1_capability_proto_msgTypes[132] + mi := &file_v1_capability_proto_msgTypes[134] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7053,7 +7145,7 @@ func (x *ProvisionerEnsureMediaResponse) String() string { func (*ProvisionerEnsureMediaResponse) ProtoMessage() {} func (x *ProvisionerEnsureMediaResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[132] + mi := &file_v1_capability_proto_msgTypes[134] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7066,7 +7158,7 @@ func (x *ProvisionerEnsureMediaResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ProvisionerEnsureMediaResponse.ProtoReflect.Descriptor instead. func (*ProvisionerEnsureMediaResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{132} + return file_v1_capability_proto_rawDescGZIP(), []int{134} } // SettingsUpdatePluginSettingsRequest replaces the calling plugin's own @@ -7083,7 +7175,7 @@ type SettingsUpdatePluginSettingsRequest struct { func (x *SettingsUpdatePluginSettingsRequest) Reset() { *x = SettingsUpdatePluginSettingsRequest{} - mi := &file_v1_capability_proto_msgTypes[133] + mi := &file_v1_capability_proto_msgTypes[135] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7095,7 +7187,7 @@ func (x *SettingsUpdatePluginSettingsRequest) String() string { func (*SettingsUpdatePluginSettingsRequest) ProtoMessage() {} func (x *SettingsUpdatePluginSettingsRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[133] + mi := &file_v1_capability_proto_msgTypes[135] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7108,7 +7200,7 @@ func (x *SettingsUpdatePluginSettingsRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use SettingsUpdatePluginSettingsRequest.ProtoReflect.Descriptor instead. func (*SettingsUpdatePluginSettingsRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{133} + return file_v1_capability_proto_rawDescGZIP(), []int{135} } func (x *SettingsUpdatePluginSettingsRequest) GetPluginName() string { @@ -7133,7 +7225,7 @@ type SettingsUpdatePluginSettingsResponse struct { func (x *SettingsUpdatePluginSettingsResponse) Reset() { *x = SettingsUpdatePluginSettingsResponse{} - mi := &file_v1_capability_proto_msgTypes[134] + mi := &file_v1_capability_proto_msgTypes[136] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7145,7 +7237,7 @@ func (x *SettingsUpdatePluginSettingsResponse) String() string { func (*SettingsUpdatePluginSettingsResponse) ProtoMessage() {} func (x *SettingsUpdatePluginSettingsResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[134] + mi := &file_v1_capability_proto_msgTypes[136] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7158,7 +7250,7 @@ func (x *SettingsUpdatePluginSettingsResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use SettingsUpdatePluginSettingsResponse.ProtoReflect.Descriptor instead. func (*SettingsUpdatePluginSettingsResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{134} + return file_v1_capability_proto_rawDescGZIP(), []int{136} } // JobsProgressRequest reports progress for the CURRENTLY EXECUTING job. The @@ -7176,7 +7268,7 @@ type JobsProgressRequest struct { func (x *JobsProgressRequest) Reset() { *x = JobsProgressRequest{} - mi := &file_v1_capability_proto_msgTypes[135] + mi := &file_v1_capability_proto_msgTypes[137] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7188,7 +7280,7 @@ func (x *JobsProgressRequest) String() string { func (*JobsProgressRequest) ProtoMessage() {} func (x *JobsProgressRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[135] + mi := &file_v1_capability_proto_msgTypes[137] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7201,7 +7293,7 @@ func (x *JobsProgressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use JobsProgressRequest.ProtoReflect.Descriptor instead. func (*JobsProgressRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{135} + return file_v1_capability_proto_rawDescGZIP(), []int{137} } func (x *JobsProgressRequest) GetCurrent() int32 { @@ -7233,7 +7325,7 @@ type JobsProgressResponse struct { func (x *JobsProgressResponse) Reset() { *x = JobsProgressResponse{} - mi := &file_v1_capability_proto_msgTypes[136] + mi := &file_v1_capability_proto_msgTypes[138] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7245,7 +7337,7 @@ func (x *JobsProgressResponse) String() string { func (*JobsProgressResponse) ProtoMessage() {} func (x *JobsProgressResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[136] + mi := &file_v1_capability_proto_msgTypes[138] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7258,7 +7350,7 @@ func (x *JobsProgressResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use JobsProgressResponse.ProtoReflect.Descriptor instead. func (*JobsProgressResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{136} + return file_v1_capability_proto_rawDescGZIP(), []int{138} } // BridgeInvokeRequest calls a method on another plugin's registered bridge @@ -7277,7 +7369,7 @@ type BridgeInvokeRequest struct { func (x *BridgeInvokeRequest) Reset() { *x = BridgeInvokeRequest{} - mi := &file_v1_capability_proto_msgTypes[137] + mi := &file_v1_capability_proto_msgTypes[139] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7289,7 +7381,7 @@ func (x *BridgeInvokeRequest) String() string { func (*BridgeInvokeRequest) ProtoMessage() {} func (x *BridgeInvokeRequest) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[137] + mi := &file_v1_capability_proto_msgTypes[139] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7302,7 +7394,7 @@ func (x *BridgeInvokeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BridgeInvokeRequest.ProtoReflect.Descriptor instead. func (*BridgeInvokeRequest) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{137} + return file_v1_capability_proto_rawDescGZIP(), []int{139} } func (x *BridgeInvokeRequest) GetPluginName() string { @@ -7342,7 +7434,7 @@ type BridgeInvokeResponse struct { func (x *BridgeInvokeResponse) Reset() { *x = BridgeInvokeResponse{} - mi := &file_v1_capability_proto_msgTypes[138] + mi := &file_v1_capability_proto_msgTypes[140] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7354,7 +7446,7 @@ func (x *BridgeInvokeResponse) String() string { func (*BridgeInvokeResponse) ProtoMessage() {} func (x *BridgeInvokeResponse) ProtoReflect() protoreflect.Message { - mi := &file_v1_capability_proto_msgTypes[138] + mi := &file_v1_capability_proto_msgTypes[140] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7367,7 +7459,7 @@ func (x *BridgeInvokeResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use BridgeInvokeResponse.ProtoReflect.Descriptor instead. func (*BridgeInvokeResponse) Descriptor() ([]byte, []int) { - return file_v1_capability_proto_rawDescGZIP(), []int{138} + return file_v1_capability_proto_rawDescGZIP(), []int{140} } func (x *BridgeInvokeResponse) GetPayload() []byte { @@ -7411,7 +7503,11 @@ const file_v1_capability_proto_rawDesc = "" + "\bPageInfo\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n" + "\x04slug\x18\x02 \x01(\tR\x04slug\x12\x14\n" + - "\x05title\x18\x03 \x01(\tR\x05title\"+\n" + + "\x05title\x18\x03 \x01(\tR\x05title\"B\n" + + "#ContentPublishedBlockConfigsRequest\x12\x1b\n" + + "\tblock_key\x18\x01 \x01(\tR\bblockKey\"@\n" + + "$ContentPublishedBlockConfigsResponse\x12\x18\n" + + "\aconfigs\x18\x01 \x03(\fR\aconfigs\"+\n" + "\x15ContentGetPostRequest\x12\x12\n" + "\x04slug\x18\x01 \x01(\tR\x04slug\">\n" + "\x16ContentGetPostResponse\x12$\n" + @@ -7885,7 +7981,7 @@ func file_v1_capability_proto_rawDescGZIP() []byte { return file_v1_capability_proto_rawDescData } -var file_v1_capability_proto_msgTypes = make([]protoimpl.MessageInfo, 141) +var file_v1_capability_proto_msgTypes = make([]protoimpl.MessageInfo, 143) var file_v1_capability_proto_goTypes = []any{ (*HostCallRequest)(nil), // 0: abi.v1.HostCallRequest (*HostCallResponse)(nil), // 1: abi.v1.HostCallResponse @@ -7895,168 +7991,170 @@ var file_v1_capability_proto_goTypes = []any{ (*ContentGetPageRequest)(nil), // 5: abi.v1.ContentGetPageRequest (*ContentGetPageResponse)(nil), // 6: abi.v1.ContentGetPageResponse (*PageInfo)(nil), // 7: abi.v1.PageInfo - (*ContentGetPostRequest)(nil), // 8: abi.v1.ContentGetPostRequest - (*ContentGetPostResponse)(nil), // 9: abi.v1.ContentGetPostResponse - (*PostInfo)(nil), // 10: abi.v1.PostInfo - (*ContentListPostsRequest)(nil), // 11: abi.v1.ContentListPostsRequest - (*ContentListPostsResponse)(nil), // 12: abi.v1.ContentListPostsResponse - (*ContentSlugifyRequest)(nil), // 13: abi.v1.ContentSlugifyRequest - (*ContentSlugifyResponse)(nil), // 14: abi.v1.ContentSlugifyResponse - (*ContentBlockNoteToHtmlRequest)(nil), // 15: abi.v1.ContentBlockNoteToHtmlRequest - (*ContentBlockNoteToHtmlResponse)(nil), // 16: abi.v1.ContentBlockNoteToHtmlResponse - (*ContentGenerateExcerptRequest)(nil), // 17: abi.v1.ContentGenerateExcerptRequest - (*ContentGenerateExcerptResponse)(nil), // 18: abi.v1.ContentGenerateExcerptResponse - (*ContentStripHtmlRequest)(nil), // 19: abi.v1.ContentStripHtmlRequest - (*ContentStripHtmlResponse)(nil), // 20: abi.v1.ContentStripHtmlResponse - (*SettingsGetSiteSettingsRequest)(nil), // 21: abi.v1.SettingsGetSiteSettingsRequest - (*SettingsGetSiteSettingsResponse)(nil), // 22: abi.v1.SettingsGetSiteSettingsResponse - (*SettingsGetPluginSettingsRequest)(nil), // 23: abi.v1.SettingsGetPluginSettingsRequest - (*SettingsGetPluginSettingsResponse)(nil), // 24: abi.v1.SettingsGetPluginSettingsResponse - (*SettingsUpdateSiteSettingRequest)(nil), // 25: abi.v1.SettingsUpdateSiteSettingRequest - (*SettingsUpdateSiteSettingResponse)(nil), // 26: abi.v1.SettingsUpdateSiteSettingResponse - (*GatingGetSubscriberTierLevelRequest)(nil), // 27: abi.v1.GatingGetSubscriberTierLevelRequest - (*GatingGetSubscriberTierLevelResponse)(nil), // 28: abi.v1.GatingGetSubscriberTierLevelResponse - (*GatingEvaluateAccessRequest)(nil), // 29: abi.v1.GatingEvaluateAccessRequest - (*GatingEvaluateAccessResponse)(nil), // 30: abi.v1.GatingEvaluateAccessResponse - (*AccessRule)(nil), // 31: abi.v1.AccessRule - (*AccessResult)(nil), // 32: abi.v1.AccessResult - (*CryptoEncryptSecretRequest)(nil), // 33: abi.v1.CryptoEncryptSecretRequest - (*CryptoEncryptSecretResponse)(nil), // 34: abi.v1.CryptoEncryptSecretResponse - (*CryptoDecryptSecretRequest)(nil), // 35: abi.v1.CryptoDecryptSecretRequest - (*CryptoDecryptSecretResponse)(nil), // 36: abi.v1.CryptoDecryptSecretResponse - (*MenusGetMenuByNameRequest)(nil), // 37: abi.v1.MenusGetMenuByNameRequest - (*MenusGetMenuByNameResponse)(nil), // 38: abi.v1.MenusGetMenuByNameResponse - (*Menu)(nil), // 39: abi.v1.Menu - (*MenusGetMenuItemsRequest)(nil), // 40: abi.v1.MenusGetMenuItemsRequest - (*MenusGetMenuItemsResponse)(nil), // 41: abi.v1.MenusGetMenuItemsResponse - (*MenuItem)(nil), // 42: abi.v1.MenuItem - (*DatasourcesResolveBucketRequest)(nil), // 43: abi.v1.DatasourcesResolveBucketRequest - (*DatasourcesResolveBucketResponse)(nil), // 44: abi.v1.DatasourcesResolveBucketResponse - (*DatasourcesResolveBucketByKeyRequest)(nil), // 45: abi.v1.DatasourcesResolveBucketByKeyRequest - (*DatasourcesResolveBucketByKeyResponse)(nil), // 46: abi.v1.DatasourcesResolveBucketByKeyResponse - (*DatasourceResult)(nil), // 47: abi.v1.DatasourceResult - (*UsersGetByUsernameRequest)(nil), // 48: abi.v1.UsersGetByUsernameRequest - (*UsersGetByUsernameResponse)(nil), // 49: abi.v1.UsersGetByUsernameResponse - (*UsersGetByIdRequest)(nil), // 50: abi.v1.UsersGetByIdRequest - (*UsersGetByIdResponse)(nil), // 51: abi.v1.UsersGetByIdResponse - (*PublicUserProfile)(nil), // 52: abi.v1.PublicUserProfile - (*SubscriptionsGetUserTierLevelRequest)(nil), // 53: abi.v1.SubscriptionsGetUserTierLevelRequest - (*SubscriptionsGetUserTierLevelResponse)(nil), // 54: abi.v1.SubscriptionsGetUserTierLevelResponse - (*TierLevel)(nil), // 55: abi.v1.TierLevel - (*SubscriptionsGetTierBySlugRequest)(nil), // 56: abi.v1.SubscriptionsGetTierBySlugRequest - (*SubscriptionsGetTierBySlugResponse)(nil), // 57: abi.v1.SubscriptionsGetTierBySlugResponse - (*Tier)(nil), // 58: abi.v1.Tier - (*SubscriptionsListTiersRequest)(nil), // 59: abi.v1.SubscriptionsListTiersRequest - (*SubscriptionsListTiersResponse)(nil), // 60: abi.v1.SubscriptionsListTiersResponse - (*SubscriptionsListActivePlansRequest)(nil), // 61: abi.v1.SubscriptionsListActivePlansRequest - (*SubscriptionsListActivePlansResponse)(nil), // 62: abi.v1.SubscriptionsListActivePlansResponse - (*Plan)(nil), // 63: abi.v1.Plan - (*MediaDepositRequest)(nil), // 64: abi.v1.MediaDepositRequest - (*MediaDepositResponse)(nil), // 65: abi.v1.MediaDepositResponse - (*EmailSendRequest)(nil), // 66: abi.v1.EmailSendRequest - (*EmailSendResponse)(nil), // 67: abi.v1.EmailSendResponse - (*AiTextCallRequest)(nil), // 68: abi.v1.AiTextCallRequest - (*AiTextCallResponse)(nil), // 69: abi.v1.AiTextCallResponse - (*AiToolRegisterRequest)(nil), // 70: abi.v1.AiToolRegisterRequest - (*AiToolRegisterResponse)(nil), // 71: abi.v1.AiToolRegisterResponse - (*BridgeRegisterServiceRequest)(nil), // 72: abi.v1.BridgeRegisterServiceRequest - (*BridgeRegisterServiceResponse)(nil), // 73: abi.v1.BridgeRegisterServiceResponse - (*BridgeGetServiceRequest)(nil), // 74: abi.v1.BridgeGetServiceRequest - (*BridgeGetServiceResponse)(nil), // 75: abi.v1.BridgeGetServiceResponse - (*JobsSubmitRequest)(nil), // 76: abi.v1.JobsSubmitRequest - (*JobsSubmitResponse)(nil), // 77: abi.v1.JobsSubmitResponse - (*EmbeddingsGenerateEmbeddingRequest)(nil), // 78: abi.v1.EmbeddingsGenerateEmbeddingRequest - (*EmbeddingsGenerateEmbeddingResponse)(nil), // 79: abi.v1.EmbeddingsGenerateEmbeddingResponse - (*EmbeddingsEmbedContentRequest)(nil), // 80: abi.v1.EmbeddingsEmbedContentRequest - (*EmbeddingsEmbedContentResponse)(nil), // 81: abi.v1.EmbeddingsEmbedContentResponse - (*EmbeddingsIsAvailableRequest)(nil), // 82: abi.v1.EmbeddingsIsAvailableRequest - (*EmbeddingsIsAvailableResponse)(nil), // 83: abi.v1.EmbeddingsIsAvailableResponse - (*RagQueryRequest)(nil), // 84: abi.v1.RagQueryRequest - (*RagQueryResponse)(nil), // 85: abi.v1.RagQueryResponse - (*RagResult)(nil), // 86: abi.v1.RagResult - (*RagOnContentChangedRequest)(nil), // 87: abi.v1.RagOnContentChangedRequest - (*RagOnContentChangedResponse)(nil), // 88: abi.v1.RagOnContentChangedResponse - (*ReviewsSubmitReviewRequest)(nil), // 89: abi.v1.ReviewsSubmitReviewRequest - (*ReviewsSubmitReviewResponse)(nil), // 90: abi.v1.ReviewsSubmitReviewResponse - (*BadgesRefreshBadgesRequest)(nil), // 91: abi.v1.BadgesRefreshBadgesRequest - (*BadgesRefreshBadgesResponse)(nil), // 92: abi.v1.BadgesRefreshBadgesResponse - (*ContentCreatePageRequest)(nil), // 93: abi.v1.ContentCreatePageRequest - (*ContentCreatePageResponse)(nil), // 94: abi.v1.ContentCreatePageResponse - (*PageBlock)(nil), // 95: abi.v1.PageBlock - (*ContentSetPageBlocksRequest)(nil), // 96: abi.v1.ContentSetPageBlocksRequest - (*ContentSetPageBlocksResponse)(nil), // 97: abi.v1.ContentSetPageBlocksResponse - (*ContentPublishPageRequest)(nil), // 98: abi.v1.ContentPublishPageRequest - (*ContentPublishPageResponse)(nil), // 99: abi.v1.ContentPublishPageResponse - (*ContentSetPageSeoRequest)(nil), // 100: abi.v1.ContentSetPageSeoRequest - (*ContentSetPageSeoResponse)(nil), // 101: abi.v1.ContentSetPageSeoResponse - (*ContentUpsertPostRequest)(nil), // 102: abi.v1.ContentUpsertPostRequest - (*ContentUpsertPostResponse)(nil), // 103: abi.v1.ContentUpsertPostResponse - (*ProvisionerEnsureDataTableRequest)(nil), // 104: abi.v1.ProvisionerEnsureDataTableRequest - (*ProvisionerEnsureDataTableResponse)(nil), // 105: abi.v1.ProvisionerEnsureDataTableResponse - (*ProvisionerMergeSiteSettingsRequest)(nil), // 106: abi.v1.ProvisionerMergeSiteSettingsRequest - (*ProvisionerMergeSiteSettingsResponse)(nil), // 107: abi.v1.ProvisionerMergeSiteSettingsResponse - (*ProvisionerEnsureSettingRequest)(nil), // 108: abi.v1.ProvisionerEnsureSettingRequest - (*ProvisionerEnsureSettingResponse)(nil), // 109: abi.v1.ProvisionerEnsureSettingResponse - (*PageSeed)(nil), // 110: abi.v1.PageSeed - (*ProvisionerEnsurePageRequest)(nil), // 111: abi.v1.ProvisionerEnsurePageRequest - (*ProvisionerEnsurePageResponse)(nil), // 112: abi.v1.ProvisionerEnsurePageResponse - (*ProvisionerOverrideSiteSettingsRequest)(nil), // 113: abi.v1.ProvisionerOverrideSiteSettingsRequest - (*ProvisionerOverrideSiteSettingsResponse)(nil), // 114: abi.v1.ProvisionerOverrideSiteSettingsResponse - (*ProvisionerEnsureMenuItemRequest)(nil), // 115: abi.v1.ProvisionerEnsureMenuItemRequest - (*ProvisionerEnsureMenuItemResponse)(nil), // 116: abi.v1.ProvisionerEnsureMenuItemResponse - (*ProvisionerRegisterEmbeddingConfigRequest)(nil), // 117: abi.v1.ProvisionerRegisterEmbeddingConfigRequest - (*ProvisionerRegisterEmbeddingConfigResponse)(nil), // 118: abi.v1.ProvisionerRegisterEmbeddingConfigResponse - (*ProvisionerEnsureEmbedRequest)(nil), // 119: abi.v1.ProvisionerEnsureEmbedRequest - (*ProvisionerEnsureEmbedResponse)(nil), // 120: abi.v1.ProvisionerEnsureEmbedResponse - (*ProvisionerEnsureJobScheduleRequest)(nil), // 121: abi.v1.ProvisionerEnsureJobScheduleRequest - (*ProvisionerEnsureJobScheduleResponse)(nil), // 122: abi.v1.ProvisionerEnsureJobScheduleResponse - (*ProvisionerUpdateDataTableRowFieldRequest)(nil), // 123: abi.v1.ProvisionerUpdateDataTableRowFieldRequest - (*ProvisionerUpdateDataTableRowFieldResponse)(nil), // 124: abi.v1.ProvisionerUpdateDataTableRowFieldResponse - (*ProvisionerDisableOrphanedJobSchedulesRequest)(nil), // 125: abi.v1.ProvisionerDisableOrphanedJobSchedulesRequest - (*ProvisionerDisableOrphanedJobSchedulesResponse)(nil), // 126: abi.v1.ProvisionerDisableOrphanedJobSchedulesResponse - (*ProvisionerEnsurePluginRequest)(nil), // 127: abi.v1.ProvisionerEnsurePluginRequest - (*ProvisionerEnsurePluginResponse)(nil), // 128: abi.v1.ProvisionerEnsurePluginResponse - (*ProvisionerEnsureCustomColorRequest)(nil), // 129: abi.v1.ProvisionerEnsureCustomColorRequest - (*ProvisionerEnsureCustomColorResponse)(nil), // 130: abi.v1.ProvisionerEnsureCustomColorResponse - (*ProvisionerEnsureMediaRequest)(nil), // 131: abi.v1.ProvisionerEnsureMediaRequest - (*ProvisionerEnsureMediaResponse)(nil), // 132: abi.v1.ProvisionerEnsureMediaResponse - (*SettingsUpdatePluginSettingsRequest)(nil), // 133: abi.v1.SettingsUpdatePluginSettingsRequest - (*SettingsUpdatePluginSettingsResponse)(nil), // 134: abi.v1.SettingsUpdatePluginSettingsResponse - (*JobsProgressRequest)(nil), // 135: abi.v1.JobsProgressRequest - (*JobsProgressResponse)(nil), // 136: abi.v1.JobsProgressResponse - (*BridgeInvokeRequest)(nil), // 137: abi.v1.BridgeInvokeRequest - (*BridgeInvokeResponse)(nil), // 138: abi.v1.BridgeInvokeResponse - nil, // 139: abi.v1.AuthorProfile.SocialLinksEntry - nil, // 140: abi.v1.RagResult.MetadataEntry - (*AbiError)(nil), // 141: abi.v1.AbiError - (*timestamppb.Timestamp)(nil), // 142: google.protobuf.Timestamp + (*ContentPublishedBlockConfigsRequest)(nil), // 8: abi.v1.ContentPublishedBlockConfigsRequest + (*ContentPublishedBlockConfigsResponse)(nil), // 9: abi.v1.ContentPublishedBlockConfigsResponse + (*ContentGetPostRequest)(nil), // 10: abi.v1.ContentGetPostRequest + (*ContentGetPostResponse)(nil), // 11: abi.v1.ContentGetPostResponse + (*PostInfo)(nil), // 12: abi.v1.PostInfo + (*ContentListPostsRequest)(nil), // 13: abi.v1.ContentListPostsRequest + (*ContentListPostsResponse)(nil), // 14: abi.v1.ContentListPostsResponse + (*ContentSlugifyRequest)(nil), // 15: abi.v1.ContentSlugifyRequest + (*ContentSlugifyResponse)(nil), // 16: abi.v1.ContentSlugifyResponse + (*ContentBlockNoteToHtmlRequest)(nil), // 17: abi.v1.ContentBlockNoteToHtmlRequest + (*ContentBlockNoteToHtmlResponse)(nil), // 18: abi.v1.ContentBlockNoteToHtmlResponse + (*ContentGenerateExcerptRequest)(nil), // 19: abi.v1.ContentGenerateExcerptRequest + (*ContentGenerateExcerptResponse)(nil), // 20: abi.v1.ContentGenerateExcerptResponse + (*ContentStripHtmlRequest)(nil), // 21: abi.v1.ContentStripHtmlRequest + (*ContentStripHtmlResponse)(nil), // 22: abi.v1.ContentStripHtmlResponse + (*SettingsGetSiteSettingsRequest)(nil), // 23: abi.v1.SettingsGetSiteSettingsRequest + (*SettingsGetSiteSettingsResponse)(nil), // 24: abi.v1.SettingsGetSiteSettingsResponse + (*SettingsGetPluginSettingsRequest)(nil), // 25: abi.v1.SettingsGetPluginSettingsRequest + (*SettingsGetPluginSettingsResponse)(nil), // 26: abi.v1.SettingsGetPluginSettingsResponse + (*SettingsUpdateSiteSettingRequest)(nil), // 27: abi.v1.SettingsUpdateSiteSettingRequest + (*SettingsUpdateSiteSettingResponse)(nil), // 28: abi.v1.SettingsUpdateSiteSettingResponse + (*GatingGetSubscriberTierLevelRequest)(nil), // 29: abi.v1.GatingGetSubscriberTierLevelRequest + (*GatingGetSubscriberTierLevelResponse)(nil), // 30: abi.v1.GatingGetSubscriberTierLevelResponse + (*GatingEvaluateAccessRequest)(nil), // 31: abi.v1.GatingEvaluateAccessRequest + (*GatingEvaluateAccessResponse)(nil), // 32: abi.v1.GatingEvaluateAccessResponse + (*AccessRule)(nil), // 33: abi.v1.AccessRule + (*AccessResult)(nil), // 34: abi.v1.AccessResult + (*CryptoEncryptSecretRequest)(nil), // 35: abi.v1.CryptoEncryptSecretRequest + (*CryptoEncryptSecretResponse)(nil), // 36: abi.v1.CryptoEncryptSecretResponse + (*CryptoDecryptSecretRequest)(nil), // 37: abi.v1.CryptoDecryptSecretRequest + (*CryptoDecryptSecretResponse)(nil), // 38: abi.v1.CryptoDecryptSecretResponse + (*MenusGetMenuByNameRequest)(nil), // 39: abi.v1.MenusGetMenuByNameRequest + (*MenusGetMenuByNameResponse)(nil), // 40: abi.v1.MenusGetMenuByNameResponse + (*Menu)(nil), // 41: abi.v1.Menu + (*MenusGetMenuItemsRequest)(nil), // 42: abi.v1.MenusGetMenuItemsRequest + (*MenusGetMenuItemsResponse)(nil), // 43: abi.v1.MenusGetMenuItemsResponse + (*MenuItem)(nil), // 44: abi.v1.MenuItem + (*DatasourcesResolveBucketRequest)(nil), // 45: abi.v1.DatasourcesResolveBucketRequest + (*DatasourcesResolveBucketResponse)(nil), // 46: abi.v1.DatasourcesResolveBucketResponse + (*DatasourcesResolveBucketByKeyRequest)(nil), // 47: abi.v1.DatasourcesResolveBucketByKeyRequest + (*DatasourcesResolveBucketByKeyResponse)(nil), // 48: abi.v1.DatasourcesResolveBucketByKeyResponse + (*DatasourceResult)(nil), // 49: abi.v1.DatasourceResult + (*UsersGetByUsernameRequest)(nil), // 50: abi.v1.UsersGetByUsernameRequest + (*UsersGetByUsernameResponse)(nil), // 51: abi.v1.UsersGetByUsernameResponse + (*UsersGetByIdRequest)(nil), // 52: abi.v1.UsersGetByIdRequest + (*UsersGetByIdResponse)(nil), // 53: abi.v1.UsersGetByIdResponse + (*PublicUserProfile)(nil), // 54: abi.v1.PublicUserProfile + (*SubscriptionsGetUserTierLevelRequest)(nil), // 55: abi.v1.SubscriptionsGetUserTierLevelRequest + (*SubscriptionsGetUserTierLevelResponse)(nil), // 56: abi.v1.SubscriptionsGetUserTierLevelResponse + (*TierLevel)(nil), // 57: abi.v1.TierLevel + (*SubscriptionsGetTierBySlugRequest)(nil), // 58: abi.v1.SubscriptionsGetTierBySlugRequest + (*SubscriptionsGetTierBySlugResponse)(nil), // 59: abi.v1.SubscriptionsGetTierBySlugResponse + (*Tier)(nil), // 60: abi.v1.Tier + (*SubscriptionsListTiersRequest)(nil), // 61: abi.v1.SubscriptionsListTiersRequest + (*SubscriptionsListTiersResponse)(nil), // 62: abi.v1.SubscriptionsListTiersResponse + (*SubscriptionsListActivePlansRequest)(nil), // 63: abi.v1.SubscriptionsListActivePlansRequest + (*SubscriptionsListActivePlansResponse)(nil), // 64: abi.v1.SubscriptionsListActivePlansResponse + (*Plan)(nil), // 65: abi.v1.Plan + (*MediaDepositRequest)(nil), // 66: abi.v1.MediaDepositRequest + (*MediaDepositResponse)(nil), // 67: abi.v1.MediaDepositResponse + (*EmailSendRequest)(nil), // 68: abi.v1.EmailSendRequest + (*EmailSendResponse)(nil), // 69: abi.v1.EmailSendResponse + (*AiTextCallRequest)(nil), // 70: abi.v1.AiTextCallRequest + (*AiTextCallResponse)(nil), // 71: abi.v1.AiTextCallResponse + (*AiToolRegisterRequest)(nil), // 72: abi.v1.AiToolRegisterRequest + (*AiToolRegisterResponse)(nil), // 73: abi.v1.AiToolRegisterResponse + (*BridgeRegisterServiceRequest)(nil), // 74: abi.v1.BridgeRegisterServiceRequest + (*BridgeRegisterServiceResponse)(nil), // 75: abi.v1.BridgeRegisterServiceResponse + (*BridgeGetServiceRequest)(nil), // 76: abi.v1.BridgeGetServiceRequest + (*BridgeGetServiceResponse)(nil), // 77: abi.v1.BridgeGetServiceResponse + (*JobsSubmitRequest)(nil), // 78: abi.v1.JobsSubmitRequest + (*JobsSubmitResponse)(nil), // 79: abi.v1.JobsSubmitResponse + (*EmbeddingsGenerateEmbeddingRequest)(nil), // 80: abi.v1.EmbeddingsGenerateEmbeddingRequest + (*EmbeddingsGenerateEmbeddingResponse)(nil), // 81: abi.v1.EmbeddingsGenerateEmbeddingResponse + (*EmbeddingsEmbedContentRequest)(nil), // 82: abi.v1.EmbeddingsEmbedContentRequest + (*EmbeddingsEmbedContentResponse)(nil), // 83: abi.v1.EmbeddingsEmbedContentResponse + (*EmbeddingsIsAvailableRequest)(nil), // 84: abi.v1.EmbeddingsIsAvailableRequest + (*EmbeddingsIsAvailableResponse)(nil), // 85: abi.v1.EmbeddingsIsAvailableResponse + (*RagQueryRequest)(nil), // 86: abi.v1.RagQueryRequest + (*RagQueryResponse)(nil), // 87: abi.v1.RagQueryResponse + (*RagResult)(nil), // 88: abi.v1.RagResult + (*RagOnContentChangedRequest)(nil), // 89: abi.v1.RagOnContentChangedRequest + (*RagOnContentChangedResponse)(nil), // 90: abi.v1.RagOnContentChangedResponse + (*ReviewsSubmitReviewRequest)(nil), // 91: abi.v1.ReviewsSubmitReviewRequest + (*ReviewsSubmitReviewResponse)(nil), // 92: abi.v1.ReviewsSubmitReviewResponse + (*BadgesRefreshBadgesRequest)(nil), // 93: abi.v1.BadgesRefreshBadgesRequest + (*BadgesRefreshBadgesResponse)(nil), // 94: abi.v1.BadgesRefreshBadgesResponse + (*ContentCreatePageRequest)(nil), // 95: abi.v1.ContentCreatePageRequest + (*ContentCreatePageResponse)(nil), // 96: abi.v1.ContentCreatePageResponse + (*PageBlock)(nil), // 97: abi.v1.PageBlock + (*ContentSetPageBlocksRequest)(nil), // 98: abi.v1.ContentSetPageBlocksRequest + (*ContentSetPageBlocksResponse)(nil), // 99: abi.v1.ContentSetPageBlocksResponse + (*ContentPublishPageRequest)(nil), // 100: abi.v1.ContentPublishPageRequest + (*ContentPublishPageResponse)(nil), // 101: abi.v1.ContentPublishPageResponse + (*ContentSetPageSeoRequest)(nil), // 102: abi.v1.ContentSetPageSeoRequest + (*ContentSetPageSeoResponse)(nil), // 103: abi.v1.ContentSetPageSeoResponse + (*ContentUpsertPostRequest)(nil), // 104: abi.v1.ContentUpsertPostRequest + (*ContentUpsertPostResponse)(nil), // 105: abi.v1.ContentUpsertPostResponse + (*ProvisionerEnsureDataTableRequest)(nil), // 106: abi.v1.ProvisionerEnsureDataTableRequest + (*ProvisionerEnsureDataTableResponse)(nil), // 107: abi.v1.ProvisionerEnsureDataTableResponse + (*ProvisionerMergeSiteSettingsRequest)(nil), // 108: abi.v1.ProvisionerMergeSiteSettingsRequest + (*ProvisionerMergeSiteSettingsResponse)(nil), // 109: abi.v1.ProvisionerMergeSiteSettingsResponse + (*ProvisionerEnsureSettingRequest)(nil), // 110: abi.v1.ProvisionerEnsureSettingRequest + (*ProvisionerEnsureSettingResponse)(nil), // 111: abi.v1.ProvisionerEnsureSettingResponse + (*PageSeed)(nil), // 112: abi.v1.PageSeed + (*ProvisionerEnsurePageRequest)(nil), // 113: abi.v1.ProvisionerEnsurePageRequest + (*ProvisionerEnsurePageResponse)(nil), // 114: abi.v1.ProvisionerEnsurePageResponse + (*ProvisionerOverrideSiteSettingsRequest)(nil), // 115: abi.v1.ProvisionerOverrideSiteSettingsRequest + (*ProvisionerOverrideSiteSettingsResponse)(nil), // 116: abi.v1.ProvisionerOverrideSiteSettingsResponse + (*ProvisionerEnsureMenuItemRequest)(nil), // 117: abi.v1.ProvisionerEnsureMenuItemRequest + (*ProvisionerEnsureMenuItemResponse)(nil), // 118: abi.v1.ProvisionerEnsureMenuItemResponse + (*ProvisionerRegisterEmbeddingConfigRequest)(nil), // 119: abi.v1.ProvisionerRegisterEmbeddingConfigRequest + (*ProvisionerRegisterEmbeddingConfigResponse)(nil), // 120: abi.v1.ProvisionerRegisterEmbeddingConfigResponse + (*ProvisionerEnsureEmbedRequest)(nil), // 121: abi.v1.ProvisionerEnsureEmbedRequest + (*ProvisionerEnsureEmbedResponse)(nil), // 122: abi.v1.ProvisionerEnsureEmbedResponse + (*ProvisionerEnsureJobScheduleRequest)(nil), // 123: abi.v1.ProvisionerEnsureJobScheduleRequest + (*ProvisionerEnsureJobScheduleResponse)(nil), // 124: abi.v1.ProvisionerEnsureJobScheduleResponse + (*ProvisionerUpdateDataTableRowFieldRequest)(nil), // 125: abi.v1.ProvisionerUpdateDataTableRowFieldRequest + (*ProvisionerUpdateDataTableRowFieldResponse)(nil), // 126: abi.v1.ProvisionerUpdateDataTableRowFieldResponse + (*ProvisionerDisableOrphanedJobSchedulesRequest)(nil), // 127: abi.v1.ProvisionerDisableOrphanedJobSchedulesRequest + (*ProvisionerDisableOrphanedJobSchedulesResponse)(nil), // 128: abi.v1.ProvisionerDisableOrphanedJobSchedulesResponse + (*ProvisionerEnsurePluginRequest)(nil), // 129: abi.v1.ProvisionerEnsurePluginRequest + (*ProvisionerEnsurePluginResponse)(nil), // 130: abi.v1.ProvisionerEnsurePluginResponse + (*ProvisionerEnsureCustomColorRequest)(nil), // 131: abi.v1.ProvisionerEnsureCustomColorRequest + (*ProvisionerEnsureCustomColorResponse)(nil), // 132: abi.v1.ProvisionerEnsureCustomColorResponse + (*ProvisionerEnsureMediaRequest)(nil), // 133: abi.v1.ProvisionerEnsureMediaRequest + (*ProvisionerEnsureMediaResponse)(nil), // 134: abi.v1.ProvisionerEnsureMediaResponse + (*SettingsUpdatePluginSettingsRequest)(nil), // 135: abi.v1.SettingsUpdatePluginSettingsRequest + (*SettingsUpdatePluginSettingsResponse)(nil), // 136: abi.v1.SettingsUpdatePluginSettingsResponse + (*JobsProgressRequest)(nil), // 137: abi.v1.JobsProgressRequest + (*JobsProgressResponse)(nil), // 138: abi.v1.JobsProgressResponse + (*BridgeInvokeRequest)(nil), // 139: abi.v1.BridgeInvokeRequest + (*BridgeInvokeResponse)(nil), // 140: abi.v1.BridgeInvokeResponse + nil, // 141: abi.v1.AuthorProfile.SocialLinksEntry + nil, // 142: abi.v1.RagResult.MetadataEntry + (*AbiError)(nil), // 143: abi.v1.AbiError + (*timestamppb.Timestamp)(nil), // 144: google.protobuf.Timestamp } var file_v1_capability_proto_depIdxs = []int32{ - 141, // 0: abi.v1.HostCallResponse.error:type_name -> abi.v1.AbiError + 143, // 0: abi.v1.HostCallResponse.error:type_name -> abi.v1.AbiError 4, // 1: abi.v1.ContentGetAuthorProfileResponse.author:type_name -> abi.v1.AuthorProfile - 139, // 2: abi.v1.AuthorProfile.social_links:type_name -> abi.v1.AuthorProfile.SocialLinksEntry + 141, // 2: abi.v1.AuthorProfile.social_links:type_name -> abi.v1.AuthorProfile.SocialLinksEntry 7, // 3: abi.v1.ContentGetPageResponse.page:type_name -> abi.v1.PageInfo - 10, // 4: abi.v1.ContentGetPostResponse.post:type_name -> abi.v1.PostInfo - 142, // 5: abi.v1.PostInfo.published_at:type_name -> google.protobuf.Timestamp - 10, // 6: abi.v1.ContentListPostsResponse.posts:type_name -> abi.v1.PostInfo - 31, // 7: abi.v1.GatingEvaluateAccessRequest.rule:type_name -> abi.v1.AccessRule - 32, // 8: abi.v1.GatingEvaluateAccessResponse.result:type_name -> abi.v1.AccessResult - 39, // 9: abi.v1.MenusGetMenuByNameResponse.menu:type_name -> abi.v1.Menu - 42, // 10: abi.v1.MenusGetMenuItemsResponse.items:type_name -> abi.v1.MenuItem - 47, // 11: abi.v1.DatasourcesResolveBucketResponse.result:type_name -> abi.v1.DatasourceResult - 47, // 12: abi.v1.DatasourcesResolveBucketByKeyResponse.result:type_name -> abi.v1.DatasourceResult - 52, // 13: abi.v1.UsersGetByUsernameResponse.user:type_name -> abi.v1.PublicUserProfile - 52, // 14: abi.v1.UsersGetByIdResponse.user:type_name -> abi.v1.PublicUserProfile - 55, // 15: abi.v1.SubscriptionsGetUserTierLevelResponse.tier_level:type_name -> abi.v1.TierLevel - 58, // 16: abi.v1.SubscriptionsGetTierBySlugResponse.tier:type_name -> abi.v1.Tier - 58, // 17: abi.v1.SubscriptionsListTiersResponse.tiers:type_name -> abi.v1.Tier - 63, // 18: abi.v1.SubscriptionsListActivePlansResponse.plans:type_name -> abi.v1.Plan - 142, // 19: abi.v1.Plan.created_at:type_name -> google.protobuf.Timestamp - 86, // 20: abi.v1.RagQueryResponse.results:type_name -> abi.v1.RagResult - 140, // 21: abi.v1.RagResult.metadata:type_name -> abi.v1.RagResult.MetadataEntry - 95, // 22: abi.v1.ContentSetPageBlocksRequest.blocks:type_name -> abi.v1.PageBlock - 95, // 23: abi.v1.PageSeed.blocks:type_name -> abi.v1.PageBlock - 110, // 24: abi.v1.ProvisionerEnsurePageRequest.page:type_name -> abi.v1.PageSeed + 12, // 4: abi.v1.ContentGetPostResponse.post:type_name -> abi.v1.PostInfo + 144, // 5: abi.v1.PostInfo.published_at:type_name -> google.protobuf.Timestamp + 12, // 6: abi.v1.ContentListPostsResponse.posts:type_name -> abi.v1.PostInfo + 33, // 7: abi.v1.GatingEvaluateAccessRequest.rule:type_name -> abi.v1.AccessRule + 34, // 8: abi.v1.GatingEvaluateAccessResponse.result:type_name -> abi.v1.AccessResult + 41, // 9: abi.v1.MenusGetMenuByNameResponse.menu:type_name -> abi.v1.Menu + 44, // 10: abi.v1.MenusGetMenuItemsResponse.items:type_name -> abi.v1.MenuItem + 49, // 11: abi.v1.DatasourcesResolveBucketResponse.result:type_name -> abi.v1.DatasourceResult + 49, // 12: abi.v1.DatasourcesResolveBucketByKeyResponse.result:type_name -> abi.v1.DatasourceResult + 54, // 13: abi.v1.UsersGetByUsernameResponse.user:type_name -> abi.v1.PublicUserProfile + 54, // 14: abi.v1.UsersGetByIdResponse.user:type_name -> abi.v1.PublicUserProfile + 57, // 15: abi.v1.SubscriptionsGetUserTierLevelResponse.tier_level:type_name -> abi.v1.TierLevel + 60, // 16: abi.v1.SubscriptionsGetTierBySlugResponse.tier:type_name -> abi.v1.Tier + 60, // 17: abi.v1.SubscriptionsListTiersResponse.tiers:type_name -> abi.v1.Tier + 65, // 18: abi.v1.SubscriptionsListActivePlansResponse.plans:type_name -> abi.v1.Plan + 144, // 19: abi.v1.Plan.created_at:type_name -> google.protobuf.Timestamp + 88, // 20: abi.v1.RagQueryResponse.results:type_name -> abi.v1.RagResult + 142, // 21: abi.v1.RagResult.metadata:type_name -> abi.v1.RagResult.MetadataEntry + 97, // 22: abi.v1.ContentSetPageBlocksRequest.blocks:type_name -> abi.v1.PageBlock + 97, // 23: abi.v1.PageSeed.blocks:type_name -> abi.v1.PageBlock + 112, // 24: abi.v1.ProvisionerEnsurePageRequest.page:type_name -> abi.v1.PageSeed 25, // [25:25] is the sub-list for method output_type 25, // [25:25] is the sub-list for method input_type 25, // [25:25] is the sub-list for extension type_name @@ -8070,17 +8168,17 @@ func file_v1_capability_proto_init() { return } file_v1_invoke_proto_init() - file_v1_capability_proto_msgTypes[42].OneofWrappers = []any{} - file_v1_capability_proto_msgTypes[95].OneofWrappers = []any{} - file_v1_capability_proto_msgTypes[100].OneofWrappers = []any{} + file_v1_capability_proto_msgTypes[44].OneofWrappers = []any{} + file_v1_capability_proto_msgTypes[97].OneofWrappers = []any{} file_v1_capability_proto_msgTypes[102].OneofWrappers = []any{} + file_v1_capability_proto_msgTypes[104].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_v1_capability_proto_rawDesc), len(file_v1_capability_proto_rawDesc)), NumEnums: 0, - NumMessages: 141, + NumMessages: 143, NumExtensions: 0, NumServices: 0, }, diff --git a/content/content.go b/content/content.go index b022f5d..3ce5403 100644 --- a/content/content.go +++ b/content/content.go @@ -59,6 +59,12 @@ type ListPostsParams struct { type Content interface { GetAuthorProfile(ctx context.Context, id uuid.UUID) (*AuthorProfile, error) GetPage(ctx context.Context, slug string) (*PageInfo, error) + // PublishedBlockConfigs returns the stored content (config) of every block + // with the given key inside a currently published page snapshot. This is + // the server-authoritative source for per-block settings a sandboxed guest + // cannot query itself (e.g. whether any published booking block demands + // captcha) — never trust the same flags from the client request. + PublishedBlockConfigs(ctx context.Context, blockKey string) ([]map[string]any, error) GetPost(ctx context.Context, slug string) (*PostInfo, error) ListPosts(ctx context.Context, params ListPostsParams) ([]PostInfo, error) Slugify(text string) string diff --git a/plugin/wasmguest/caps/content.go b/plugin/wasmguest/caps/content.go index 8297d1e..1b69a83 100644 --- a/plugin/wasmguest/caps/content.go +++ b/plugin/wasmguest/caps/content.go @@ -47,6 +47,22 @@ func (s *contentStub) GetPage(ctx context.Context, slug string) (*content.PageIn return &content.PageInfo{ID: parseUUID(p.GetId()), Slug: p.GetSlug(), Title: p.GetTitle()}, nil } +func (s *contentStub) PublishedBlockConfigs(ctx context.Context, blockKey string) ([]map[string]any, error) { + resp := &abiv1.ContentPublishedBlockConfigsResponse{} + if err := s.invoke(ctx, "published_block_configs", &abiv1.ContentPublishedBlockConfigsRequest{BlockKey: blockKey}, resp); err != nil { + return nil, err + } + configs := make([]map[string]any, 0, len(resp.GetConfigs())) + for _, raw := range resp.GetConfigs() { + var m map[string]any + if err := json.Unmarshal(raw, &m); err != nil { + continue + } + configs = append(configs, m) + } + return configs, nil +} + func (s *contentStub) GetPost(ctx context.Context, slug string) (*content.PostInfo, error) { resp := &abiv1.ContentGetPostResponse{} if err := s.invoke(ctx, "get_post", &abiv1.ContentGetPostRequest{Slug: slug}, resp); err != nil {