@creditkarma/vault-client
Advanced tools
Comparing version 0.5.0 to 0.5.1
/// <reference types="request" /> | ||
import { CoreOptions } from 'request'; | ||
export declare type HttpProtocol = 'http' | 'https'; | ||
export interface IServiceConfig { | ||
apiVersion: 'v1'; | ||
protocol: 'http' | 'https'; | ||
protocol: HttpProtocol; | ||
destination: string; | ||
@@ -11,3 +12,3 @@ requestOptions: CoreOptions; | ||
apiVersion: 'v1'; | ||
protocol: 'http' | 'https'; | ||
protocol: HttpProtocol; | ||
destination: string; | ||
@@ -14,0 +15,0 @@ requestOptions: CoreOptions; |
/// <reference types="request" /> | ||
import { CoreOptions } from 'request'; | ||
import { HttpProtocol } from './types'; | ||
import { VaultService } from './VaultService'; | ||
export interface IVaultClientArgs { | ||
apiVersion?: 'v1'; | ||
protocol?: 'http' | 'https'; | ||
protocol?: HttpProtocol; | ||
destination?: string; | ||
@@ -8,0 +9,0 @@ requestOptions?: CoreOptions; |
/// <reference types="request" /> | ||
import { CoreOptions } from 'request'; | ||
import { IInitArgs, IInitResult, IListResult, IReadResult, ISealStatusResult, IStatusResult, IUnsealArgs, IUnsealResult } from './types'; | ||
import { HttpProtocol, IInitArgs, IInitResult, IListResult, IReadResult, ISealStatusResult, IStatusResult, IUnsealArgs, IUnsealResult } from './types'; | ||
export interface IVaultServiceArgs { | ||
destination: string; | ||
protocol?: 'http' | 'https'; | ||
protocol?: HttpProtocol; | ||
apiVersion?: 'v1'; | ||
@@ -8,0 +8,0 @@ requestOptions?: CoreOptions; |
{ | ||
"name": "@creditkarma/vault-client", | ||
"version": "0.5.0", | ||
"version": "0.5.1", | ||
"description": "A client for communicating with Hashicorp Vault written in TypeScript", | ||
@@ -5,0 +5,0 @@ "main": "dist/main/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
40582
412