enonic-types
Advanced tools
Comparing version 0.0.2 to 0.0.3
@@ -10,6 +10,6 @@ export interface ContextLibrary { | ||
} | ||
interface AuthInfo { | ||
export interface AuthInfo { | ||
readonly user: User; | ||
} | ||
interface User { | ||
export interface User { | ||
readonly type: string; | ||
@@ -23,3 +23,3 @@ readonly key: string; | ||
} | ||
interface RunContext { | ||
export interface RunContext { | ||
readonly repository?: string; | ||
@@ -36,2 +36,1 @@ readonly branch?: string; | ||
} | ||
export {}; |
@@ -5,3 +5,3 @@ export interface HttpLibrary { | ||
import { ByteSource } from "./content"; | ||
interface HttpRequestParamsProxy { | ||
export interface HttpRequestParamsProxy { | ||
/** Proxy host name to use. */ | ||
@@ -16,3 +16,3 @@ readonly host?: string; | ||
} | ||
interface HttpRequestParamsAuth { | ||
export interface HttpRequestParamsAuth { | ||
/** User name for basic authentication. */ | ||
@@ -76,2 +76,1 @@ readonly user?: string; | ||
} | ||
export {}; |
{ | ||
"name": "enonic-types", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "TypeScript types for Enonic XP", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
28955
846