1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00

GO-3022 Remove redundant Request word

This commit is contained in:
kirillston 2024-04-22 12:12:42 +03:00
parent 6fd4e51d24
commit fd8e4cc506
No known key found for this signature in database
GPG key ID: 88218A7F1109754B
5 changed files with 127 additions and 127 deletions

View file

@ -175,10 +175,10 @@ func (mr *MockAnyPpClientServiceMockRecorder) Name() *gomock.Call {
}
// VerifyAppStoreReceipt mocks base method.
func (m *MockAnyPpClientService) VerifyAppStoreReceipt(ctx context.Context, in *paymentserviceproto.VerifyAppStoreReceiptRequestSigned) (*paymentserviceproto.VerifyAppStoreReceiptRequestResponse, error) {
func (m *MockAnyPpClientService) VerifyAppStoreReceipt(ctx context.Context, in *paymentserviceproto.VerifyAppStoreReceiptRequestSigned) (*paymentserviceproto.VerifyAppStoreReceiptResponse, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "VerifyAppStoreReceipt", ctx, in)
ret0, _ := ret[0].(*paymentserviceproto.VerifyAppStoreReceiptRequestResponse)
ret0, _ := ret[0].(*paymentserviceproto.VerifyAppStoreReceiptResponse)
ret1, _ := ret[1].(error)
return ret0, ret1
}

View file

