Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
dholms committed Jan 31, 2024
1 parent a8959b3 commit eb4cfb9
Show file tree
Hide file tree
Showing 3 changed files with 303 additions and 161 deletions.
2 changes: 1 addition & 1 deletion packages/pds/buf.gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ plugins:
opt:
- target=ts
- import_extension=.ts
out: src/proto
out: src/proto
24 changes: 15 additions & 9 deletions packages/pds/src/proto/courier_connect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,27 @@
/* eslint-disable */
// @ts-nocheck

import { PingRequest, PingResponse, PushNotificationsRequest, PushNotificationsResponse, RegisterDeviceTokenRequest, RegisterDeviceTokenResponse } from "./courier_pb.ts";
import { MethodKind } from "@bufbuild/protobuf";
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",
typeName: 'courier.Service',
methods: {
/**
* @generated from rpc courier.Service.Ping
*/
ping: {
name: "Ping",
name: 'Ping',
I: PingRequest,
O: PingResponse,
kind: MethodKind.Unary,
Expand All @@ -25,7 +32,7 @@ export const Service = {
* @generated from rpc courier.Service.PushNotifications
*/
pushNotifications: {
name: "PushNotifications",
name: 'PushNotifications',
I: PushNotificationsRequest,
O: PushNotificationsResponse,
kind: MethodKind.Unary,
Expand All @@ -34,11 +41,10 @@ export const Service = {
* @generated from rpc courier.Service.RegisterDeviceToken
*/
registerDeviceToken: {
name: "RegisterDeviceToken",
name: 'RegisterDeviceToken',
I: RegisterDeviceTokenRequest,
O: RegisterDeviceTokenResponse,
kind: MethodKind.Unary,
},
}
} as const;

},
} as const
Loading

0 comments on commit eb4cfb9

Please sign in to comment.