@eka-care/ekascribe-ts-sdk 1.4.7 → 1.4.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -243,7 +243,6 @@ export interface TTemplate {
|
|
|
243
243
|
title: string;
|
|
244
244
|
desc: string;
|
|
245
245
|
section_ids: string[];
|
|
246
|
-
sections: TSection[];
|
|
247
246
|
is_editable: boolean;
|
|
248
247
|
}
|
|
249
248
|
export interface TGetV1TemplatesResponse {
|
|
@@ -278,12 +277,11 @@ export interface TSection {
|
|
|
278
277
|
desc: string;
|
|
279
278
|
format: 'P' | 'B';
|
|
280
279
|
example: string;
|
|
281
|
-
|
|
280
|
+
default: boolean;
|
|
282
281
|
parent_section_id?: string;
|
|
283
282
|
}
|
|
284
283
|
export interface TGetV1TemplateSectionsResponse {
|
|
285
|
-
|
|
286
|
-
custom_sections: TSection[];
|
|
284
|
+
items: TSection[];
|
|
287
285
|
code: number;
|
|
288
286
|
error?: {
|
|
289
287
|
code: string;
|