@ -30,7 +30,7 @@ type AnyPpClientService interface {
VerifyEmail(ctx context.Context, in *pp.VerifyEmailRequestSigned) (out *pp.VerifyEmailResponse, err error)
FinalizeSubscription(ctx context.Context, in *pp.FinalizeSubscriptionRequestSigned) (out *pp.FinalizeSubscriptionResponse, err error)
GetAllTiers(ctx context.Context, in *pp.GetTiersRequestSigned) (out *pp.GetTiersResponse, err error)
VerifyAppStoreReceipt(ctx context.Context, in *pp.VerifyAppStoreReceiptRequestSigned) (out *pp.VerifyAppStoreReceiptRequestResponse, err error)
VerifyAppStoreReceipt(ctx context.Context, in *pp.VerifyAppStoreReceiptRequestSigned) (out *pp.VerifyAppStoreReceiptResponse, err error)
app.Component
}
@ -157,7 +157,7 @@ func (s *service) IsNameValid(ctx context.Context, in *pp.IsNameValidRequest) (o
return
}
func (s *service) VerifyAppStoreReceipt(ctx context.Context, in *pp.VerifyAppStoreReceiptRequestSigned) (out *pp.VerifyAppStoreReceiptRequestResponse, err error) {
func (s *service) VerifyAppStoreReceipt(ctx context.Context, in *pp.VerifyAppStoreReceiptRequestSigned) (out *pp.VerifyAppStoreReceiptResponse, err error) {
err = s.doClient(ctx, func(cl pp.DRPCAnyPaymentProcessingClient) error {
if out, err = cl.VerifyAppStoreReceipt(ctx, in); err != nil {
return rpcerr.Unwrap(err)

View file

@ -1511,21 +1511,21 @@ func (m *VerifyAppStoreReceiptRequestSigned) GetSignature() []byte {
return nil
}
type VerifyAppStoreReceiptRequestResponse struct {
type VerifyAppStoreReceiptResponse struct {
}
func (m *VerifyAppStoreReceiptRequestResponse) Reset() { *m = VerifyAppStoreReceiptRequestResponse{} }
func (m *VerifyAppStoreReceiptRequestResponse) String() string { return proto.CompactTextString(m) }
func (*VerifyAppStoreReceiptRequestResponse) ProtoMessage() {}
func (*VerifyAppStoreReceiptRequestResponse) Descriptor() ([]byte, []int) {
func (m *VerifyAppStoreReceiptResponse) Reset() { *m = VerifyAppStoreReceiptResponse{} }
func (m *VerifyAppStoreReceiptResponse) String() string { return proto.CompactTextString(m) }
func (*VerifyAppStoreReceiptResponse) ProtoMessage() {}
func (*VerifyAppStoreReceiptResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_4feb29dcc5ba50f6, []int{22}
}
func (m *VerifyAppStoreReceiptRequestResponse) XXX_Unmarshal(b []byte) error {
func (m *VerifyAppStoreReceiptResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *VerifyAppStoreReceiptRequestResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
func (m *VerifyAppStoreReceiptResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_VerifyAppStoreReceiptRequestResponse.Marshal(b, m, deterministic)
return xxx_messageInfo_VerifyAppStoreReceiptResponse.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
@ -1535,17 +1535,17 @@ func (m *VerifyAppStoreReceiptRequestResponse) XXX_Marshal(b []byte, determinist
return b[:n], nil
}
}
func (m *VerifyAppStoreReceiptRequestResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_VerifyAppStoreReceiptRequestResponse.Merge(m, src)
func (m *VerifyAppStoreReceiptResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_VerifyAppStoreReceiptResponse.Merge(m, src)
}
func (m *VerifyAppStoreReceiptRequestResponse) XXX_Size() int {
func (m *VerifyAppStoreReceiptResponse) XXX_Size() int {
return m.Size()
}
func (m *VerifyAppStoreReceiptRequestResponse) XXX_DiscardUnknown() {
xxx_messageInfo_VerifyAppStoreReceiptRequestResponse.DiscardUnknown(m)
func (m *VerifyAppStoreReceiptResponse) XXX_DiscardUnknown() {
xxx_messageInfo_VerifyAppStoreReceiptResponse.DiscardUnknown(m)
}
var xxx_messageInfo_VerifyAppStoreReceiptRequestResponse proto.InternalMessageInfo
var xxx_messageInfo_VerifyAppStoreReceiptResponse proto.InternalMessageInfo
func init() {
proto.RegisterEnum("SubscriptionTier", SubscriptionTier_name, SubscriptionTier_value)
@ -1575,7 +1575,7 @@ func init() {
proto.RegisterType((*IsNameValidResponse)(nil), "IsNameValidResponse")
proto.RegisterType((*VerifyAppStoreReceiptRequest)(nil), "VerifyAppStoreReceiptRequest")
proto.RegisterType((*VerifyAppStoreReceiptRequestSigned)(nil), "VerifyAppStoreReceiptRequestSigned")
proto.RegisterType((*VerifyAppStoreReceiptRequestResponse)(nil), "VerifyAppStoreReceiptRequestResponse")
proto.RegisterType((*VerifyAppStoreReceiptResponse)(nil), "VerifyAppStoreReceiptResponse")
}
func init() {
@ -1583,98 +1583,98 @@ func init() {
}
var fileDescriptor_4feb29dcc5ba50f6 = []byte{
// 1450 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xcf, 0x4f, 0x1b, 0xc7,
0x17, 0xf7, 0xfa, 0x07, 0xe0, 0xc7, 0xaf, 0x61, 0x30, 0x64, 0xe3, 0x80, 0x45, 0xf6, 0x9b, 0xe4,
0x8b, 0xa8, 0xba, 0x51, 0xd3, 0x1c, 0xaa, 0xaa, 0xaa, 0x6a, 0xc0, 0x50, 0xa4, 0x94, 0x22, 0xdb,
0x49, 0xd4, 0xa6, 0x52, 0xbb, 0x78, 0x1f, 0xb0, 0xcd, 0x32, 0xb3, 0x9d, 0x1d, 0x43, 0xb6, 0xb7,
0x1e, 0x7b, 0xab, 0xd4, 0x43, 0xff, 0xa0, 0x5e, 0x7a, 0xcc, 0x31, 0xc7, 0x36, 0xb9, 0xf5, 0xd4,
0xff, 0xa0, 0xd5, 0xcc, 0xae, 0xf1, 0x1a, 0x2f, 0x86, 0x06, 0xf5, 0x82, 0x67, 0x3e, 0x33, 0xef,
0xcd, 0x7b, 0x9f, 0xf7, 0xe6, 0xcd, 0x5b, 0xe0, 0xe3, 0xc0, 0x89, 0x8e, 0x91, 0xc9, 0x10, 0xc5,
0x89, 0xd7, 0xc1, 0xfb, 0x83, 0xd3, 0x40, 0x70, 0xc9, 0xef, 0xeb, 0xbf, 0xe1, 0xb9, 0x25, 0x5b,
0xa3, 0xd5, 0xcd, 0xb7, 0x95, 0xff, 0x5a, 0x7a, 0x28, 0xc2, 0x58, 0x8b, 0xf5, 0x01, 0x2c, 0x6e,
0xa3, 0x6c, 0x75, 0xf7, 0xc3, 0x8e, 0xf0, 0x02, 0xe9, 0x71, 0xd6, 0xc4, 0xef, 0xba, 0x18, 0x4a,
0x5a, 0x03, 0xe0, 0xa7, 0x0c, 0x45, 0x9d, 0x45, 0x3b, 0x9b, 0xa6, 0xb1, 0x62, 0xac, 0x96, 0x9b,
0x29, 0xc4, 0x7a, 0x02, 0x4b, 0xd9, 0x92, 0x2d, 0xef, 0x90, 0xa1, 0x4b, 0x4d, 0x18, 0x0f, 0x9c,
0xc8, 0xe7, 0x8e, 0xab, 0x85, 0xa7, 0x9a, 0xbd, 0x29, 0x5d, 0x82, 0x72, 0xe8, 0x1d, 0x32, 0x47,
0x76, 0x05, 0x9a, 0x79, 0xbd, 0xd6, 0x07, 0xac, 0xbf, 0xf2, 0x70, 0x63, 0x48, 0x71, 0x18, 0x70,
0x16, 0x22, 0xa5, 0x50, 0x54, 0xc6, 0x6b, 0x85, 0xd3, 0x4d, 0x3d, 0xa6, 0xef, 0xc0, 0x58, 0x28,
0x1d, 0xd9, 0x0d, 0xb5, 0xaa, 0x99, 0x07, 0xf3, 0x76, 0x5a, 0xb4, 0xa5, 0x97, 0x9a, 0xc9, 0x16,
0xba, 0x02, 0x93, 0xae, 0x23, 0xb1, 0x25, 0x1d, 0x21, 0xd1, 0x35, 0x0b, 0x2b, 0xc6, 0x6a, 0xb1,
0x99, 0x86, 0x68, 0x15, 0x26, 0xd4, 0xb4, 0xc1, 0xdc, 0xd0, 0x2c, 0xea, 0xe5, 0xb3, 0xb9, 0x92,
0xf6, 0xc2, 0x7a, 0x57, 0xf2, 0x26, 0x32, 0x3c, 0x35, 0x4b, 0x2b, 0xc6, 0xea, 0x44, 0x33, 0x0d,
0xd1, 0x87, 0x30, 0x9d, 0x90, 0xfd, 0x19, 0xca, 0x23, 0xee, 0x9a, 0x63, 0xda, 0xa6, 0x19, 0x7b,
0x2f, 0x8d, 0x36, 0x07, 0x37, 0xd1, 0x35, 0x20, 0x22, 0xe6, 0x0e, 0xdd, 0x3a, 0x8b, 0x76, 0x9d,
0x63, 0x34, 0xc7, 0x35, 0xe1, 0x43, 0xb8, 0x22, 0xaf, 0x1b, 0xa2, 0x68, 0x1c, 0x3b, 0x9e, 0x6f,
0x4e, 0xe8, 0x4d, 0x7d, 0x80, 0x3e, 0x84, 0x85, 0x30, 0xf6, 0x7e, 0x1f, 0xdb, 0x7c, 0x17, 0x4f,
0x43, 0x1f, 0xa5, 0x44, 0x61, 0x96, 0xb5, 0xad, 0xd9, 0x8b, 0xd6, 0x9f, 0x06, 0x2c, 0xae, 0x77,
0xa3, 0xcb, 0xb2, 0xc0, 0x1d, 0xca, 0x02, 0x97, 0xae, 0xc2, 0xac, 0x9e, 0x35, 0xe4, 0x51, 0xdd,
0x75, 0x05, 0x86, 0x71, 0x18, 0xca, 0xcd, 0xf3, 0x30, 0xbd, 0x03, 0xd3, 0x67, 0xce, 0xb4, 0x55,
0x10, 0x0b, 0x3a, 0x88, 0x83, 0xe0, 0x30, 0x81, 0xc5, 0xb7, 0x25, 0xb0, 0x94, 0x4d, 0xa0, 0xca,
0xdb, 0x6c, 0x5f, 0xaf, 0x99, 0xb7, 0x4f, 0xe1, 0xc6, 0x90, 0xde, 0x24, 0x6d, 0x6b, 0x00, 0x89,
0xbd, 0x8f, 0x85, 0xdf, 0x23, 0xb1, 0x8f, 0x28, 0xc5, 0xfb, 0x9e, 0xef, 0x7b, 0xec, 0x70, 0x67,
0x33, 0xa1, 0xaf, 0x0f, 0x58, 0x3f, 0x1b, 0x70, 0x6b, 0xcb, 0x63, 0x8e, 0xef, 0x7d, 0x8f, 0xff,
0x6d, 0x88, 0xb2, 0x68, 0x2c, 0x5c, 0x40, 0x63, 0x0d, 0x96, 0xb2, 0x8d, 0x8a, 0x7d, 0xb6, 0x9e,
0xc1, 0xed, 0x11, 0x46, 0x5f, 0x93, 0xeb, 0x75, 0x58, 0x39, 0x57, 0x22, 0xf6, 0xb8, 0x90, 0x8e,
0xff, 0xc8, 0x63, 0xcf, 0xaf, 0x48, 0x8b, 0xf5, 0x0d, 0xdc, 0xbb, 0x4c, 0xc7, 0x35, 0xad, 0xac,
0xc3, 0xed, 0x11, 0x27, 0x24, 0xb9, 0xb1, 0x04, 0xe5, 0x40, 0xa3, 0xfd, 0xd4, 0xe8, 0x03, 0xd6,
0x8f, 0x06, 0xdc, 0xda, 0x46, 0xf9, 0x04, 0x85, 0x77, 0xe0, 0x75, 0x1c, 0xa5, 0x43, 0x5f, 0xf4,
0xab, 0xc6, 0xbe, 0x02, 0x25, 0xd4, 0x95, 0x22, 0x8e, 0x78, 0x3c, 0xb9, 0xb8, 0x4a, 0x14, 0x46,
0x55, 0x89, 0x9a, 0x2e, 0xf8, 0x19, 0xa6, 0xf4, 0x23, 0x3e, 0xc2, 0xd4, 0x6b, 0x72, 0x29, 0x80,
0x6a, 0xcd, 0xd1, 0xbf, 0x72, 0xff, 0xea, 0xa9, 0x4f, 0xa1, 0xd8, 0xe1, 0x6e, 0x2f, 0xdd, 0xf5,
0xd8, 0xba, 0x0f, 0xf3, 0x03, 0x67, 0x26, 0x11, 0x33, 0x61, 0x3c, 0xec, 0x76, 0x3a, 0x4a, 0x99,
0xa1, 0xf9, 0xea, 0x4d, 0xad, 0x26, 0x98, 0xc3, 0x46, 0x5e, 0xd3, 0xf1, 0x03, 0xa0, 0x3b, 0xa1,
0xba, 0x71, 0x4f, 0x1c, 0xdf, 0x73, 0x7b, 0x8e, 0x0f, 0x15, 0x53, 0x23, 0xab, 0x98, 0x66, 0xdd,
0xe7, 0xfc, 0x05, 0xf7, 0xf9, 0x0f, 0x03, 0xe6, 0x07, 0x0e, 0x4a, 0xbc, 0x7d, 0x37, 0x21, 0xc6,
0xd0, 0x75, 0xf8, 0xa6, 0x9d, 0xb1, 0xc7, 0xde, 0xe0, 0x2e, 0xc6, 0x9c, 0xe9, 0x07, 0x16, 0xcf,
0xf2, 0x3d, 0x39, 0x2d, 0x0d, 0x59, 0x11, 0x14, 0xd5, 0x7e, 0x5a, 0x86, 0x92, 0xd6, 0x42, 0x72,
0x74, 0x0a, 0x26, 0x76, 0xf9, 0x26, 0x97, 0x75, 0x16, 0x11, 0x43, 0xcd, 0xda, 0x9c, 0xb7, 0x8e,
0xb8, 0x90, 0x24, 0x4f, 0x27, 0x61, 0xbc, 0xcd, 0xf9, 0x23, 0xce, 0x0e, 0x49, 0x81, 0xce, 0xc3,
0xec, 0xa7, 0x4e, 0xb8, 0xc3, 0x4e, 0x94, 0xe0, 0xc6, 0x91, 0x23, 0x42, 0x52, 0xa4, 0x0b, 0x30,
0xa7, 0xbc, 0xdd, 0x42, 0x4d, 0xd8, 0x2e, 0x57, 0xf6, 0x91, 0x12, 0x9d, 0x83, 0xe9, 0x0d, 0x87,
0xed, 0x72, 0xd9, 0x44, 0xd5, 0xf8, 0x20, 0x19, 0xb3, 0x4e, 0x60, 0x29, 0x8e, 0x4f, 0x3d, 0x08,
0x5a, 0x92, 0x0b, 0x6c, 0x62, 0x07, 0xbd, 0x40, 0x5e, 0x35, 0x9d, 0x46, 0xd6, 0x69, 0x15, 0x61,
0x11, 0xeb, 0x4b, 0xb2, 0xa8, 0x37, 0xb5, 0xbe, 0x02, 0x6b, 0xd4, 0xb9, 0xd7, 0xcc, 0x90, 0x7b,
0x70, 0x67, 0x94, 0xf6, 0x5e, 0x94, 0xd6, 0x7e, 0x35, 0x80, 0xa4, 0x8b, 0x91, 0x4e, 0x91, 0x59,
0x98, 0x54, 0xbf, 0x8f, 0xd9, 0x73, 0xc6, 0x4f, 0x19, 0xc9, 0x51, 0x02, 0x53, 0x0a, 0x68, 0xbc,
0x08, 0x7c, 0x2e, 0x50, 0x10, 0x83, 0x9a, 0x50, 0x51, 0xc8, 0x7a, 0xd7, 0xf3, 0x5d, 0x14, 0xef,
0x3d, 0x45, 0x7c, 0xde, 0x6e, 0xb4, 0xda, 0x24, 0x4f, 0xab, 0xb0, 0xa8, 0x56, 0x36, 0xf8, 0x86,
0x40, 0x47, 0xf2, 0xd4, 0x5a, 0x81, 0x56, 0x80, 0xa4, 0xa5, 0xbe, 0x40, 0x47, 0x90, 0x22, 0x5d,
0x04, 0x3a, 0x28, 0xa1, 0xf1, 0x92, 0x0a, 0x6c, 0x6a, 0xf7, 0x9e, 0xdf, 0x0d, 0xc9, 0x58, 0x0f,
0xac, 0xb3, 0x48, 0x46, 0x01, 0xb6, 0xd1, 0x39, 0x26, 0xe3, 0x6b, 0x21, 0xd0, 0xe1, 0xfe, 0x4e,
0x05, 0x3b, 0x1e, 0xf5, 0x1d, 0x39, 0x83, 0xf6, 0x90, 0xb9, 0x1e, 0x3b, 0x24, 0x86, 0xf2, 0x2d,
0x86, 0xea, 0x1d, 0xe9, 0x9d, 0x20, 0xc9, 0xd3, 0xbb, 0x70, 0x7b, 0x60, 0x93, 0xe2, 0xcc, 0x13,
0x18, 0x26, 0x4f, 0x97, 0xae, 0x62, 0xa4, 0xb0, 0xf6, 0x8b, 0x01, 0xd3, 0x03, 0x0d, 0x08, 0x9d,
0x01, 0x88, 0x47, 0x1b, 0x8e, 0x70, 0x63, 0xda, 0x92, 0xb9, 0x88, 0x02, 0xc9, 0x89, 0x41, 0x29,
0xcc, 0xc4, 0x48, 0x3d, 0x08, 0x7c, 0xdc, 0x73, 0x22, 0x92, 0x57, 0x1e, 0xc5, 0xd8, 0x36, 0xe7,
0x87, 0x31, 0xa8, 0x99, 0x4a, 0x6d, 0xdc, 0x61, 0x4e, 0x10, 0xc4, 0x59, 0x9d, 0xde, 0x1a, 0xc3,
0xa5, 0xfe, 0xb9, 0xbb, 0x9c, 0x21, 0x19, 0x5b, 0xfb, 0xa1, 0x00, 0xd0, 0x10, 0x82, 0x0b, 0x75,
0xa7, 0x42, 0xb5, 0xfc, 0x98, 0xe1, 0x8b, 0x00, 0x3b, 0x12, 0x95, 0x59, 0xf3, 0x30, 0xdb, 0x2f,
0x72, 0x8d, 0xe3, 0x40, 0xaa, 0x0b, 0x56, 0x01, 0x92, 0x5c, 0xa1, 0x56, 0x2f, 0x89, 0x48, 0x9e,
0x4e, 0x43, 0x59, 0xb1, 0xfd, 0x54, 0xc4, 0x57, 0x2d, 0xc9, 0x83, 0x5d, 0x2e, 0xb7, 0x78, 0x97,
0xb9, 0xa4, 0xd8, 0x43, 0x76, 0x98, 0x13, 0xb3, 0x57, 0x52, 0xd1, 0x1c, 0x60, 0x25, 0x96, 0x1d,
0x53, 0x56, 0xac, 0x3b, 0xbd, 0xca, 0x42, 0xc6, 0xd5, 0x1d, 0xee, 0xc5, 0x65, 0x42, 0x39, 0xa6,
0x02, 0x58, 0xf7, 0x05, 0x3a, 0x6e, 0x94, 0x44, 0xa2, 0xac, 0x63, 0xd3, 0xdd, 0x0f, 0xcf, 0xce,
0x03, 0x45, 0xa0, 0x42, 0xb4, 0x52, 0x15, 0x24, 0x24, 0x93, 0xca, 0x74, 0x5d, 0x5b, 0x35, 0xb8,
0xc5, 0xc5, 0xb1, 0x23, 0xc9, 0x94, 0xca, 0x50, 0x8d, 0x26, 0x3a, 0xe3, 0x27, 0x08, 0x5d, 0x32,
0x7d, 0xb6, 0x3f, 0x59, 0x69, 0x21, 0x93, 0x64, 0x46, 0x99, 0xa0, 0xd1, 0x2d, 0xc7, 0xf3, 0xd1,
0x6d, 0xf3, 0x16, 0x32, 0x97, 0xcc, 0x2a, 0x13, 0x34, 0xdc, 0x78, 0x11, 0x78, 0x02, 0x5d, 0x42,
0x94, 0x09, 0xfd, 0xe3, 0x14, 0xc3, 0x64, 0x8e, 0x12, 0x98, 0xd4, 0x84, 0x7f, 0x7e, 0x70, 0x10,
0xa2, 0x24, 0xaf, 0x8a, 0x0f, 0xfe, 0x2e, 0x41, 0xa5, 0xce, 0xa2, 0x84, 0x8a, 0x3d, 0xc1, 0xd5,
0x63, 0xe0, 0xb1, 0x43, 0xda, 0x84, 0x85, 0x73, 0x0d, 0x40, 0x92, 0xae, 0xcb, 0xf6, 0xa8, 0x4f,
0xa7, 0xaa, 0x69, 0x5f, 0xf0, 0x01, 0x64, 0xe5, 0xe8, 0x87, 0x30, 0x99, 0x2a, 0xc1, 0x74, 0xde,
0x1e, 0x7e, 0x1d, 0xaa, 0x95, 0xac, 0x2a, 0x6d, 0xe5, 0xe8, 0x23, 0x98, 0x3d, 0xd7, 0xa2, 0xd2,
0x65, 0x7b, 0x54, 0x33, 0x5c, 0x35, 0xed, 0x0b, 0x7a, 0x5a, 0x2b, 0x47, 0x9f, 0x41, 0x25, 0xab,
0xc3, 0xa3, 0x96, 0x7d, 0x69, 0xe3, 0x57, 0x5d, 0xb6, 0x47, 0x36, 0x8f, 0x39, 0xfa, 0x2d, 0xdc,
0xbc, 0xb0, 0x77, 0xa2, 0xff, 0xb7, 0xaf, 0xd6, 0xb9, 0x55, 0x2d, 0xfb, 0xd2, 0x06, 0x2c, 0x76,
0x24, 0xab, 0x71, 0xa1, 0x5a, 0x7a, 0x74, 0x3f, 0x53, 0x5d, 0xb6, 0x47, 0xf6, 0x44, 0x39, 0xfa,
0x09, 0x4c, 0xa6, 0x7a, 0x02, 0x7a, 0xd3, 0xbe, 0xa8, 0x43, 0xa8, 0x56, 0xec, 0x8c, 0x6e, 0x23,
0x8e, 0xf8, 0x36, 0xca, 0xba, 0xef, 0xab, 0xdb, 0x17, 0xd2, 0x45, 0x75, 0xa2, 0x1e, 0x0e, 0x8a,
0xcf, 0xa5, 0xf0, 0x33, 0x59, 0x84, 0x85, 0xcc, 0xb7, 0x81, 0xfe, 0xcf, 0xbe, 0xfc, 0x45, 0xaa,
0xde, 0xb5, 0xaf, 0xf2, 0xb0, 0x58, 0xb9, 0xf5, 0x8f, 0x7e, 0x7b, 0x5d, 0x33, 0x5e, 0xbe, 0xae,
0x19, 0xbf, 0xbf, 0xae, 0x19, 0x3f, 0xbd, 0xa9, 0xe5, 0x5e, 0xbe, 0xa9, 0xe5, 0x5e, 0xbd, 0xa9,
0xe5, 0xbe, 0xb4, 0x2e, 0xff, 0x2f, 0xc5, 0xfe, 0x98, 0xfe, 0x79, 0xff, 0x9f, 0x00, 0x00, 0x00,
0xff, 0xff, 0x86, 0x4e, 0xee, 0x53, 0x12, 0x11, 0x00, 0x00,
// 1448 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xcd, 0x6f, 0x1b, 0x45,
0x14, 0xf7, 0xfa, 0x23, 0x89, 0x5f, 0xbe, 0x26, 0x13, 0x27, 0xdd, 0xba, 0x89, 0x49, 0x97, 0xaf,
0x28, 0x88, 0xad, 0x28, 0x3d, 0x20, 0x84, 0x10, 0x4e, 0xe2, 0x84, 0x48, 0x25, 0x44, 0xb6, 0xdb,
0x0a, 0x8a, 0x80, 0x8d, 0xf7, 0x25, 0x59, 0xba, 0x99, 0x59, 0x66, 0xc7, 0x49, 0xcd, 0x8d, 0x23,
0x37, 0x24, 0x0e, 0xfc, 0x41, 0x5c, 0x38, 0xf6, 0xd8, 0x23, 0xb4, 0x37, 0x4e, 0x1c, 0x39, 0xa2,
0x99, 0x5d, 0xdb, 0xeb, 0x78, 0xed, 0x84, 0x46, 0x5c, 0xe2, 0x99, 0xdf, 0xcc, 0x7b, 0xf3, 0xde,
0xef, 0xbd, 0x79, 0xf3, 0x36, 0xf0, 0x71, 0xe0, 0x74, 0x4e, 0x91, 0xc9, 0x10, 0xc5, 0x99, 0xd7,
0xc2, 0x3b, 0x83, 0xd3, 0x40, 0x70, 0xc9, 0xef, 0xe8, 0xbf, 0xe1, 0x85, 0x25, 0x5b, 0xa3, 0xe5,
0xed, 0x57, 0x95, 0xff, 0x46, 0x7a, 0x28, 0xc2, 0x48, 0x8b, 0xf5, 0x01, 0x2c, 0xef, 0xa2, 0x6c,
0xb4, 0x0f, 0xc3, 0x96, 0xf0, 0x02, 0xe9, 0x71, 0x56, 0xc7, 0xef, 0xdb, 0x18, 0x4a, 0x5a, 0x01,
0xe0, 0xe7, 0x0c, 0x45, 0x95, 0x75, 0xf6, 0xb6, 0x4d, 0x63, 0xcd, 0x58, 0x2f, 0xd6, 0x13, 0x88,
0xf5, 0x10, 0x56, 0xd2, 0x25, 0x1b, 0xde, 0x31, 0x43, 0x97, 0x9a, 0x30, 0x19, 0x38, 0x1d, 0x9f,
0x3b, 0xae, 0x16, 0x9e, 0xa9, 0x77, 0xa7, 0x74, 0x05, 0x8a, 0xa1, 0x77, 0xcc, 0x1c, 0xd9, 0x16,
0x68, 0x66, 0xf5, 0x5a, 0x1f, 0xb0, 0xfe, 0xce, 0xc2, 0x8d, 0x21, 0xc5, 0x61, 0xc0, 0x59, 0x88,
0x94, 0x42, 0x5e, 0x19, 0xaf, 0x15, 0xce, 0xd6, 0xf5, 0x98, 0xbe, 0x03, 0x13, 0xa1, 0x74, 0x64,
0x3b, 0xd4, 0xaa, 0xe6, 0xee, 0x2e, 0xda, 0x49, 0xd1, 0x86, 0x5e, 0xaa, 0xc7, 0x5b, 0xe8, 0x1a,
0x4c, 0xbb, 0x8e, 0xc4, 0x86, 0x74, 0x84, 0x44, 0xd7, 0xcc, 0xad, 0x19, 0xeb, 0xf9, 0x7a, 0x12,
0xa2, 0x65, 0x98, 0x52, 0xd3, 0x1a, 0x73, 0x43, 0x33, 0xaf, 0x97, 0x7b, 0x73, 0x25, 0xed, 0x85,
0xd5, 0xb6, 0xe4, 0x75, 0x64, 0x78, 0x6e, 0x16, 0xd6, 0x8c, 0xf5, 0xa9, 0x7a, 0x12, 0xa2, 0xf7,
0x60, 0x36, 0x26, 0xfb, 0x33, 0x94, 0x27, 0xdc, 0x35, 0x27, 0xb4, 0x4d, 0x73, 0xf6, 0x41, 0x12,
0xad, 0x0f, 0x6e, 0xa2, 0x1b, 0x40, 0x44, 0xc4, 0x1d, 0xba, 0x55, 0xd6, 0xd9, 0x77, 0x4e, 0xd1,
0x9c, 0xd4, 0x84, 0x0f, 0xe1, 0x8a, 0xbc, 0x76, 0x88, 0xa2, 0x76, 0xea, 0x78, 0xbe, 0x39, 0xa5,
0x37, 0xf5, 0x01, 0x7a, 0x0f, 0x96, 0xc2, 0xc8, 0xfb, 0x43, 0x6c, 0xf2, 0x7d, 0x3c, 0x0f, 0x7d,
0x94, 0x12, 0x85, 0x59, 0xd4, 0xb6, 0xa6, 0x2f, 0x5a, 0x7f, 0x19, 0xb0, 0xbc, 0xd9, 0xee, 0x5c,
0x96, 0x05, 0xee, 0x50, 0x16, 0xb8, 0x74, 0x1d, 0xe6, 0xf5, 0xac, 0x26, 0x4f, 0xaa, 0xae, 0x2b,
0x30, 0x8c, 0xc2, 0x50, 0xac, 0x5f, 0x84, 0xe9, 0x1b, 0x30, 0xdb, 0x73, 0xa6, 0xa9, 0x82, 0x98,
0xd3, 0x41, 0x1c, 0x04, 0x87, 0x09, 0xcc, 0xbf, 0x2a, 0x81, 0x85, 0x74, 0x02, 0x55, 0xde, 0xa6,
0xfb, 0x7a, 0xcd, 0xbc, 0x7d, 0x04, 0x37, 0x86, 0xf4, 0xc6, 0x69, 0x5b, 0x01, 0x88, 0xed, 0x7d,
0x20, 0xfc, 0x2e, 0x89, 0x7d, 0x44, 0x29, 0x3e, 0xf4, 0x7c, 0xdf, 0x63, 0xc7, 0x7b, 0xdb, 0x31,
0x7d, 0x7d, 0xc0, 0xfa, 0xc5, 0x80, 0x5b, 0x3b, 0x1e, 0x73, 0x7c, 0xef, 0x07, 0xfc, 0x7f, 0x43,
0x94, 0x46, 0x63, 0x6e, 0x04, 0x8d, 0x15, 0x58, 0x49, 0x37, 0x2a, 0xf2, 0xd9, 0x7a, 0x0c, 0xb7,
0xc7, 0x18, 0x7d, 0x4d, 0xae, 0x37, 0x61, 0xed, 0x42, 0x89, 0x38, 0xe0, 0x42, 0x3a, 0xfe, 0x7d,
0x8f, 0x3d, 0xb9, 0x22, 0x2d, 0xd6, 0xb7, 0xf0, 0xd6, 0x65, 0x3a, 0xae, 0x69, 0x65, 0x15, 0x6e,
0x8f, 0x39, 0x21, 0xce, 0x8d, 0x15, 0x28, 0x06, 0x1a, 0xed, 0xa7, 0x46, 0x1f, 0xb0, 0x7e, 0x32,
0xe0, 0xd6, 0x2e, 0xca, 0x87, 0x28, 0xbc, 0x23, 0xaf, 0xe5, 0x28, 0x1d, 0xfa, 0xa2, 0x5f, 0x35,
0xf6, 0x25, 0x28, 0xa0, 0xae, 0x14, 0x51, 0xc4, 0xa3, 0xc9, 0xe8, 0x2a, 0x91, 0x1b, 0x57, 0x25,
0x2a, 0xba, 0xe0, 0xa7, 0x98, 0xd2, 0x8f, 0xf8, 0x18, 0x53, 0xaf, 0xc9, 0xa5, 0x00, 0xaa, 0x35,
0x77, 0xfe, 0x93, 0xfb, 0x57, 0x4f, 0x7d, 0x0a, 0xf9, 0x16, 0x77, 0xbb, 0xe9, 0xae, 0xc7, 0xd6,
0x1d, 0x58, 0x1c, 0x38, 0x33, 0x8e, 0x98, 0x09, 0x93, 0x61, 0xbb, 0xd5, 0x52, 0xca, 0x0c, 0xcd,
0x57, 0x77, 0x6a, 0xd5, 0xc1, 0x1c, 0x36, 0xf2, 0x9a, 0x8e, 0x1f, 0x01, 0xdd, 0x0b, 0xd5, 0x8d,
0x7b, 0xe8, 0xf8, 0x9e, 0xdb, 0x75, 0x7c, 0xa8, 0x98, 0x1a, 0x69, 0xc5, 0x34, 0xed, 0x3e, 0x67,
0x47, 0xdc, 0xe7, 0x3f, 0x0d, 0x58, 0x1c, 0x38, 0x28, 0xf6, 0xf6, 0xdd, 0x98, 0x18, 0x43, 0xd7,
0xe1, 0x9b, 0x76, 0xca, 0x1e, 0x7b, 0x8b, 0xbb, 0x18, 0x71, 0xa6, 0x1f, 0x58, 0xec, 0xe5, 0x7b,
0x7c, 0x5a, 0x12, 0xb2, 0x3a, 0x90, 0x57, 0xfb, 0x69, 0x11, 0x0a, 0x5a, 0x0b, 0xc9, 0xd0, 0x19,
0x98, 0xda, 0xe7, 0xdb, 0x5c, 0x56, 0x59, 0x87, 0x18, 0x6a, 0xd6, 0xe4, 0xbc, 0x71, 0xc2, 0x85,
0x24, 0x59, 0x3a, 0x0d, 0x93, 0x4d, 0xce, 0xef, 0x73, 0x76, 0x4c, 0x72, 0x74, 0x11, 0xe6, 0x3f,
0x75, 0xc2, 0x3d, 0x76, 0xa6, 0x04, 0xb7, 0x4e, 0x1c, 0x11, 0x92, 0x3c, 0x5d, 0x82, 0x05, 0xe5,
0xed, 0x0e, 0x6a, 0xc2, 0xf6, 0xb9, 0xb2, 0x8f, 0x14, 0xe8, 0x02, 0xcc, 0x6e, 0x39, 0x6c, 0x9f,
0xcb, 0x3a, 0xaa, 0xc6, 0x07, 0xc9, 0x84, 0x75, 0x06, 0x2b, 0x51, 0x7c, 0xaa, 0x41, 0xd0, 0x90,
0x5c, 0x60, 0x1d, 0x5b, 0xe8, 0x05, 0xf2, 0xaa, 0xe9, 0x34, 0xb6, 0x4e, 0xab, 0x08, 0x8b, 0x48,
0x5f, 0x9c, 0x45, 0xdd, 0xa9, 0xf5, 0x15, 0x58, 0xe3, 0xce, 0xbd, 0x66, 0x86, 0xbc, 0x06, 0xab,
0x23, 0xb4, 0x47, 0xe1, 0xd9, 0xf8, 0xcd, 0x00, 0x92, 0xac, 0x42, 0x3a, 0x37, 0xe6, 0x61, 0x5a,
0xfd, 0x3e, 0x60, 0x4f, 0x18, 0x3f, 0x67, 0x24, 0x43, 0x09, 0xcc, 0x28, 0xa0, 0xf6, 0x34, 0xf0,
0xb9, 0x40, 0x41, 0x0c, 0x6a, 0x42, 0x49, 0x21, 0x9b, 0x6d, 0xcf, 0x77, 0x51, 0xbc, 0xf7, 0x08,
0xf1, 0x49, 0xb3, 0xd6, 0x68, 0x92, 0x2c, 0x2d, 0xc3, 0xb2, 0x5a, 0xd9, 0xe2, 0x5b, 0x02, 0x1d,
0xc9, 0x13, 0x6b, 0x39, 0x5a, 0x02, 0x92, 0x94, 0xfa, 0x02, 0x1d, 0x41, 0xf2, 0x74, 0x19, 0xe8,
0xa0, 0x84, 0xc6, 0x0b, 0x2a, 0xa2, 0x89, 0xdd, 0x07, 0x7e, 0x3b, 0x24, 0x13, 0x5d, 0xb0, 0xca,
0x3a, 0xb2, 0x13, 0x60, 0x13, 0x9d, 0x53, 0x32, 0xb9, 0x11, 0x02, 0x1d, 0x6e, 0xec, 0x54, 0x94,
0xa3, 0x51, 0xdf, 0x91, 0x1e, 0x74, 0x80, 0xcc, 0xf5, 0xd8, 0x31, 0x31, 0x94, 0x6f, 0x11, 0x54,
0x6d, 0x49, 0xef, 0x0c, 0x49, 0x96, 0xbe, 0x09, 0xb7, 0x07, 0x36, 0xa9, 0x50, 0x78, 0x02, 0xc3,
0xf8, 0xcd, 0xd2, 0xe5, 0x8b, 0xe4, 0x36, 0x7e, 0x35, 0x60, 0x76, 0xa0, 0xf3, 0xa0, 0x73, 0x00,
0xd1, 0x68, 0xcb, 0x11, 0x6e, 0x44, 0x5b, 0x3c, 0x17, 0x9d, 0x40, 0x72, 0x62, 0x50, 0x0a, 0x73,
0x11, 0x52, 0x0d, 0x02, 0x1f, 0x0f, 0x9c, 0x0e, 0xc9, 0x2a, 0x8f, 0x22, 0x6c, 0x97, 0xf3, 0xe3,
0x08, 0xd4, 0x4c, 0x25, 0x36, 0xee, 0x31, 0x27, 0x08, 0xa2, 0x74, 0x4e, 0x6e, 0x8d, 0xe0, 0x42,
0xff, 0xdc, 0x7d, 0xce, 0x90, 0x4c, 0x6c, 0xfc, 0x98, 0x03, 0xa8, 0x09, 0xc1, 0x85, 0xba, 0x4c,
0xa1, 0x5a, 0x7e, 0xc0, 0xf0, 0x69, 0x80, 0x2d, 0x89, 0xca, 0xac, 0x45, 0x98, 0xef, 0x57, 0xb7,
0xda, 0x69, 0x20, 0xd5, 0xcd, 0x2a, 0x01, 0x89, 0xef, 0x4e, 0xa3, 0x9b, 0x3d, 0x24, 0x4b, 0x67,
0xa1, 0xa8, 0xd8, 0x7e, 0x24, 0xa2, 0x3b, 0x16, 0xe7, 0xc1, 0x3e, 0x97, 0x3b, 0xbc, 0xcd, 0x5c,
0x92, 0xef, 0x22, 0x7b, 0xcc, 0x89, 0xd8, 0x2b, 0xa8, 0x68, 0x0e, 0xb0, 0x12, 0xc9, 0x4e, 0x28,
0x2b, 0x36, 0x9d, 0x6e, 0x49, 0x21, 0x93, 0xea, 0xf2, 0x76, 0xe3, 0x32, 0xa5, 0x1c, 0x53, 0x01,
0xac, 0xfa, 0x02, 0x1d, 0xb7, 0x13, 0x47, 0xa2, 0xa8, 0x63, 0xd3, 0x3e, 0x0c, 0x7b, 0xe7, 0x81,
0x22, 0x50, 0x21, 0x5a, 0xa9, 0x0a, 0x12, 0x92, 0x69, 0x65, 0xba, 0x2e, 0xaa, 0x1a, 0xdc, 0xe1,
0xe2, 0xd4, 0x91, 0x64, 0x46, 0x65, 0xa8, 0x46, 0x63, 0x9d, 0xd1, 0xdb, 0x83, 0x2e, 0x99, 0xed,
0xed, 0x8f, 0x57, 0x1a, 0xc8, 0x24, 0x99, 0x53, 0x26, 0x68, 0x74, 0xc7, 0xf1, 0x7c, 0x74, 0x9b,
0xbc, 0x81, 0xcc, 0x25, 0xf3, 0xca, 0x04, 0x0d, 0xd7, 0x9e, 0x06, 0x9e, 0x40, 0x97, 0x10, 0x65,
0x42, 0xff, 0x38, 0xc5, 0x30, 0x59, 0xa0, 0x04, 0xa6, 0x35, 0xe1, 0x9f, 0x1f, 0x1d, 0x85, 0x28,
0xc9, 0xf3, 0xfc, 0xdd, 0x7f, 0x0a, 0x50, 0xaa, 0xb2, 0x4e, 0x4c, 0xc5, 0x81, 0xe0, 0xea, 0x15,
0xf0, 0xd8, 0x31, 0xad, 0xc3, 0xd2, 0x85, 0x97, 0x3f, 0x4e, 0xd7, 0x55, 0x7b, 0xdc, 0x37, 0x53,
0xd9, 0xb4, 0x47, 0x7c, 0xf9, 0x58, 0x19, 0xfa, 0x21, 0x4c, 0x27, 0x6a, 0x2f, 0x5d, 0xb4, 0x87,
0x9f, 0x85, 0x72, 0x29, 0xad, 0x3c, 0x5b, 0x19, 0x7a, 0x1f, 0xe6, 0x2f, 0xf4, 0xa6, 0x74, 0xd5,
0x1e, 0xd7, 0x05, 0x97, 0x4d, 0x7b, 0x44, 0x33, 0x6b, 0x65, 0xe8, 0x63, 0x28, 0xa5, 0xb5, 0x76,
0xd4, 0xb2, 0x2f, 0xed, 0xf8, 0xca, 0xab, 0xf6, 0xd8, 0xae, 0x31, 0x43, 0xbf, 0x83, 0x9b, 0x23,
0x9b, 0x26, 0xfa, 0xb6, 0x7d, 0xb5, 0x96, 0xad, 0x6c, 0xd9, 0x97, 0x76, 0x5e, 0x91, 0x23, 0x69,
0x1d, 0x0b, 0xd5, 0xd2, 0xe3, 0x1b, 0x99, 0xf2, 0xaa, 0x3d, 0xb6, 0x19, 0xca, 0xd0, 0x4f, 0x60,
0x3a, 0xd1, 0x0c, 0xd0, 0x9b, 0xf6, 0xa8, 0xd6, 0xa0, 0x5c, 0xb2, 0x53, 0xda, 0x8c, 0x28, 0xe2,
0xbb, 0x28, 0xab, 0xbe, 0xaf, 0x6e, 0x5f, 0x48, 0x97, 0xd5, 0x89, 0x7a, 0x38, 0x28, 0xbe, 0x90,
0xc0, 0x7b, 0xb2, 0x5f, 0xc3, 0x52, 0xea, 0xa3, 0x40, 0x5f, 0xb7, 0x2f, 0x7f, 0x8a, 0xca, 0x15,
0x7b, 0xec, 0x8b, 0x62, 0x65, 0x36, 0x3f, 0xfa, 0xfd, 0x45, 0xc5, 0x78, 0xf6, 0xa2, 0x62, 0xfc,
0xf1, 0xa2, 0x62, 0xfc, 0xfc, 0xb2, 0x92, 0x79, 0xf6, 0xb2, 0x92, 0x79, 0xfe, 0xb2, 0x92, 0xf9,
0xd2, 0xba, 0xfc, 0xff, 0x12, 0x87, 0x13, 0xfa, 0xe7, 0xfd, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff,
0x04, 0x97, 0xd5, 0x74, 0x04, 0x11, 0x00, 0x00,
}
func (m *GetSubscriptionRequest) Marshal() (dAtA []byte, err error) {
@ -2527,7 +2527,7 @@ func (m *VerifyAppStoreReceiptRequestSigned) MarshalToSizedBuffer(dAtA []byte) (
return len(dAtA) - i, nil
}
func (m *VerifyAppStoreReceiptRequestResponse) Marshal() (dAtA []byte, err error) {
func (m *VerifyAppStoreReceiptResponse) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
@ -2537,12 +2537,12 @@ func (m *VerifyAppStoreReceiptRequestResponse) Marshal() (dAtA []byte, err error
return dAtA[:n], nil
}
func (m *VerifyAppStoreReceiptRequestResponse) MarshalTo(dAtA []byte) (int, error) {
func (m *VerifyAppStoreReceiptResponse) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *VerifyAppStoreReceiptRequestResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
func (m *VerifyAppStoreReceiptResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
@ -2946,7 +2946,7 @@ func (m *VerifyAppStoreReceiptRequestSigned) Size() (n int) {
return n
}
func (m *VerifyAppStoreReceiptRequestResponse) Size() (n int) {
func (m *VerifyAppStoreReceiptResponse) Size() (n int) {
if m == nil {
return 0
}
@ -5524,7 +5524,7 @@ func (m *VerifyAppStoreReceiptRequestSigned) Unmarshal(dAtA []byte) error {
}
return nil
}
func (m *VerifyAppStoreReceiptRequestResponse) Unmarshal(dAtA []byte) error {
func (m *VerifyAppStoreReceiptResponse) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
@ -5547,10 +5547,10 @@ func (m *VerifyAppStoreReceiptRequestResponse) Unmarshal(dAtA []byte) error {
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: VerifyAppStoreReceiptRequestResponse: wiretype end group for non-group")
return fmt.Errorf("proto: VerifyAppStoreReceiptResponse: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: VerifyAppStoreReceiptRequestResponse: illegal tag %d (wire type %d)", fieldNum, wire)
return fmt.Errorf("proto: VerifyAppStoreReceiptResponse: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
default:

View file

@ -48,7 +48,7 @@ type DRPCAnyPaymentProcessingClient interface {
GetVerificationEmail(ctx context.Context, in *GetVerificationEmailRequestSigned) (*GetVerificationEmailResponse, error)
VerifyEmail(ctx context.Context, in *VerifyEmailRequestSigned) (*VerifyEmailResponse, error)
GetAllTiers(ctx context.Context, in *GetTiersRequestSigned) (*GetTiersResponse, error)
VerifyAppStoreReceipt(ctx context.Context, in *VerifyAppStoreReceiptRequestSigned) (*VerifyAppStoreReceiptRequestResponse, error)
VerifyAppStoreReceipt(ctx context.Context, in *VerifyAppStoreReceiptRequestSigned) (*VerifyAppStoreReceiptResponse, error)
}
type drpcAnyPaymentProcessingClient struct {
@ -133,8 +133,8 @@ func (c *drpcAnyPaymentProcessingClient) GetAllTiers(ctx context.Context, in *Ge
return out, nil
}
func (c *drpcAnyPaymentProcessingClient) VerifyAppStoreReceipt(ctx context.Context, in *VerifyAppStoreReceiptRequestSigned) (*VerifyAppStoreReceiptRequestResponse, error) {
out := new(VerifyAppStoreReceiptRequestResponse)
func (c *drpcAnyPaymentProcessingClient) VerifyAppStoreReceipt(ctx context.Context, in *VerifyAppStoreReceiptRequestSigned) (*VerifyAppStoreReceiptResponse, error) {
out := new(VerifyAppStoreReceiptResponse)
err := c.cc.Invoke(ctx, "/AnyPaymentProcessing/VerifyAppStoreReceipt", drpcEncoding_File_paymentservice_paymentserviceproto_protos_paymentservice_proto{}, in, out)
if err != nil {
return nil, err
@ -151,7 +151,7 @@ type DRPCAnyPaymentProcessingServer interface {
GetVerificationEmail(context.Context, *GetVerificationEmailRequestSigned) (*GetVerificationEmailResponse, error)
VerifyEmail(context.Context, *VerifyEmailRequestSigned) (*VerifyEmailResponse, error)
GetAllTiers(context.Context, *GetTiersRequestSigned) (*GetTiersResponse, error)
VerifyAppStoreReceipt(context.Context, *VerifyAppStoreReceiptRequestSigned) (*VerifyAppStoreReceiptRequestResponse, error)
VerifyAppStoreReceipt(context.Context, *VerifyAppStoreReceiptRequestSigned) (*VerifyAppStoreReceiptResponse, error)
}
type DRPCAnyPaymentProcessingUnimplementedServer struct{}
@ -188,7 +188,7 @@ func (s *DRPCAnyPaymentProcessingUnimplementedServer) GetAllTiers(context.Contex
return nil, drpcerr.WithCode(errors.New("Unimplemented"), drpcerr.Unimplemented)
}
func (s *DRPCAnyPaymentProcessingUnimplementedServer) VerifyAppStoreReceipt(context.Context, *VerifyAppStoreReceiptRequestSigned) (*VerifyAppStoreReceiptRequestResponse, error) {
func (s *DRPCAnyPaymentProcessingUnimplementedServer) VerifyAppStoreReceipt(context.Context, *VerifyAppStoreReceiptRequestSigned) (*VerifyAppStoreReceiptResponse, error) {
return nil, drpcerr.WithCode(errors.New("Unimplemented"), drpcerr.Unimplemented)
}
@ -418,14 +418,14 @@ func (x *drpcAnyPaymentProcessing_GetAllTiersStream) SendAndClose(m *GetTiersRes
type DRPCAnyPaymentProcessing_VerifyAppStoreReceiptStream interface {
drpc.Stream
SendAndClose(*VerifyAppStoreReceiptRequestResponse) error
SendAndClose(*VerifyAppStoreReceiptResponse) error
}
type drpcAnyPaymentProcessing_VerifyAppStoreReceiptStream struct {
drpc.Stream
}
func (x *drpcAnyPaymentProcessing_VerifyAppStoreReceiptStream) SendAndClose(m *VerifyAppStoreReceiptRequestResponse) error {
func (x *drpcAnyPaymentProcessing_VerifyAppStoreReceiptStream) SendAndClose(m *VerifyAppStoreReceiptResponse) error {
if err := x.MsgSend(m, drpcEncoding_File_paymentservice_paymentserviceproto_protos_paymentservice_proto{}); err != nil {
return err
}

View file

@ -229,7 +229,7 @@ message VerifyAppStoreReceiptRequestSigned {
bytes signature = 2;
}
message VerifyAppStoreReceiptRequestResponse {
message VerifyAppStoreReceiptResponse {
}
@ -301,5 +301,5 @@ service AnyPaymentProcessing {
// Verify purchase in case subscription was bought via AppStore
// Incoming receipt contains all information to register purchase on Payment Node
rpc VerifyAppStoreReceipt(VerifyAppStoreReceiptRequestSigned) returns (VerifyAppStoreReceiptRequestResponse) {}
rpc VerifyAppStoreReceipt(VerifyAppStoreReceiptRequestSigned) returns (VerifyAppStoreReceiptResponse) {}
}