webhook_service.pb.go 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.36.4
  4. // protoc (unknown)
  5. // source: api/v1/webhook_service.proto
  6. package apiv1
  7. import (
  8. _ "google.golang.org/genproto/googleapis/api/annotations"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. emptypb "google.golang.org/protobuf/types/known/emptypb"
  12. fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb"
  13. timestamppb "google.golang.org/protobuf/types/known/timestamppb"
  14. reflect "reflect"
  15. sync "sync"
  16. unsafe "unsafe"
  17. )
  18. const (
  19. // Verify that this generated code is sufficiently up-to-date.
  20. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  21. // Verify that runtime/protoimpl is sufficiently up-to-date.
  22. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  23. )
  24. type Webhook struct {
  25. state protoimpl.MessageState `protogen:"open.v1"`
  26. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  27. // The name of the creator.
  28. Creator string `protobuf:"bytes,2,opt,name=creator,proto3" json:"creator,omitempty"`
  29. CreateTime *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
  30. UpdateTime *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
  31. Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
  32. Url string `protobuf:"bytes,6,opt,name=url,proto3" json:"url,omitempty"`
  33. unknownFields protoimpl.UnknownFields
  34. sizeCache protoimpl.SizeCache
  35. }
  36. func (x *Webhook) Reset() {
  37. *x = Webhook{}
  38. mi := &file_api_v1_webhook_service_proto_msgTypes[0]
  39. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  40. ms.StoreMessageInfo(mi)
  41. }
  42. func (x *Webhook) String() string {
  43. return protoimpl.X.MessageStringOf(x)
  44. }
  45. func (*Webhook) ProtoMessage() {}
  46. func (x *Webhook) ProtoReflect() protoreflect.Message {
  47. mi := &file_api_v1_webhook_service_proto_msgTypes[0]
  48. if x != nil {
  49. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  50. if ms.LoadMessageInfo() == nil {
  51. ms.StoreMessageInfo(mi)
  52. }
  53. return ms
  54. }
  55. return mi.MessageOf(x)
  56. }
  57. // Deprecated: Use Webhook.ProtoReflect.Descriptor instead.
  58. func (*Webhook) Descriptor() ([]byte, []int) {
  59. return file_api_v1_webhook_service_proto_rawDescGZIP(), []int{0}
  60. }
  61. func (x *Webhook) GetId() int32 {
  62. if x != nil {
  63. return x.Id
  64. }
  65. return 0
  66. }
  67. func (x *Webhook) GetCreator() string {
  68. if x != nil {
  69. return x.Creator
  70. }
  71. return ""
  72. }
  73. func (x *Webhook) GetCreateTime() *timestamppb.Timestamp {
  74. if x != nil {
  75. return x.CreateTime
  76. }
  77. return nil
  78. }
  79. func (x *Webhook) GetUpdateTime() *timestamppb.Timestamp {
  80. if x != nil {
  81. return x.UpdateTime
  82. }
  83. return nil
  84. }
  85. func (x *Webhook) GetName() string {
  86. if x != nil {
  87. return x.Name
  88. }
  89. return ""
  90. }
  91. func (x *Webhook) GetUrl() string {
  92. if x != nil {
  93. return x.Url
  94. }
  95. return ""
  96. }
  97. type CreateWebhookRequest struct {
  98. state protoimpl.MessageState `protogen:"open.v1"`
  99. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  100. Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
  101. unknownFields protoimpl.UnknownFields
  102. sizeCache protoimpl.SizeCache
  103. }
  104. func (x *CreateWebhookRequest) Reset() {
  105. *x = CreateWebhookRequest{}
  106. mi := &file_api_v1_webhook_service_proto_msgTypes[1]
  107. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  108. ms.StoreMessageInfo(mi)
  109. }
  110. func (x *CreateWebhookRequest) String() string {
  111. return protoimpl.X.MessageStringOf(x)
  112. }
  113. func (*CreateWebhookRequest) ProtoMessage() {}
  114. func (x *CreateWebhookRequest) ProtoReflect() protoreflect.Message {
  115. mi := &file_api_v1_webhook_service_proto_msgTypes[1]
  116. if x != nil {
  117. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  118. if ms.LoadMessageInfo() == nil {
  119. ms.StoreMessageInfo(mi)
  120. }
  121. return ms
  122. }
  123. return mi.MessageOf(x)
  124. }
  125. // Deprecated: Use CreateWebhookRequest.ProtoReflect.Descriptor instead.
  126. func (*CreateWebhookRequest) Descriptor() ([]byte, []int) {
  127. return file_api_v1_webhook_service_proto_rawDescGZIP(), []int{1}
  128. }
  129. func (x *CreateWebhookRequest) GetName() string {
  130. if x != nil {
  131. return x.Name
  132. }
  133. return ""
  134. }
  135. func (x *CreateWebhookRequest) GetUrl() string {
  136. if x != nil {
  137. return x.Url
  138. }
  139. return ""
  140. }
  141. type GetWebhookRequest struct {
  142. state protoimpl.MessageState `protogen:"open.v1"`
  143. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  144. unknownFields protoimpl.UnknownFields
  145. sizeCache protoimpl.SizeCache
  146. }
  147. func (x *GetWebhookRequest) Reset() {
  148. *x = GetWebhookRequest{}
  149. mi := &file_api_v1_webhook_service_proto_msgTypes[2]
  150. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  151. ms.StoreMessageInfo(mi)
  152. }
  153. func (x *GetWebhookRequest) String() string {
  154. return protoimpl.X.MessageStringOf(x)
  155. }
  156. func (*GetWebhookRequest) ProtoMessage() {}
  157. func (x *GetWebhookRequest) ProtoReflect() protoreflect.Message {
  158. mi := &file_api_v1_webhook_service_proto_msgTypes[2]
  159. if x != nil {
  160. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  161. if ms.LoadMessageInfo() == nil {
  162. ms.StoreMessageInfo(mi)
  163. }
  164. return ms
  165. }
  166. return mi.MessageOf(x)
  167. }
  168. // Deprecated: Use GetWebhookRequest.ProtoReflect.Descriptor instead.
  169. func (*GetWebhookRequest) Descriptor() ([]byte, []int) {
  170. return file_api_v1_webhook_service_proto_rawDescGZIP(), []int{2}
  171. }
  172. func (x *GetWebhookRequest) GetId() int32 {
  173. if x != nil {
  174. return x.Id
  175. }
  176. return 0
  177. }
  178. type ListWebhooksRequest struct {
  179. state protoimpl.MessageState `protogen:"open.v1"`
  180. // The name of the creator.
  181. Creator string `protobuf:"bytes,2,opt,name=creator,proto3" json:"creator,omitempty"`
  182. unknownFields protoimpl.UnknownFields
  183. sizeCache protoimpl.SizeCache
  184. }
  185. func (x *ListWebhooksRequest) Reset() {
  186. *x = ListWebhooksRequest{}
  187. mi := &file_api_v1_webhook_service_proto_msgTypes[3]
  188. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  189. ms.StoreMessageInfo(mi)
  190. }
  191. func (x *ListWebhooksRequest) String() string {
  192. return protoimpl.X.MessageStringOf(x)
  193. }
  194. func (*ListWebhooksRequest) ProtoMessage() {}
  195. func (x *ListWebhooksRequest) ProtoReflect() protoreflect.Message {
  196. mi := &file_api_v1_webhook_service_proto_msgTypes[3]
  197. if x != nil {
  198. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  199. if ms.LoadMessageInfo() == nil {
  200. ms.StoreMessageInfo(mi)
  201. }
  202. return ms
  203. }
  204. return mi.MessageOf(x)
  205. }
  206. // Deprecated: Use ListWebhooksRequest.ProtoReflect.Descriptor instead.
  207. func (*ListWebhooksRequest) Descriptor() ([]byte, []int) {
  208. return file_api_v1_webhook_service_proto_rawDescGZIP(), []int{3}
  209. }
  210. func (x *ListWebhooksRequest) GetCreator() string {
  211. if x != nil {
  212. return x.Creator
  213. }
  214. return ""
  215. }
  216. type ListWebhooksResponse struct {
  217. state protoimpl.MessageState `protogen:"open.v1"`
  218. Webhooks []*Webhook `protobuf:"bytes,1,rep,name=webhooks,proto3" json:"webhooks,omitempty"`
  219. unknownFields protoimpl.UnknownFields
  220. sizeCache protoimpl.SizeCache
  221. }
  222. func (x *ListWebhooksResponse) Reset() {
  223. *x = ListWebhooksResponse{}
  224. mi := &file_api_v1_webhook_service_proto_msgTypes[4]
  225. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  226. ms.StoreMessageInfo(mi)
  227. }
  228. func (x *ListWebhooksResponse) String() string {
  229. return protoimpl.X.MessageStringOf(x)
  230. }
  231. func (*ListWebhooksResponse) ProtoMessage() {}
  232. func (x *ListWebhooksResponse) ProtoReflect() protoreflect.Message {
  233. mi := &file_api_v1_webhook_service_proto_msgTypes[4]
  234. if x != nil {
  235. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  236. if ms.LoadMessageInfo() == nil {
  237. ms.StoreMessageInfo(mi)
  238. }
  239. return ms
  240. }
  241. return mi.MessageOf(x)
  242. }
  243. // Deprecated: Use ListWebhooksResponse.ProtoReflect.Descriptor instead.
  244. func (*ListWebhooksResponse) Descriptor() ([]byte, []int) {
  245. return file_api_v1_webhook_service_proto_rawDescGZIP(), []int{4}
  246. }
  247. func (x *ListWebhooksResponse) GetWebhooks() []*Webhook {
  248. if x != nil {
  249. return x.Webhooks
  250. }
  251. return nil
  252. }
  253. type UpdateWebhookRequest struct {
  254. state protoimpl.MessageState `protogen:"open.v1"`
  255. Webhook *Webhook `protobuf:"bytes,1,opt,name=webhook,proto3" json:"webhook,omitempty"`
  256. UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
  257. unknownFields protoimpl.UnknownFields
  258. sizeCache protoimpl.SizeCache
  259. }
  260. func (x *UpdateWebhookRequest) Reset() {
  261. *x = UpdateWebhookRequest{}
  262. mi := &file_api_v1_webhook_service_proto_msgTypes[5]
  263. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  264. ms.StoreMessageInfo(mi)
  265. }
  266. func (x *UpdateWebhookRequest) String() string {
  267. return protoimpl.X.MessageStringOf(x)
  268. }
  269. func (*UpdateWebhookRequest) ProtoMessage() {}
  270. func (x *UpdateWebhookRequest) ProtoReflect() protoreflect.Message {
  271. mi := &file_api_v1_webhook_service_proto_msgTypes[5]
  272. if x != nil {
  273. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  274. if ms.LoadMessageInfo() == nil {
  275. ms.StoreMessageInfo(mi)
  276. }
  277. return ms
  278. }
  279. return mi.MessageOf(x)
  280. }
  281. // Deprecated: Use UpdateWebhookRequest.ProtoReflect.Descriptor instead.
  282. func (*UpdateWebhookRequest) Descriptor() ([]byte, []int) {
  283. return file_api_v1_webhook_service_proto_rawDescGZIP(), []int{5}
  284. }
  285. func (x *UpdateWebhookRequest) GetWebhook() *Webhook {
  286. if x != nil {
  287. return x.Webhook
  288. }
  289. return nil
  290. }
  291. func (x *UpdateWebhookRequest) GetUpdateMask() *fieldmaskpb.FieldMask {
  292. if x != nil {
  293. return x.UpdateMask
  294. }
  295. return nil
  296. }
  297. type DeleteWebhookRequest struct {
  298. state protoimpl.MessageState `protogen:"open.v1"`
  299. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  300. unknownFields protoimpl.UnknownFields
  301. sizeCache protoimpl.SizeCache
  302. }
  303. func (x *DeleteWebhookRequest) Reset() {
  304. *x = DeleteWebhookRequest{}
  305. mi := &file_api_v1_webhook_service_proto_msgTypes[6]
  306. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  307. ms.StoreMessageInfo(mi)
  308. }
  309. func (x *DeleteWebhookRequest) String() string {
  310. return protoimpl.X.MessageStringOf(x)
  311. }
  312. func (*DeleteWebhookRequest) ProtoMessage() {}
  313. func (x *DeleteWebhookRequest) ProtoReflect() protoreflect.Message {
  314. mi := &file_api_v1_webhook_service_proto_msgTypes[6]
  315. if x != nil {
  316. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  317. if ms.LoadMessageInfo() == nil {
  318. ms.StoreMessageInfo(mi)
  319. }
  320. return ms
  321. }
  322. return mi.MessageOf(x)
  323. }
  324. // Deprecated: Use DeleteWebhookRequest.ProtoReflect.Descriptor instead.
  325. func (*DeleteWebhookRequest) Descriptor() ([]byte, []int) {
  326. return file_api_v1_webhook_service_proto_rawDescGZIP(), []int{6}
  327. }
  328. func (x *DeleteWebhookRequest) GetId() int32 {
  329. if x != nil {
  330. return x.Id
  331. }
  332. return 0
  333. }
  334. type WebhookRequestPayload struct {
  335. state protoimpl.MessageState `protogen:"open.v1"`
  336. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
  337. ActivityType string `protobuf:"bytes,2,opt,name=activity_type,json=activityType,proto3" json:"activity_type,omitempty"`
  338. // The name of the creator.
  339. // Format: users/{user}
  340. Creator string `protobuf:"bytes,3,opt,name=creator,proto3" json:"creator,omitempty"`
  341. CreateTime *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
  342. Memo *Memo `protobuf:"bytes,5,opt,name=memo,proto3" json:"memo,omitempty"`
  343. unknownFields protoimpl.UnknownFields
  344. sizeCache protoimpl.SizeCache
  345. }
  346. func (x *WebhookRequestPayload) Reset() {
  347. *x = WebhookRequestPayload{}
  348. mi := &file_api_v1_webhook_service_proto_msgTypes[7]
  349. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  350. ms.StoreMessageInfo(mi)
  351. }
  352. func (x *WebhookRequestPayload) String() string {
  353. return protoimpl.X.MessageStringOf(x)
  354. }
  355. func (*WebhookRequestPayload) ProtoMessage() {}
  356. func (x *WebhookRequestPayload) ProtoReflect() protoreflect.Message {
  357. mi := &file_api_v1_webhook_service_proto_msgTypes[7]
  358. if x != nil {
  359. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  360. if ms.LoadMessageInfo() == nil {
  361. ms.StoreMessageInfo(mi)
  362. }
  363. return ms
  364. }
  365. return mi.MessageOf(x)
  366. }
  367. // Deprecated: Use WebhookRequestPayload.ProtoReflect.Descriptor instead.
  368. func (*WebhookRequestPayload) Descriptor() ([]byte, []int) {
  369. return file_api_v1_webhook_service_proto_rawDescGZIP(), []int{7}
  370. }
  371. func (x *WebhookRequestPayload) GetUrl() string {
  372. if x != nil {
  373. return x.Url
  374. }
  375. return ""
  376. }
  377. func (x *WebhookRequestPayload) GetActivityType() string {
  378. if x != nil {
  379. return x.ActivityType
  380. }
  381. return ""
  382. }
  383. func (x *WebhookRequestPayload) GetCreator() string {
  384. if x != nil {
  385. return x.Creator
  386. }
  387. return ""
  388. }
  389. func (x *WebhookRequestPayload) GetCreateTime() *timestamppb.Timestamp {
  390. if x != nil {
  391. return x.CreateTime
  392. }
  393. return nil
  394. }
  395. func (x *WebhookRequestPayload) GetMemo() *Memo {
  396. if x != nil {
  397. return x.Memo
  398. }
  399. return nil
  400. }
  401. var File_api_v1_webhook_service_proto protoreflect.FileDescriptor
  402. var file_api_v1_webhook_service_proto_rawDesc = string([]byte{
  403. 0x0a, 0x1c, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b,
  404. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0c,
  405. 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x1a, 0x19, 0x61, 0x70,
  406. 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x65, 0x6d, 0x6f, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63,
  407. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
  408. 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e,
  409. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70,
  410. 0x69, 0x2f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b,
  411. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f,
  412. 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x6f,
  413. 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66, 0x69, 0x65,
  414. 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67,
  415. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74,
  416. 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xd3,
  417. 0x01, 0x0a, 0x07, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  418. 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x72,
  419. 0x65, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x72, 0x65,
  420. 0x61, 0x74, 0x6f, 0x72, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x74,
  421. 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  422. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65,
  423. 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d,
  424. 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  425. 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  426. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
  427. 0x6d, 0x70, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x12,
  428. 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
  429. 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  430. 0x03, 0x75, 0x72, 0x6c, 0x22, 0x3c, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x57, 0x65,
  431. 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04,
  432. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
  433. 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75,
  434. 0x72, 0x6c, 0x22, 0x23, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b,
  435. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
  436. 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x22, 0x2f, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x57,
  437. 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18,
  438. 0x0a, 0x07, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  439. 0x07, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x22, 0x49, 0x0a, 0x14, 0x4c, 0x69, 0x73, 0x74,
  440. 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  441. 0x12, 0x31, 0x0a, 0x08, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x18, 0x01, 0x20, 0x03,
  442. 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
  443. 0x31, 0x2e, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x08, 0x77, 0x65, 0x62, 0x68, 0x6f,
  444. 0x6f, 0x6b, 0x73, 0x22, 0x84, 0x01, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x65,
  445. 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2f, 0x0a, 0x07,
  446. 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e,
  447. 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x65, 0x62,
  448. 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x07, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x3b, 0x0a,
  449. 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x02, 0x20, 0x01,
  450. 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  451. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a,
  452. 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x22, 0x26, 0x0a, 0x14, 0x44, 0x65,
  453. 0x6c, 0x65, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65,
  454. 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02,
  455. 0x69, 0x64, 0x22, 0xcd, 0x01, 0x0a, 0x15, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65,
  456. 0x71, 0x75, 0x65, 0x73, 0x74, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x12, 0x10, 0x0a, 0x03,
  457. 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x23,
  458. 0x0a, 0x0d, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
  459. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x54,
  460. 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x03,
  461. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x3b, 0x0a,
  462. 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01,
  463. 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  464. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a,
  465. 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x04, 0x6d, 0x65,
  466. 0x6d, 0x6f, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73,
  467. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x65, 0x6d, 0x6f, 0x52, 0x04, 0x6d, 0x65,
  468. 0x6d, 0x6f, 0x32, 0xd8, 0x04, 0x0a, 0x0e, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x53, 0x65,
  469. 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x67, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x57,
  470. 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x22, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61,
  471. 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68,
  472. 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x6d, 0x65, 0x6d,
  473. 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f,
  474. 0x6b, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x3a, 0x01, 0x2a, 0x22, 0x10, 0x2f, 0x61,
  475. 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x12, 0x68,
  476. 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x1f, 0x2e, 0x6d,
  477. 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x57,
  478. 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e,
  479. 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x65, 0x62,
  480. 0x68, 0x6f, 0x6f, 0x6b, 0x22, 0x22, 0xda, 0x41, 0x02, 0x69, 0x64, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  481. 0x17, 0x12, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x77, 0x65, 0x62, 0x68, 0x6f,
  482. 0x6f, 0x6b, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x12, 0x6f, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74,
  483. 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x12, 0x21, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73,
  484. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x57, 0x65, 0x62, 0x68,
  485. 0x6f, 0x6f, 0x6b, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x6d, 0x65,
  486. 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x57,
  487. 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  488. 0x18, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x12, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31,
  489. 0x2f, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x12, 0x90, 0x01, 0x0a, 0x0d, 0x55, 0x70,
  490. 0x64, 0x61, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x22, 0x2e, 0x6d, 0x65,
  491. 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74,
  492. 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  493. 0x15, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x57,
  494. 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x22, 0x44, 0xda, 0x41, 0x13, 0x77, 0x65, 0x62, 0x68, 0x6f,
  495. 0x6f, 0x6b, 0x2c, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x82, 0xd3,
  496. 0xe4, 0x93, 0x02, 0x28, 0x3a, 0x07, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x32, 0x1d, 0x2f,
  497. 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x2f,
  498. 0x7b, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x2e, 0x69, 0x64, 0x7d, 0x12, 0x6f, 0x0a, 0x0d,
  499. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x22, 0x2e,
  500. 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c,
  501. 0x65, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  502. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  503. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x22, 0xda, 0x41, 0x02, 0x69, 0x64,
  504. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x2a, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f,
  505. 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x42, 0xab, 0x01,
  506. 0x0a, 0x10, 0x63, 0x6f, 0x6d, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  507. 0x76, 0x31, 0x42, 0x13, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x53, 0x65, 0x72, 0x76, 0x69,
  508. 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x30, 0x67, 0x69, 0x74, 0x68, 0x75,
  509. 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x75, 0x73, 0x65, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2f, 0x6d,
  510. 0x65, 0x6d, 0x6f, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x65, 0x6e, 0x2f, 0x61,
  511. 0x70, 0x69, 0x2f, 0x76, 0x31, 0x3b, 0x61, 0x70, 0x69, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x41,
  512. 0x58, 0xaa, 0x02, 0x0c, 0x4d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x41, 0x70, 0x69, 0x2e, 0x56, 0x31,
  513. 0xca, 0x02, 0x0c, 0x4d, 0x65, 0x6d, 0x6f, 0x73, 0x5c, 0x41, 0x70, 0x69, 0x5c, 0x56, 0x31, 0xe2,
  514. 0x02, 0x18, 0x4d, 0x65, 0x6d, 0x6f, 0x73, 0x5c, 0x41, 0x70, 0x69, 0x5c, 0x56, 0x31, 0x5c, 0x47,
  515. 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x0e, 0x4d, 0x65, 0x6d,
  516. 0x6f, 0x73, 0x3a, 0x3a, 0x41, 0x70, 0x69, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f,
  517. 0x74, 0x6f, 0x33,
  518. })
  519. var (
  520. file_api_v1_webhook_service_proto_rawDescOnce sync.Once
  521. file_api_v1_webhook_service_proto_rawDescData []byte
  522. )
  523. func file_api_v1_webhook_service_proto_rawDescGZIP() []byte {
  524. file_api_v1_webhook_service_proto_rawDescOnce.Do(func() {
  525. file_api_v1_webhook_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_api_v1_webhook_service_proto_rawDesc), len(file_api_v1_webhook_service_proto_rawDesc)))
  526. })
  527. return file_api_v1_webhook_service_proto_rawDescData
  528. }
  529. var file_api_v1_webhook_service_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
  530. var file_api_v1_webhook_service_proto_goTypes = []any{
  531. (*Webhook)(nil), // 0: memos.api.v1.Webhook
  532. (*CreateWebhookRequest)(nil), // 1: memos.api.v1.CreateWebhookRequest
  533. (*GetWebhookRequest)(nil), // 2: memos.api.v1.GetWebhookRequest
  534. (*ListWebhooksRequest)(nil), // 3: memos.api.v1.ListWebhooksRequest
  535. (*ListWebhooksResponse)(nil), // 4: memos.api.v1.ListWebhooksResponse
  536. (*UpdateWebhookRequest)(nil), // 5: memos.api.v1.UpdateWebhookRequest
  537. (*DeleteWebhookRequest)(nil), // 6: memos.api.v1.DeleteWebhookRequest
  538. (*WebhookRequestPayload)(nil), // 7: memos.api.v1.WebhookRequestPayload
  539. (*timestamppb.Timestamp)(nil), // 8: google.protobuf.Timestamp
  540. (*fieldmaskpb.FieldMask)(nil), // 9: google.protobuf.FieldMask
  541. (*Memo)(nil), // 10: memos.api.v1.Memo
  542. (*emptypb.Empty)(nil), // 11: google.protobuf.Empty
  543. }
  544. var file_api_v1_webhook_service_proto_depIdxs = []int32{
  545. 8, // 0: memos.api.v1.Webhook.create_time:type_name -> google.protobuf.Timestamp
  546. 8, // 1: memos.api.v1.Webhook.update_time:type_name -> google.protobuf.Timestamp
  547. 0, // 2: memos.api.v1.ListWebhooksResponse.webhooks:type_name -> memos.api.v1.Webhook
  548. 0, // 3: memos.api.v1.UpdateWebhookRequest.webhook:type_name -> memos.api.v1.Webhook
  549. 9, // 4: memos.api.v1.UpdateWebhookRequest.update_mask:type_name -> google.protobuf.FieldMask
  550. 8, // 5: memos.api.v1.WebhookRequestPayload.create_time:type_name -> google.protobuf.Timestamp
  551. 10, // 6: memos.api.v1.WebhookRequestPayload.memo:type_name -> memos.api.v1.Memo
  552. 1, // 7: memos.api.v1.WebhookService.CreateWebhook:input_type -> memos.api.v1.CreateWebhookRequest
  553. 2, // 8: memos.api.v1.WebhookService.GetWebhook:input_type -> memos.api.v1.GetWebhookRequest
  554. 3, // 9: memos.api.v1.WebhookService.ListWebhooks:input_type -> memos.api.v1.ListWebhooksRequest
  555. 5, // 10: memos.api.v1.WebhookService.UpdateWebhook:input_type -> memos.api.v1.UpdateWebhookRequest
  556. 6, // 11: memos.api.v1.WebhookService.DeleteWebhook:input_type -> memos.api.v1.DeleteWebhookRequest
  557. 0, // 12: memos.api.v1.WebhookService.CreateWebhook:output_type -> memos.api.v1.Webhook
  558. 0, // 13: memos.api.v1.WebhookService.GetWebhook:output_type -> memos.api.v1.Webhook
  559. 4, // 14: memos.api.v1.WebhookService.ListWebhooks:output_type -> memos.api.v1.ListWebhooksResponse
  560. 0, // 15: memos.api.v1.WebhookService.UpdateWebhook:output_type -> memos.api.v1.Webhook
  561. 11, // 16: memos.api.v1.WebhookService.DeleteWebhook:output_type -> google.protobuf.Empty
  562. 12, // [12:17] is the sub-list for method output_type
  563. 7, // [7:12] is the sub-list for method input_type
  564. 7, // [7:7] is the sub-list for extension type_name
  565. 7, // [7:7] is the sub-list for extension extendee
  566. 0, // [0:7] is the sub-list for field type_name
  567. }
  568. func init() { file_api_v1_webhook_service_proto_init() }
  569. func file_api_v1_webhook_service_proto_init() {
  570. if File_api_v1_webhook_service_proto != nil {
  571. return
  572. }
  573. file_api_v1_memo_service_proto_init()
  574. type x struct{}
  575. out := protoimpl.TypeBuilder{
  576. File: protoimpl.DescBuilder{
  577. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  578. RawDescriptor: unsafe.Slice(unsafe.StringData(file_api_v1_webhook_service_proto_rawDesc), len(file_api_v1_webhook_service_proto_rawDesc)),
  579. NumEnums: 0,
  580. NumMessages: 8,
  581. NumExtensions: 0,
  582. NumServices: 1,
  583. },
  584. GoTypes: file_api_v1_webhook_service_proto_goTypes,
  585. DependencyIndexes: file_api_v1_webhook_service_proto_depIdxs,
  586. MessageInfos: file_api_v1_webhook_service_proto_msgTypes,
  587. }.Build()
  588. File_api_v1_webhook_service_proto = out.File
  589. file_api_v1_webhook_service_proto_goTypes = nil
  590. file_api_v1_webhook_service_proto_depIdxs = nil
  591. }