@@ -36,6 +36,8 @@ import { ObjectSerializer } from "../internal/objectSerializer";
3636import { Encryptor } from '../api';
3737import * as importedApiError from './apiError';
3838import * as importedAvailableFontsResponse from './availableFontsResponse';
39+ import * as importedBaseEntry from './baseEntry';
40+ import * as importedBaseEntryList from './baseEntryList';
3941import * as importedBmpSaveOptionsData from './bmpSaveOptionsData';
4042import * as importedBookmark from './bookmark';
4143import * as importedBookmarkData from './bookmarkData';
@@ -149,6 +151,8 @@ import * as importedHyperlink from './hyperlink';
149151import * as importedHyperlinkResponse from './hyperlinkResponse';
150152import * as importedHyperlinks from './hyperlinks';
151153import * as importedHyperlinksResponse from './hyperlinksResponse';
154+ import * as importedImageEntry from './imageEntry';
155+ import * as importedImageEntryList from './imageEntryList';
152156import * as importedImageSaveOptionsData from './imageSaveOptionsData';
153157import * as importedInfoAdditionalItem from './infoAdditionalItem';
154158import * as importedInfoResponse from './infoResponse';
@@ -303,6 +307,8 @@ import * as importedXpsSaveOptionsData from './xpsSaveOptionsData';
303307export { AttributeInfo } from '../internal/attributeInfo';
304308export * from './apiError';
305309export * from './availableFontsResponse';
310+ export * from './baseEntry';
311+ export * from './baseEntryList';
306312export * from './bmpSaveOptionsData';
307313export * from './bookmark';
308314export * from './bookmarkData';
@@ -416,6 +422,8 @@ export * from './hyperlink';
416422export * from './hyperlinkResponse';
417423export * from './hyperlinks';
418424export * from './hyperlinksResponse';
425+ export * from './imageEntry';
426+ export * from './imageEntryList';
419427export * from './imageSaveOptionsData';
420428export * from './infoAdditionalItem';
421429export * from './infoResponse';
@@ -692,6 +700,8 @@ const enumsMap = {
692700const typeMap = {
693701 ApiError: importedApiError.ApiError,
694702 AvailableFontsResponse: importedAvailableFontsResponse.AvailableFontsResponse,
703+ BaseEntry: importedBaseEntry.BaseEntry,
704+ BaseEntryList: importedBaseEntryList.BaseEntryList,
695705 BmpSaveOptionsData: importedBmpSaveOptionsData.BmpSaveOptionsData,
696706 Bookmark: importedBookmark.Bookmark,
697707 BookmarkData: importedBookmarkData.BookmarkData,
@@ -805,6 +815,8 @@ const typeMap = {
805815 HyperlinkResponse: importedHyperlinkResponse.HyperlinkResponse,
806816 Hyperlinks: importedHyperlinks.Hyperlinks,
807817 HyperlinksResponse: importedHyperlinksResponse.HyperlinksResponse,
818+ ImageEntry: importedImageEntry.ImageEntry,
819+ ImageEntryList: importedImageEntryList.ImageEntryList,
808820 ImageSaveOptionsData: importedImageSaveOptionsData.ImageSaveOptionsData,
809821 InfoAdditionalItem: importedInfoAdditionalItem.InfoAdditionalItem,
810822 InfoResponse: importedInfoResponse.InfoResponse,
@@ -1184,9 +1196,9 @@ export class AppendDocumentRequest implements RequestInterface {
11841196 public name: string;
11851197
11861198 /**
1187- * <see cref="DocumentEntryList "/> with a list of documents to append.
1199+ * <see cref="BaseEntryList "/> with a list of entries to append.
11881200 */
1189- public documentList: importedDocumentEntryList.DocumentEntryList ;
1201+ public documentList: importedBaseEntryList.BaseEntryList ;
11901202
11911203 /**
11921204 * Original document folder.
@@ -1272,7 +1284,7 @@ export class AppendDocumentRequest implements RequestInterface {
12721284 qs: queryParameters,
12731285 uri: localVarPath,
12741286 json: true,
1275- body: ObjectSerializer.serialize(this.documentList, this.documentList.constructor.name === "Object" ? "importedDocumentEntryList.DocumentEntryList " : this.documentList.constructor.name),
1287+ body: ObjectSerializer.serialize(this.documentList, this.documentList.constructor.name === "Object" ? "importedBaseEntryList.BaseEntryList " : this.documentList.constructor.name),
12761288 };
12771289
12781290
@@ -1303,9 +1315,9 @@ export class AppendDocumentOnlineRequest implements RequestInterface {
13031315 public document: Readable;
13041316
13051317 /**
1306- * <see cref="DocumentEntryList "/> with a list of documents to append.
1318+ * <see cref="BaseEntryList "/> with a list of entries to append.
13071319 */
1308- public documentList: importedDocumentEntryList.DocumentEntryList ;
1320+ public documentList: importedBaseEntryList.BaseEntryList ;
13091321
13101322 /**
13111323 * Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
0 commit comments