-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from xmtp/np/update-buf-builder
Update buf generation for kotlin and swift
- Loading branch information
Showing
54 changed files
with
9,341 additions
and
564 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
// @generated by protoc-gen-connect-es v1.4.0 | ||
// @generated from file notifications/v1/service.proto (package notifications.v1, syntax proto3) | ||
/* eslint-disable */ | ||
// @ts-nocheck | ||
|
||
import { DeleteInstallationRequest, RegisterInstallationRequest, RegisterInstallationResponse, SubscribeRequest, SubscribeWithMetadataRequest, UnsubscribeRequest } from "./service_pb.js"; | ||
import { Empty, MethodKind } from "@bufbuild/protobuf"; | ||
|
||
/** | ||
* @generated from service notifications.v1.Notifications | ||
*/ | ||
export declare const Notifications: { | ||
readonly typeName: "notifications.v1.Notifications", | ||
readonly methods: { | ||
/** | ||
* @generated from rpc notifications.v1.Notifications.RegisterInstallation | ||
*/ | ||
readonly registerInstallation: { | ||
readonly name: "RegisterInstallation", | ||
readonly I: typeof RegisterInstallationRequest, | ||
readonly O: typeof RegisterInstallationResponse, | ||
readonly kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* @generated from rpc notifications.v1.Notifications.DeleteInstallation | ||
*/ | ||
readonly deleteInstallation: { | ||
readonly name: "DeleteInstallation", | ||
readonly I: typeof DeleteInstallationRequest, | ||
readonly O: typeof Empty, | ||
readonly kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* @generated from rpc notifications.v1.Notifications.Subscribe | ||
*/ | ||
readonly subscribe: { | ||
readonly name: "Subscribe", | ||
readonly I: typeof SubscribeRequest, | ||
readonly O: typeof Empty, | ||
readonly kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* @generated from rpc notifications.v1.Notifications.SubscribeWithMetadata | ||
*/ | ||
readonly subscribeWithMetadata: { | ||
readonly name: "SubscribeWithMetadata", | ||
readonly I: typeof SubscribeWithMetadataRequest, | ||
readonly O: typeof Empty, | ||
readonly kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* @generated from rpc notifications.v1.Notifications.Unsubscribe | ||
*/ | ||
readonly unsubscribe: { | ||
readonly name: "Unsubscribe", | ||
readonly I: typeof UnsubscribeRequest, | ||
readonly O: typeof Empty, | ||
readonly kind: MethodKind.Unary, | ||
}, | ||
} | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
// @generated by protoc-gen-connect-es v1.4.0 | ||
// @generated from file notifications/v1/service.proto (package notifications.v1, syntax proto3) | ||
/* eslint-disable */ | ||
// @ts-nocheck | ||
|
||
import { DeleteInstallationRequest, RegisterInstallationRequest, RegisterInstallationResponse, SubscribeRequest, SubscribeWithMetadataRequest, UnsubscribeRequest } from "./service_pb.js"; | ||
import { Empty, MethodKind } from "@bufbuild/protobuf"; | ||
|
||
/** | ||
* @generated from service notifications.v1.Notifications | ||
*/ | ||
export const Notifications = { | ||
typeName: "notifications.v1.Notifications", | ||
methods: { | ||
/** | ||
* @generated from rpc notifications.v1.Notifications.RegisterInstallation | ||
*/ | ||
registerInstallation: { | ||
name: "RegisterInstallation", | ||
I: RegisterInstallationRequest, | ||
O: RegisterInstallationResponse, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* @generated from rpc notifications.v1.Notifications.DeleteInstallation | ||
*/ | ||
deleteInstallation: { | ||
name: "DeleteInstallation", | ||
I: DeleteInstallationRequest, | ||
O: Empty, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* @generated from rpc notifications.v1.Notifications.Subscribe | ||
*/ | ||
subscribe: { | ||
name: "Subscribe", | ||
I: SubscribeRequest, | ||
O: Empty, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* @generated from rpc notifications.v1.Notifications.SubscribeWithMetadata | ||
*/ | ||
subscribeWithMetadata: { | ||
name: "SubscribeWithMetadata", | ||
I: SubscribeWithMetadataRequest, | ||
O: Empty, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* @generated from rpc notifications.v1.Notifications.Unsubscribe | ||
*/ | ||
unsubscribe: { | ||
name: "Unsubscribe", | ||
I: UnsubscribeRequest, | ||
O: Empty, | ||
kind: MethodKind.Unary, | ||
}, | ||
} | ||
}; | ||
|
Oops, something went wrong.