Files
npm-core-sdk/idp_connect.ts
2025-03-17 09:56:44 +00:00

63 lines
1.5 KiB
TypeScript

// @generated by protoc-gen-connect-es v0.13.0 with parameter "target=ts"
// @generated from file idp.proto (package api, syntax proto3)
/* eslint-disable */
// @ts-nocheck
import { CreateIDPRequest, CreateIDPResult, DeleteIDPRequest, DeleteIDPResult, GetIDPRequest, GetIDPResult, ListIDPRequest, ListIDPResult, UpdateIDPRequest, UpdateIDPResult } from "./idp_pb.js";
import { MethodKind } from "@bufbuild/protobuf";
/**
* @generated from service api.IDPService
*/
export const IDPService = {
typeName: "api.IDPService",
methods: {
/**
* @generated from rpc api.IDPService.Get
*/
get: {
name: "Get",
I: GetIDPRequest,
O: GetIDPResult,
kind: MethodKind.Unary,
},
/**
* @generated from rpc api.IDPService.Create
*/
create: {
name: "Create",
I: CreateIDPRequest,
O: CreateIDPResult,
kind: MethodKind.Unary,
},
/**
* @generated from rpc api.IDPService.Update
*/
update: {
name: "Update",
I: UpdateIDPRequest,
O: UpdateIDPResult,
kind: MethodKind.Unary,
},
/**
* @generated from rpc api.IDPService.Delete
*/
delete: {
name: "Delete",
I: DeleteIDPRequest,
O: DeleteIDPResult,
kind: MethodKind.Unary,
},
/**
* @generated from rpc api.IDPService.List
*/
list: {
name: "List",
I: ListIDPRequest,
O: ListIDPResult,
kind: MethodKind.Unary,
},
}
} as const;