Comparing version 2.2.8 to 2.2.9
@@ -31,18 +31,25 @@ import { FilteringParameters } from "../client/FilteringParameters"; | ||
} | ||
export interface Template extends UpdateTemplateRequest { | ||
export interface Template { | ||
TemplateType: TemplateTypes; | ||
Name: string; | ||
TemplateId: number; | ||
Alias: string | null; | ||
Subject: string; | ||
HtmlBody: string | null; | ||
TextBody: string | null; | ||
Active: boolean; | ||
AssociatedServerId?: number; | ||
AssociatedServerId: number; | ||
LayoutTemplate: string | null; | ||
} | ||
export interface TemplateInList { | ||
TemplateType: TemplateTypes; | ||
Active: boolean; | ||
TemplateId: number; | ||
Name: string; | ||
Alias: string | null; | ||
LayoutTemplate: string | null; | ||
} | ||
export interface Templates { | ||
TotalCount: number; | ||
Templates: [{ | ||
TemplateType: TemplateTypes; | ||
Active: boolean; | ||
TemplateId: number; | ||
Name: string; | ||
Alias?: string | null; | ||
LayoutTemplate: string | null; | ||
}]; | ||
Templates: TemplateInList[]; | ||
} | ||
@@ -49,0 +56,0 @@ export declare class TemplatesPushRequest { |
@@ -12,3 +12,3 @@ { | ||
], | ||
"version": "2.2.8", | ||
"version": "2.2.9", | ||
"author": "Igor Balos", | ||
@@ -76,3 +76,3 @@ "contributors": [ | ||
"tslint": "^5.12.0", | ||
"typedoc": "^0.14.2", | ||
"typedoc": "^0.15.0", | ||
"typescript": "^2.9.2" | ||
@@ -79,0 +79,0 @@ }, |
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
245591
4308