export type GetOAuthCredentialsRequest = undefined; export type OAuthCredentialsResponse = Record; export type OAuthCredentials = Record; export type CreateOAuthCredentialParams = { propName: string; credentialValue: string; }; export type CreateOAuthCredentialRequest = { prop_name: string; credential_value: string; }; export type DeleteOAuthCredentialRequest = undefined; export type DeleteOAuthCredentialResponse = Record;