( endpoint = util.authzedEndpoint, creds: grpc.ChannelCredentials, preconnect: PreconnectServices = PreconnectServices.PERMISSIONS_SERVICE, options?: grpc.ClientOptions, )
| 351 | * @returns Client for calling Authzed APIs. |
| 352 | */ |
| 353 | export function NewClientWithChannelCredentials( |
| 354 | endpoint = util.authzedEndpoint, |
| 355 | creds: grpc.ChannelCredentials, |
| 356 | preconnect: PreconnectServices = PreconnectServices.PERMISSIONS_SERVICE, |
| 357 | options?: grpc.ClientOptions, |
| 358 | ): ZedClientInterface { |
| 359 | return ZedCombinedClient.create(endpoint, creds, preconnect, options); |
| 360 | } |
| 361 | /** |
| 362 | * Creates a google.protobuf.Struct object suitable for use as |
| 363 | * optionalTransactionMetadata in WriteRelationshipsRequest. |
no test coverage detected