-
Notifications
You must be signed in to change notification settings - Fork 642
/
Copy pathcourier_connect.ts
50 lines (48 loc) · 1.21 KB
/
courier_connect.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// @generated by protoc-gen-connect-es v1.3.0 with parameter "target=ts,import_extension=.ts"
// @generated from file courier.proto (package courier, syntax proto3)
/* eslint-disable */
// @ts-nocheck
import {
PingRequest,
PingResponse,
PushNotificationsRequest,
PushNotificationsResponse,
RegisterDeviceTokenRequest,
RegisterDeviceTokenResponse,
} from './courier_pb.ts'
import { MethodKind } from '@bufbuild/protobuf'
/**
* @generated from service courier.Service
*/
export const Service = {
typeName: 'courier.Service',
methods: {
/**
* @generated from rpc courier.Service.Ping
*/
ping: {
name: 'Ping',
I: PingRequest,
O: PingResponse,
kind: MethodKind.Unary,
},
/**
* @generated from rpc courier.Service.PushNotifications
*/
pushNotifications: {
name: 'PushNotifications',
I: PushNotificationsRequest,
O: PushNotificationsResponse,
kind: MethodKind.Unary,
},
/**
* @generated from rpc courier.Service.RegisterDeviceToken
*/
registerDeviceToken: {
name: 'RegisterDeviceToken',
I: RegisterDeviceTokenRequest,
O: RegisterDeviceTokenResponse,
kind: MethodKind.Unary,
},
},
} as const