Socket
Socket
Sign inDemoInstall

asposepdfcloud

Package Overview
Dependencies
Maintainers
0
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

asposepdfcloud - npm Package Compare versions

Comparing version 24.7.0 to 24.8.0

2

package.json
{
"name": "asposepdfcloud",
"version": "24.7.0",
"version": "24.8.0",
"description": "Aspose.PDF Cloud is a REST API for creating and editing PDF files. Most popular features proposed by Aspose.PDF Cloud: PDF to Word, Convert PDF to Image, Merge PDF, Split PDF, Add Images to PDF, Rotate PDF. It can also be used to convert PDF files to different formats like DOC, HTML, XPS, TIFF and many more. Aspose.PDF Cloud gives you control: create PDFs from scratch or from HTML, XML, template, database, XPS or an image. Render PDFs to image formats such as JPEG, PNG, GIF, BMP, TIFF and many others. Aspose.PDF Cloud helps you manipulate elements of a PDF file like text, annotations, watermarks, signatures, bookmarks, stamps and so on. Its REST API also allows you to manage PDF pages by using features like merging, splitting, and inserting. Add images to a PDF file or convert PDF pages to images.",

@@ -5,0 +5,0 @@ "homepage": "https://products.aspose.cloud/pdf/cloud",

@@ -33,9 +33,7 @@ ![](https://img.shields.io/badge/api-v3.0-lightgrey) ![npm](https://img.shields.io/npm/v/asposepdfcloud) ![npm bundle size](https://img.shields.io/bundlephobia/min/asposepdfcloud) ![node-current](https://img.shields.io/node/v/asposepdfcloud) ![npm type definitions](https://img.shields.io/npm/types/asposepdfcloud) [![GitHub license](https://img.shields.io/github/license/aspose-pdf-cloud/aspose-pdf-cloud-node.js)](https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-node/blob/master/LICENSE)

## Enhancements in Version 24.7
## Enhancements in Version 24.8
- Adding Text stamps to multiple pages.
- Adding Image stamps to multiple pages.
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
## Bugs fixed in Version 24.7
- PutPsInStorageToPdf throws: Cannot find resource ???Aspose.PDF.dependencies.ZapfDingbats.ttf.
- Ocr method is not working.
## Installation

@@ -42,0 +40,0 @@

"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());

@@ -12,3 +11,2 @@ });

Object.defineProperty(exports, "__esModule", { value: true });
exports.OAuth = void 0;
const requestHelper_1 = require("./requestHelper");

@@ -48,3 +46,3 @@ class OAuth {

};
const response = yield (0, requestHelper_1.invokeApiMethod)(requestOptions, configuration, true);
const response = yield requestHelper_1.invokeApiMethod(requestOptions, configuration, true);
this.accessToken = response.body.access_token;

@@ -51,0 +49,0 @@ return Promise.resolve();

@@ -85,6 +85,28 @@ /**

const response = await invokeApiMethod(requestOptions, configuration, true);
this.accessToken = response.body.access_token;
try {
const response = await invokeApiMethod(requestOptions, configuration, true);
if (!response.body.access_token || response.body.access_token.trim() == "") {
this._handleResponseError(response)
}
this.accessToken = response.body.access_token;
}
catch(err) {
if (err.response) {
this._handleResponseError(err.response)
} else {
throw err
}
}
return Promise.resolve();
}
private _handleResponseError(response: request.RequestResponse) {
if (typeof response.body == 'string' && response.body.trim() != '') {
throw new Error(response.body)
} else {
throw new Error(`empty token (${JSON.stringify(response.body)})`)
}
}
}
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Configuration = void 0;
const auth_1 = require("./auth");

@@ -5,0 +4,0 @@ class Configuration {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Annotation = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class Annotation extends linkElement_1.LinkElement {

}
exports.Annotation = Annotation;
Annotation.discriminator = undefined;

@@ -70,2 +68,3 @@ Annotation.attributeTypeMap = [

];
exports.Annotation = Annotation;
//# sourceMappingURL=annotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AnnotationFlags = void 0;
var AnnotationFlags;

@@ -5,0 +4,0 @@ (function (AnnotationFlags) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AnnotationInfo = void 0;
const annotation_1 = require("./annotation");

@@ -10,3 +9,2 @@ class AnnotationInfo extends annotation_1.Annotation {

}
exports.AnnotationInfo = AnnotationInfo;
AnnotationInfo.discriminator = undefined;

@@ -20,2 +18,3 @@ AnnotationInfo.attributeTypeMap = [

];
exports.AnnotationInfo = AnnotationInfo;
//# sourceMappingURL=annotationInfo.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AnnotationsInfo = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class AnnotationsInfo extends linkElement_1.LinkElement {

}
exports.AnnotationsInfo = AnnotationsInfo;
AnnotationsInfo.discriminator = undefined;

@@ -20,2 +18,3 @@ AnnotationsInfo.attributeTypeMap = [

];
exports.AnnotationsInfo = AnnotationsInfo;
//# sourceMappingURL=annotationsInfo.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AnnotationsInfoResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class AnnotationsInfoResponse extends asposeResponse_1.AsposeResponse {

}
exports.AnnotationsInfoResponse = AnnotationsInfoResponse;
AnnotationsInfoResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ AnnotationsInfoResponse.attributeTypeMap = [

];
exports.AnnotationsInfoResponse = AnnotationsInfoResponse;
//# sourceMappingURL=annotationsInfoResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AnnotationState = void 0;
var AnnotationState;

@@ -5,0 +4,0 @@ (function (AnnotationState) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AnnotationType = void 0;
var AnnotationType;

@@ -5,0 +4,0 @@ (function (AnnotationType) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AntialiasingProcessingType = void 0;
var AntialiasingProcessingType;

@@ -5,0 +4,0 @@ (function (AntialiasingProcessingType) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AsposeResponse = void 0;
class AsposeResponse {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.AsposeResponse = AsposeResponse;
AsposeResponse.discriminator = undefined;

@@ -24,2 +22,3 @@ AsposeResponse.attributeTypeMap = [

];
exports.AsposeResponse = AsposeResponse;
//# sourceMappingURL=asposeResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Attachment = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class Attachment extends linkElement_1.LinkElement {

}
exports.Attachment = Attachment;
Attachment.discriminator = undefined;

@@ -50,2 +48,3 @@ Attachment.attributeTypeMap = [

];
exports.Attachment = Attachment;
//# sourceMappingURL=attachment.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AttachmentInfo = void 0;
class AttachmentInfo {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.AttachmentInfo = AttachmentInfo;
AttachmentInfo.discriminator = undefined;

@@ -34,2 +32,3 @@ AttachmentInfo.attributeTypeMap = [

];
exports.AttachmentInfo = AttachmentInfo;
//# sourceMappingURL=attachmentInfo.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AttachmentResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class AttachmentResponse extends asposeResponse_1.AsposeResponse {

}
exports.AttachmentResponse = AttachmentResponse;
AttachmentResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ AttachmentResponse.attributeTypeMap = [

];
exports.AttachmentResponse = AttachmentResponse;
//# sourceMappingURL=attachmentResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Attachments = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class Attachments extends linkElement_1.LinkElement {

}
exports.Attachments = Attachments;
Attachments.discriminator = undefined;

@@ -20,2 +18,3 @@ Attachments.attributeTypeMap = [

];
exports.Attachments = Attachments;
//# sourceMappingURL=attachments.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AttachmentsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class AttachmentsResponse extends asposeResponse_1.AsposeResponse {

}
exports.AttachmentsResponse = AttachmentsResponse;
AttachmentsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ AttachmentsResponse.attributeTypeMap = [

];
exports.AttachmentsResponse = AttachmentsResponse;
//# sourceMappingURL=attachmentsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Bookmark = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class Bookmark extends linkElement_1.LinkElement {

}
exports.Bookmark = Bookmark;
Bookmark.discriminator = undefined;

@@ -95,2 +93,3 @@ Bookmark.attributeTypeMap = [

];
exports.Bookmark = Bookmark;
//# sourceMappingURL=bookmark.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BookmarkResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class BookmarkResponse extends asposeResponse_1.AsposeResponse {

}
exports.BookmarkResponse = BookmarkResponse;
BookmarkResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ BookmarkResponse.attributeTypeMap = [

];
exports.BookmarkResponse = BookmarkResponse;
//# sourceMappingURL=bookmarkResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Bookmarks = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class Bookmarks extends linkElement_1.LinkElement {

}
exports.Bookmarks = Bookmarks;
Bookmarks.discriminator = undefined;

@@ -20,2 +18,3 @@ Bookmarks.attributeTypeMap = [

];
exports.Bookmarks = Bookmarks;
//# sourceMappingURL=bookmarks.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BookmarksResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class BookmarksResponse extends asposeResponse_1.AsposeResponse {

}
exports.BookmarksResponse = BookmarksResponse;
BookmarksResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ BookmarksResponse.attributeTypeMap = [

];
exports.BookmarksResponse = BookmarksResponse;
//# sourceMappingURL=bookmarksResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Border = void 0;
class Border {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.Border = Border;
Border.discriminator = undefined;

@@ -44,2 +42,3 @@ Border.attributeTypeMap = [

];
exports.Border = Border;
//# sourceMappingURL=border.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BorderCornerStyle = void 0;
var BorderCornerStyle;

@@ -5,0 +4,0 @@ (function (BorderCornerStyle) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BorderEffect = void 0;
var BorderEffect;

@@ -5,0 +4,0 @@ (function (BorderEffect) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BorderInfo = void 0;
class BorderInfo {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.BorderInfo = BorderInfo;
BorderInfo.discriminator = undefined;

@@ -39,2 +37,3 @@ BorderInfo.attributeTypeMap = [

];
exports.BorderInfo = BorderInfo;
//# sourceMappingURL=borderInfo.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BorderStyle = void 0;
var BorderStyle;

@@ -5,0 +4,0 @@ (function (BorderStyle) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BoxStyle = void 0;
var BoxStyle;

@@ -5,0 +4,0 @@ (function (BoxStyle) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CapStyle = void 0;
var CapStyle;

@@ -5,0 +4,0 @@ (function (CapStyle) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CaptionPosition = void 0;
var CaptionPosition;

@@ -5,0 +4,0 @@ (function (CaptionPosition) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CaretAnnotation = void 0;
const markupAnnotation_1 = require("./markupAnnotation");

@@ -10,3 +9,2 @@ class CaretAnnotation extends markupAnnotation_1.MarkupAnnotation {

}
exports.CaretAnnotation = CaretAnnotation;
CaretAnnotation.discriminator = undefined;

@@ -25,2 +23,3 @@ CaretAnnotation.attributeTypeMap = [

];
exports.CaretAnnotation = CaretAnnotation;
//# sourceMappingURL=caretAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CaretAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class CaretAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.CaretAnnotationResponse = CaretAnnotationResponse;
CaretAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ CaretAnnotationResponse.attributeTypeMap = [

];
exports.CaretAnnotationResponse = CaretAnnotationResponse;
//# sourceMappingURL=caretAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CaretAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class CaretAnnotations extends linkElement_1.LinkElement {

}
exports.CaretAnnotations = CaretAnnotations;
CaretAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ CaretAnnotations.attributeTypeMap = [

];
exports.CaretAnnotations = CaretAnnotations;
//# sourceMappingURL=caretAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CaretAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class CaretAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.CaretAnnotationsResponse = CaretAnnotationsResponse;
CaretAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ CaretAnnotationsResponse.attributeTypeMap = [

];
exports.CaretAnnotationsResponse = CaretAnnotationsResponse;
//# sourceMappingURL=caretAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CaretSymbol = void 0;
var CaretSymbol;

@@ -5,0 +4,0 @@ (function (CaretSymbol) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Cell = void 0;
class Cell {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.Cell = Cell;
Cell.discriminator = undefined;

@@ -94,2 +92,3 @@ Cell.attributeTypeMap = [

];
exports.Cell = Cell;
//# sourceMappingURL=cell.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CellRecognized = void 0;
class CellRecognized {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.CellRecognized = CellRecognized;
CellRecognized.discriminator = undefined;

@@ -24,2 +22,3 @@ CellRecognized.attributeTypeMap = [

];
exports.CellRecognized = CellRecognized;
//# sourceMappingURL=cellRecognized.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CheckBoxField = void 0;
const formField_1 = require("./formField");

@@ -10,3 +9,2 @@ class CheckBoxField extends formField_1.FormField {

}
exports.CheckBoxField = CheckBoxField;
CheckBoxField.discriminator = undefined;

@@ -40,2 +38,3 @@ CheckBoxField.attributeTypeMap = [

];
exports.CheckBoxField = CheckBoxField;
//# sourceMappingURL=checkBoxField.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CheckBoxFieldResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class CheckBoxFieldResponse extends asposeResponse_1.AsposeResponse {

}
exports.CheckBoxFieldResponse = CheckBoxFieldResponse;
CheckBoxFieldResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ CheckBoxFieldResponse.attributeTypeMap = [

];
exports.CheckBoxFieldResponse = CheckBoxFieldResponse;
//# sourceMappingURL=checkBoxFieldResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CheckBoxFields = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class CheckBoxFields extends linkElement_1.LinkElement {

}
exports.CheckBoxFields = CheckBoxFields;
CheckBoxFields.discriminator = undefined;

@@ -20,2 +18,3 @@ CheckBoxFields.attributeTypeMap = [

];
exports.CheckBoxFields = CheckBoxFields;
//# sourceMappingURL=checkBoxFields.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CheckBoxFieldsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class CheckBoxFieldsResponse extends asposeResponse_1.AsposeResponse {

}
exports.CheckBoxFieldsResponse = CheckBoxFieldsResponse;
CheckBoxFieldsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ CheckBoxFieldsResponse.attributeTypeMap = [

];
exports.CheckBoxFieldsResponse = CheckBoxFieldsResponse;
//# sourceMappingURL=checkBoxFieldsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ChoiceField = void 0;
const formField_1 = require("./formField");

@@ -10,3 +9,2 @@ class ChoiceField extends formField_1.FormField {

}
exports.ChoiceField = ChoiceField;
ChoiceField.discriminator = undefined;

@@ -25,2 +23,3 @@ ChoiceField.attributeTypeMap = [

];
exports.ChoiceField = ChoiceField;
//# sourceMappingURL=choiceField.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CircleAnnotation = void 0;
const commonFigureAnnotation_1 = require("./commonFigureAnnotation");

@@ -10,5 +9,5 @@ class CircleAnnotation extends commonFigureAnnotation_1.CommonFigureAnnotation {

}
exports.CircleAnnotation = CircleAnnotation;
CircleAnnotation.discriminator = undefined;
CircleAnnotation.attributeTypeMap = [];
exports.CircleAnnotation = CircleAnnotation;
//# sourceMappingURL=circleAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CircleAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class CircleAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.CircleAnnotationResponse = CircleAnnotationResponse;
CircleAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ CircleAnnotationResponse.attributeTypeMap = [

];
exports.CircleAnnotationResponse = CircleAnnotationResponse;
//# sourceMappingURL=circleAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CircleAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class CircleAnnotations extends linkElement_1.LinkElement {

}
exports.CircleAnnotations = CircleAnnotations;
CircleAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ CircleAnnotations.attributeTypeMap = [

];
exports.CircleAnnotations = CircleAnnotations;
//# sourceMappingURL=circleAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CircleAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class CircleAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.CircleAnnotationsResponse = CircleAnnotationsResponse;
CircleAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ CircleAnnotationsResponse.attributeTypeMap = [

];
exports.CircleAnnotationsResponse = CircleAnnotationsResponse;
//# sourceMappingURL=circleAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Color = void 0;
class Color {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.Color = Color;
Color.discriminator = undefined;

@@ -34,2 +32,3 @@ Color.attributeTypeMap = [

];
exports.Color = Color;
//# sourceMappingURL=color.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ColorDepth = void 0;
var ColorDepth;

@@ -5,0 +4,0 @@ (function (ColorDepth) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ColumnAdjustment = void 0;
var ColumnAdjustment;

@@ -5,0 +4,0 @@ (function (ColumnAdjustment) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ComboBoxField = void 0;
const choiceField_1 = require("./choiceField");

@@ -10,3 +9,2 @@ class ComboBoxField extends choiceField_1.ChoiceField {

}
exports.ComboBoxField = ComboBoxField;
ComboBoxField.discriminator = undefined;

@@ -35,2 +33,3 @@ ComboBoxField.attributeTypeMap = [

];
exports.ComboBoxField = ComboBoxField;
//# sourceMappingURL=comboBoxField.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ComboBoxFieldResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class ComboBoxFieldResponse extends asposeResponse_1.AsposeResponse {

}
exports.ComboBoxFieldResponse = ComboBoxFieldResponse;
ComboBoxFieldResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ ComboBoxFieldResponse.attributeTypeMap = [

];
exports.ComboBoxFieldResponse = ComboBoxFieldResponse;
//# sourceMappingURL=comboBoxFieldResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ComboBoxFields = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class ComboBoxFields extends linkElement_1.LinkElement {

}
exports.ComboBoxFields = ComboBoxFields;
ComboBoxFields.discriminator = undefined;

@@ -20,2 +18,3 @@ ComboBoxFields.attributeTypeMap = [

];
exports.ComboBoxFields = ComboBoxFields;
//# sourceMappingURL=comboBoxFields.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ComboBoxFieldsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class ComboBoxFieldsResponse extends asposeResponse_1.AsposeResponse {

}
exports.ComboBoxFieldsResponse = ComboBoxFieldsResponse;
ComboBoxFieldsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ ComboBoxFieldsResponse.attributeTypeMap = [

];
exports.ComboBoxFieldsResponse = ComboBoxFieldsResponse;
//# sourceMappingURL=comboBoxFieldsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CommonFigureAnnotation = void 0;
const markupAnnotation_1 = require("./markupAnnotation");

@@ -10,3 +9,2 @@ class CommonFigureAnnotation extends markupAnnotation_1.MarkupAnnotation {

}
exports.CommonFigureAnnotation = CommonFigureAnnotation;
CommonFigureAnnotation.discriminator = undefined;

@@ -25,2 +23,3 @@ CommonFigureAnnotation.attributeTypeMap = [

];
exports.CommonFigureAnnotation = CommonFigureAnnotation;
//# sourceMappingURL=commonFigureAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CompressionType = void 0;
var CompressionType;

@@ -5,0 +4,0 @@ (function (CompressionType) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CryptoAlgorithm = void 0;
var CryptoAlgorithm;

@@ -5,0 +4,0 @@ (function (CryptoAlgorithm) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Dash = void 0;
class Dash {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.Dash = Dash;
Dash.discriminator = undefined;

@@ -24,2 +22,3 @@ Dash.attributeTypeMap = [

];
exports.Dash = Dash;
//# sourceMappingURL=dash.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DefaultPageConfig = void 0;
class DefaultPageConfig {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.DefaultPageConfig = DefaultPageConfig;
DefaultPageConfig.discriminator = undefined;

@@ -24,2 +22,3 @@ DefaultPageConfig.attributeTypeMap = [

];
exports.DefaultPageConfig = DefaultPageConfig;
//# sourceMappingURL=defaultPageConfig.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Direction = void 0;
var Direction;

@@ -5,0 +4,0 @@ (function (Direction) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DiscUsage = void 0;
class DiscUsage {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.DiscUsage = DiscUsage;
DiscUsage.discriminator = undefined;

@@ -24,2 +22,3 @@ DiscUsage.attributeTypeMap = [

];
exports.DiscUsage = DiscUsage;
//# sourceMappingURL=discUsage.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DisplayProperties = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class DisplayProperties extends linkElement_1.LinkElement {

}
exports.DisplayProperties = DisplayProperties;
DisplayProperties.discriminator = undefined;

@@ -60,2 +58,3 @@ DisplayProperties.attributeTypeMap = [

];
exports.DisplayProperties = DisplayProperties;
//# sourceMappingURL=displayProperties.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DisplayPropertiesResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class DisplayPropertiesResponse extends asposeResponse_1.AsposeResponse {

}
exports.DisplayPropertiesResponse = DisplayPropertiesResponse;
DisplayPropertiesResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ DisplayPropertiesResponse.attributeTypeMap = [

];
exports.DisplayPropertiesResponse = DisplayPropertiesResponse;
//# sourceMappingURL=displayPropertiesResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DocFormat = void 0;
var DocFormat;

@@ -5,0 +4,0 @@ (function (DocFormat) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DocMDPAccessPermissionType = void 0;
var DocMDPAccessPermissionType;

@@ -5,0 +4,0 @@ (function (DocMDPAccessPermissionType) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DocRecognitionMode = void 0;
var DocRecognitionMode;

@@ -5,0 +4,0 @@ (function (DocRecognitionMode) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Document = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class Document extends linkElement_1.LinkElement {

}
exports.Document = Document;
Document.discriminator = undefined;

@@ -30,2 +28,3 @@ Document.attributeTypeMap = [

];
exports.Document = Document;
//# sourceMappingURL=document.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DocumentConfig = void 0;
class DocumentConfig {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.DocumentConfig = DocumentConfig;
DocumentConfig.discriminator = undefined;

@@ -34,2 +32,3 @@ DocumentConfig.attributeTypeMap = [

];
exports.DocumentConfig = DocumentConfig;
//# sourceMappingURL=documentConfig.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DocumentPageResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class DocumentPageResponse extends asposeResponse_1.AsposeResponse {

}
exports.DocumentPageResponse = DocumentPageResponse;
DocumentPageResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ DocumentPageResponse.attributeTypeMap = [

];
exports.DocumentPageResponse = DocumentPageResponse;
//# sourceMappingURL=documentPageResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DocumentPagesResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class DocumentPagesResponse extends asposeResponse_1.AsposeResponse {

}
exports.DocumentPagesResponse = DocumentPagesResponse;
DocumentPagesResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ DocumentPagesResponse.attributeTypeMap = [

];
exports.DocumentPagesResponse = DocumentPagesResponse;
//# sourceMappingURL=documentPagesResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DocumentPrivilege = void 0;
class DocumentPrivilege {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.DocumentPrivilege = DocumentPrivilege;
DocumentPrivilege.discriminator = undefined;

@@ -69,2 +67,3 @@ DocumentPrivilege.attributeTypeMap = [

];
exports.DocumentPrivilege = DocumentPrivilege;
//# sourceMappingURL=documentPrivilege.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DocumentProperties = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class DocumentProperties extends linkElement_1.LinkElement {

}
exports.DocumentProperties = DocumentProperties;
DocumentProperties.discriminator = undefined;

@@ -20,2 +18,3 @@ DocumentProperties.attributeTypeMap = [

];
exports.DocumentProperties = DocumentProperties;
//# sourceMappingURL=documentProperties.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DocumentPropertiesResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class DocumentPropertiesResponse extends asposeResponse_1.AsposeResponse {

}
exports.DocumentPropertiesResponse = DocumentPropertiesResponse;
DocumentPropertiesResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ DocumentPropertiesResponse.attributeTypeMap = [

];
exports.DocumentPropertiesResponse = DocumentPropertiesResponse;
//# sourceMappingURL=documentPropertiesResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DocumentProperty = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class DocumentProperty extends linkElement_1.LinkElement {

}
exports.DocumentProperty = DocumentProperty;
DocumentProperty.discriminator = undefined;

@@ -30,2 +28,3 @@ DocumentProperty.attributeTypeMap = [

];
exports.DocumentProperty = DocumentProperty;
//# sourceMappingURL=documentProperty.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DocumentPropertyResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class DocumentPropertyResponse extends asposeResponse_1.AsposeResponse {

}
exports.DocumentPropertyResponse = DocumentPropertyResponse;
DocumentPropertyResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ DocumentPropertyResponse.attributeTypeMap = [

];
exports.DocumentPropertyResponse = DocumentPropertyResponse;
//# sourceMappingURL=documentPropertyResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DocumentResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class DocumentResponse extends asposeResponse_1.AsposeResponse {

}
exports.DocumentResponse = DocumentResponse;
DocumentResponse.discriminator = undefined;

@@ -25,2 +23,3 @@ DocumentResponse.attributeTypeMap = [

];
exports.DocumentResponse = DocumentResponse;
//# sourceMappingURL=documentResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.EpubRecognitionMode = void 0;
var EpubRecognitionMode;

@@ -5,0 +4,0 @@ (function (EpubRecognitionMode) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ErrorDetails = void 0;
class ErrorDetails {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.ErrorDetails = ErrorDetails;
ErrorDetails.discriminator = undefined;

@@ -24,2 +22,3 @@ ErrorDetails.attributeTypeMap = [

];
exports.ErrorDetails = ErrorDetails;
//# sourceMappingURL=errorDetails.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Field = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class Field extends linkElement_1.LinkElement {

}
exports.Field = Field;
Field.discriminator = undefined;

@@ -45,2 +43,3 @@ Field.attributeTypeMap = [

];
exports.Field = Field;
//# sourceMappingURL=field.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FieldResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class FieldResponse extends asposeResponse_1.AsposeResponse {

}
exports.FieldResponse = FieldResponse;
FieldResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ FieldResponse.attributeTypeMap = [

];
exports.FieldResponse = FieldResponse;
//# sourceMappingURL=fieldResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Fields = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class Fields extends linkElement_1.LinkElement {

}
exports.Fields = Fields;
Fields.discriminator = undefined;

@@ -20,2 +18,3 @@ Fields.attributeTypeMap = [

];
exports.Fields = Fields;
//# sourceMappingURL=fields.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FieldsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class FieldsResponse extends asposeResponse_1.AsposeResponse {

}
exports.FieldsResponse = FieldsResponse;
FieldsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ FieldsResponse.attributeTypeMap = [

];
exports.FieldsResponse = FieldsResponse;
//# sourceMappingURL=fieldsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FieldType = void 0;
var FieldType;

@@ -5,0 +4,0 @@ (function (FieldType) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FileAttachmentAnnotation = void 0;
const markupAnnotation_1 = require("./markupAnnotation");

@@ -10,3 +9,2 @@ class FileAttachmentAnnotation extends markupAnnotation_1.MarkupAnnotation {

}
exports.FileAttachmentAnnotation = FileAttachmentAnnotation;
FileAttachmentAnnotation.discriminator = undefined;

@@ -40,2 +38,3 @@ FileAttachmentAnnotation.attributeTypeMap = [

];
exports.FileAttachmentAnnotation = FileAttachmentAnnotation;
//# sourceMappingURL=fileAttachmentAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FileAttachmentAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class FileAttachmentAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.FileAttachmentAnnotationResponse = FileAttachmentAnnotationResponse;
FileAttachmentAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ FileAttachmentAnnotationResponse.attributeTypeMap = [

];
exports.FileAttachmentAnnotationResponse = FileAttachmentAnnotationResponse;
//# sourceMappingURL=fileAttachmentAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FileAttachmentAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class FileAttachmentAnnotations extends linkElement_1.LinkElement {

}
exports.FileAttachmentAnnotations = FileAttachmentAnnotations;
FileAttachmentAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ FileAttachmentAnnotations.attributeTypeMap = [

];
exports.FileAttachmentAnnotations = FileAttachmentAnnotations;
//# sourceMappingURL=fileAttachmentAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FileAttachmentAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class FileAttachmentAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.FileAttachmentAnnotationsResponse = FileAttachmentAnnotationsResponse;
FileAttachmentAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ FileAttachmentAnnotationsResponse.attributeTypeMap = [

];
exports.FileAttachmentAnnotationsResponse = FileAttachmentAnnotationsResponse;
//# sourceMappingURL=fileAttachmentAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FileIcon = void 0;
var FileIcon;

@@ -5,0 +4,0 @@ (function (FileIcon) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FilesList = void 0;
class FilesList {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.FilesList = FilesList;
FilesList.discriminator = undefined;

@@ -19,2 +17,3 @@ FilesList.attributeTypeMap = [

];
exports.FilesList = FilesList;
//# sourceMappingURL=filesList.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FilesUploadResult = void 0;
class FilesUploadResult {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.FilesUploadResult = FilesUploadResult;
FilesUploadResult.discriminator = undefined;

@@ -24,2 +22,3 @@ FilesUploadResult.attributeTypeMap = [

];
exports.FilesUploadResult = FilesUploadResult;
//# sourceMappingURL=filesUploadResult.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FileVersion = void 0;
const storageFile_1 = require("./storageFile");

@@ -10,3 +9,2 @@ class FileVersion extends storageFile_1.StorageFile {

}
exports.FileVersion = FileVersion;
FileVersion.discriminator = undefined;

@@ -25,2 +23,3 @@ FileVersion.attributeTypeMap = [

];
exports.FileVersion = FileVersion;
//# sourceMappingURL=fileVersion.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FileVersions = void 0;
class FileVersions {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.FileVersions = FileVersions;
FileVersions.discriminator = undefined;

@@ -19,2 +17,3 @@ FileVersions.attributeTypeMap = [

];
exports.FileVersions = FileVersions;
//# sourceMappingURL=fileVersions.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FontEncodingRules = void 0;
var FontEncodingRules;

@@ -5,0 +4,0 @@ (function (FontEncodingRules) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FontSavingModes = void 0;
var FontSavingModes;

@@ -5,0 +4,0 @@ (function (FontSavingModes) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FontStyles = void 0;
var FontStyles;

@@ -5,0 +4,0 @@ (function (FontStyles) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FormField = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class FormField extends linkElement_1.LinkElement {

}
exports.FormField = FormField;
FormField.discriminator = undefined;

@@ -110,2 +108,3 @@ FormField.attributeTypeMap = [

];
exports.FormField = FormField;
//# sourceMappingURL=formField.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FreeTextAnnotation = void 0;
const markupAnnotation_1 = require("./markupAnnotation");

@@ -10,3 +9,2 @@ class FreeTextAnnotation extends markupAnnotation_1.MarkupAnnotation {

}
exports.FreeTextAnnotation = FreeTextAnnotation;
FreeTextAnnotation.discriminator = undefined;

@@ -35,2 +33,3 @@ FreeTextAnnotation.attributeTypeMap = [

];
exports.FreeTextAnnotation = FreeTextAnnotation;
//# sourceMappingURL=freeTextAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FreeTextAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class FreeTextAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.FreeTextAnnotationResponse = FreeTextAnnotationResponse;
FreeTextAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ FreeTextAnnotationResponse.attributeTypeMap = [

];
exports.FreeTextAnnotationResponse = FreeTextAnnotationResponse;
//# sourceMappingURL=freeTextAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FreeTextAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class FreeTextAnnotations extends linkElement_1.LinkElement {

}
exports.FreeTextAnnotations = FreeTextAnnotations;
FreeTextAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ FreeTextAnnotations.attributeTypeMap = [

];
exports.FreeTextAnnotations = FreeTextAnnotations;
//# sourceMappingURL=freeTextAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FreeTextAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class FreeTextAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.FreeTextAnnotationsResponse = FreeTextAnnotationsResponse;
FreeTextAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ FreeTextAnnotationsResponse.attributeTypeMap = [

];
exports.FreeTextAnnotationsResponse = FreeTextAnnotationsResponse;
//# sourceMappingURL=freeTextAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FreeTextIntent = void 0;
var FreeTextIntent;

@@ -5,0 +4,0 @@ (function (FreeTextIntent) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.GraphInfo = void 0;
class GraphInfo {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.GraphInfo = GraphInfo;
GraphInfo.discriminator = undefined;

@@ -69,2 +67,3 @@ GraphInfo.attributeTypeMap = [

];
exports.GraphInfo = GraphInfo;
//# sourceMappingURL=graphInfo.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.HighlightAnnotation = void 0;
const markupAnnotation_1 = require("./markupAnnotation");

@@ -10,3 +9,2 @@ class HighlightAnnotation extends markupAnnotation_1.MarkupAnnotation {

}
exports.HighlightAnnotation = HighlightAnnotation;
HighlightAnnotation.discriminator = undefined;

@@ -20,2 +18,3 @@ HighlightAnnotation.attributeTypeMap = [

];
exports.HighlightAnnotation = HighlightAnnotation;
//# sourceMappingURL=highlightAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.HighlightAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class HighlightAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.HighlightAnnotationResponse = HighlightAnnotationResponse;
HighlightAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ HighlightAnnotationResponse.attributeTypeMap = [

];
exports.HighlightAnnotationResponse = HighlightAnnotationResponse;
//# sourceMappingURL=highlightAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.HighlightAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class HighlightAnnotations extends linkElement_1.LinkElement {

}
exports.HighlightAnnotations = HighlightAnnotations;
HighlightAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ HighlightAnnotations.attributeTypeMap = [

];
exports.HighlightAnnotations = HighlightAnnotations;
//# sourceMappingURL=highlightAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.HighlightAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class HighlightAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.HighlightAnnotationsResponse = HighlightAnnotationsResponse;
HighlightAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ HighlightAnnotationsResponse.attributeTypeMap = [

];
exports.HighlightAnnotationsResponse = HighlightAnnotationsResponse;
//# sourceMappingURL=highlightAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.HorizontalAlignment = void 0;
var HorizontalAlignment;

@@ -5,0 +4,0 @@ (function (HorizontalAlignment) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.HtmlDocumentType = void 0;
var HtmlDocumentType;

@@ -5,0 +4,0 @@ (function (HtmlDocumentType) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.HtmlMarkupGenerationModes = void 0;
var HtmlMarkupGenerationModes;

@@ -5,0 +4,0 @@ (function (HtmlMarkupGenerationModes) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Image = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class Image extends linkElement_1.LinkElement {

}
exports.Image = Image;
Image.discriminator = undefined;

@@ -40,2 +38,3 @@ Image.attributeTypeMap = [

];
exports.Image = Image;
//# sourceMappingURL=image.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImageCompressionVersion = void 0;
var ImageCompressionVersion;

@@ -5,0 +4,0 @@ (function (ImageCompressionVersion) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImageEncoding = void 0;
var ImageEncoding;

@@ -5,0 +4,0 @@ (function (ImageEncoding) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImageFooter = void 0;
const stampBase_1 = require("./stampBase");

@@ -10,3 +9,2 @@ class ImageFooter extends stampBase_1.StampBase {

}
exports.ImageFooter = ImageFooter;
ImageFooter.discriminator = undefined;

@@ -45,2 +43,3 @@ ImageFooter.attributeTypeMap = [

];
exports.ImageFooter = ImageFooter;
//# sourceMappingURL=imageFooter.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImageFragment = void 0;
class ImageFragment {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.ImageFragment = ImageFragment;
ImageFragment.discriminator = undefined;

@@ -49,2 +47,3 @@ ImageFragment.attributeTypeMap = [

];
exports.ImageFragment = ImageFragment;
//# sourceMappingURL=imageFragment.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImageHeader = void 0;
const stampBase_1 = require("./stampBase");

@@ -10,3 +9,2 @@ class ImageHeader extends stampBase_1.StampBase {

}
exports.ImageHeader = ImageHeader;
ImageHeader.discriminator = undefined;

@@ -45,2 +43,3 @@ ImageHeader.attributeTypeMap = [

];
exports.ImageHeader = ImageHeader;
//# sourceMappingURL=imageHeader.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImageResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class ImageResponse extends asposeResponse_1.AsposeResponse {

}
exports.ImageResponse = ImageResponse;
ImageResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ ImageResponse.attributeTypeMap = [

];
exports.ImageResponse = ImageResponse;
//# sourceMappingURL=imageResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Images = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class Images extends linkElement_1.LinkElement {

}
exports.Images = Images;
Images.discriminator = undefined;

@@ -20,2 +18,3 @@ Images.attributeTypeMap = [

];
exports.Images = Images;
//# sourceMappingURL=images.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImageSrcType = void 0;
var ImageSrcType;

@@ -5,0 +4,0 @@ (function (ImageSrcType) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImagesResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class ImagesResponse extends asposeResponse_1.AsposeResponse {

}
exports.ImagesResponse = ImagesResponse;
ImagesResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ ImagesResponse.attributeTypeMap = [

];
exports.ImagesResponse = ImagesResponse;
//# sourceMappingURL=imagesResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImageStamp = void 0;
const stampBase_1 = require("./stampBase");

@@ -10,3 +9,2 @@ class ImageStamp extends stampBase_1.StampBase {

}
exports.ImageStamp = ImageStamp;
ImageStamp.discriminator = undefined;

@@ -55,2 +53,3 @@ ImageStamp.attributeTypeMap = [

];
exports.ImageStamp = ImageStamp;
//# sourceMappingURL=imageStamp.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImageTemplate = void 0;
class ImageTemplate {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.ImageTemplate = ImageTemplate;
ImageTemplate.discriminator = undefined;

@@ -59,2 +57,3 @@ ImageTemplate.attributeTypeMap = [

];
exports.ImageTemplate = ImageTemplate;
//# sourceMappingURL=imageTemplate.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImageTemplatesRequest = void 0;
class ImageTemplatesRequest {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.ImageTemplatesRequest = ImageTemplatesRequest;
ImageTemplatesRequest.discriminator = undefined;

@@ -29,2 +27,3 @@ ImageTemplatesRequest.attributeTypeMap = [

];
exports.ImageTemplatesRequest = ImageTemplatesRequest;
//# sourceMappingURL=imageTemplatesRequest.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.InkAnnotation = void 0;
const markupAnnotation_1 = require("./markupAnnotation");

@@ -10,3 +9,2 @@ class InkAnnotation extends markupAnnotation_1.MarkupAnnotation {

}
exports.InkAnnotation = InkAnnotation;
InkAnnotation.discriminator = undefined;

@@ -25,2 +23,3 @@ InkAnnotation.attributeTypeMap = [

];
exports.InkAnnotation = InkAnnotation;
//# sourceMappingURL=inkAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.InkAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class InkAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.InkAnnotationResponse = InkAnnotationResponse;
InkAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ InkAnnotationResponse.attributeTypeMap = [

];
exports.InkAnnotationResponse = InkAnnotationResponse;
//# sourceMappingURL=inkAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.InkAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class InkAnnotations extends linkElement_1.LinkElement {

}
exports.InkAnnotations = InkAnnotations;
InkAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ InkAnnotations.attributeTypeMap = [

];
exports.InkAnnotations = InkAnnotations;
//# sourceMappingURL=inkAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.InkAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class InkAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.InkAnnotationsResponse = InkAnnotationsResponse;
InkAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ InkAnnotationsResponse.attributeTypeMap = [

];
exports.InkAnnotationsResponse = InkAnnotationsResponse;
//# sourceMappingURL=inkAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Justification = void 0;
var Justification;

@@ -5,0 +4,0 @@ (function (Justification) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LettersPositioningMethods = void 0;
var LettersPositioningMethods;

@@ -5,0 +4,0 @@ (function (LettersPositioningMethods) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LineAnnotation = void 0;
const markupAnnotation_1 = require("./markupAnnotation");

@@ -10,3 +9,2 @@ class LineAnnotation extends markupAnnotation_1.MarkupAnnotation {

}
exports.LineAnnotation = LineAnnotation;
LineAnnotation.discriminator = undefined;

@@ -75,2 +73,3 @@ LineAnnotation.attributeTypeMap = [

];
exports.LineAnnotation = LineAnnotation;
//# sourceMappingURL=lineAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LineAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class LineAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.LineAnnotationResponse = LineAnnotationResponse;
LineAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ LineAnnotationResponse.attributeTypeMap = [

];
exports.LineAnnotationResponse = LineAnnotationResponse;
//# sourceMappingURL=lineAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LineAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class LineAnnotations extends linkElement_1.LinkElement {

}
exports.LineAnnotations = LineAnnotations;
LineAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ LineAnnotations.attributeTypeMap = [

];
exports.LineAnnotations = LineAnnotations;
//# sourceMappingURL=lineAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LineAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class LineAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.LineAnnotationsResponse = LineAnnotationsResponse;
LineAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ LineAnnotationsResponse.attributeTypeMap = [

];
exports.LineAnnotationsResponse = LineAnnotationsResponse;
//# sourceMappingURL=lineAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LineEnding = void 0;
var LineEnding;

@@ -5,0 +4,0 @@ (function (LineEnding) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LineIntent = void 0;
var LineIntent;

@@ -5,0 +4,0 @@ (function (LineIntent) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LineSpacing = void 0;
var LineSpacing;

@@ -5,0 +4,0 @@ (function (LineSpacing) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Link = void 0;
class Link {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.Link = Link;
Link.discriminator = undefined;

@@ -34,2 +32,3 @@ Link.attributeTypeMap = [

];
exports.Link = Link;
//# sourceMappingURL=link.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LinkActionType = void 0;
var LinkActionType;

@@ -5,0 +4,0 @@ (function (LinkActionType) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LinkAnnotation = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class LinkAnnotation extends linkElement_1.LinkElement {

}
exports.LinkAnnotation = LinkAnnotation;
LinkAnnotation.discriminator = undefined;

@@ -45,2 +43,3 @@ LinkAnnotation.attributeTypeMap = [

];
exports.LinkAnnotation = LinkAnnotation;
//# sourceMappingURL=linkAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LinkAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class LinkAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.LinkAnnotationResponse = LinkAnnotationResponse;
LinkAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ LinkAnnotationResponse.attributeTypeMap = [

];
exports.LinkAnnotationResponse = LinkAnnotationResponse;
//# sourceMappingURL=linkAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LinkAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class LinkAnnotations extends linkElement_1.LinkElement {

}
exports.LinkAnnotations = LinkAnnotations;
LinkAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ LinkAnnotations.attributeTypeMap = [

];
exports.LinkAnnotations = LinkAnnotations;
//# sourceMappingURL=linkAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LinkAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class LinkAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.LinkAnnotationsResponse = LinkAnnotationsResponse;
LinkAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ LinkAnnotationsResponse.attributeTypeMap = [

];
exports.LinkAnnotationsResponse = LinkAnnotationsResponse;
//# sourceMappingURL=linkAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LinkElement = void 0;
class LinkElement {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.LinkElement = LinkElement;
LinkElement.discriminator = undefined;

@@ -19,2 +17,3 @@ LinkElement.attributeTypeMap = [

];
exports.LinkElement = LinkElement;
//# sourceMappingURL=linkElement.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LinkHighlightingMode = void 0;
var LinkHighlightingMode;

@@ -5,0 +4,0 @@ (function (LinkHighlightingMode) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ListBoxField = void 0;
const choiceField_1 = require("./choiceField");

@@ -10,3 +9,2 @@ class ListBoxField extends choiceField_1.ChoiceField {

}
exports.ListBoxField = ListBoxField;
ListBoxField.discriminator = undefined;

@@ -35,2 +33,3 @@ ListBoxField.attributeTypeMap = [

];
exports.ListBoxField = ListBoxField;
//# sourceMappingURL=listBoxField.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ListBoxFieldResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class ListBoxFieldResponse extends asposeResponse_1.AsposeResponse {

}
exports.ListBoxFieldResponse = ListBoxFieldResponse;
ListBoxFieldResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ ListBoxFieldResponse.attributeTypeMap = [

];
exports.ListBoxFieldResponse = ListBoxFieldResponse;
//# sourceMappingURL=listBoxFieldResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ListBoxFields = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class ListBoxFields extends linkElement_1.LinkElement {

}
exports.ListBoxFields = ListBoxFields;
ListBoxFields.discriminator = undefined;

@@ -20,2 +18,3 @@ ListBoxFields.attributeTypeMap = [

];
exports.ListBoxFields = ListBoxFields;
//# sourceMappingURL=listBoxFields.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ListBoxFieldsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class ListBoxFieldsResponse extends asposeResponse_1.AsposeResponse {

}
exports.ListBoxFieldsResponse = ListBoxFieldsResponse;
ListBoxFieldsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ ListBoxFieldsResponse.attributeTypeMap = [

];
exports.ListBoxFieldsResponse = ListBoxFieldsResponse;
//# sourceMappingURL=listBoxFieldsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.MarginInfo = void 0;
class MarginInfo {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.MarginInfo = MarginInfo;
MarginInfo.discriminator = undefined;

@@ -34,2 +32,3 @@ MarginInfo.attributeTypeMap = [

];
exports.MarginInfo = MarginInfo;
//# sourceMappingURL=marginInfo.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.MarkupAnnotation = void 0;
const annotation_1 = require("./annotation");

@@ -10,3 +9,2 @@ class MarkupAnnotation extends annotation_1.Annotation {

}
exports.MarkupAnnotation = MarkupAnnotation;
MarkupAnnotation.discriminator = undefined;

@@ -35,2 +33,3 @@ MarkupAnnotation.attributeTypeMap = [

];
exports.MarkupAnnotation = MarkupAnnotation;
//# sourceMappingURL=markupAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.MergeDocuments = void 0;
class MergeDocuments {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.MergeDocuments = MergeDocuments;
MergeDocuments.discriminator = undefined;

@@ -19,2 +17,3 @@ MergeDocuments.attributeTypeMap = [

];
exports.MergeDocuments = MergeDocuments;
//# sourceMappingURL=mergeDocuments.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ModelError = void 0;
class ModelError {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.ModelError = ModelError;
ModelError.discriminator = undefined;

@@ -34,2 +32,3 @@ ModelError.attributeTypeMap = [

];
exports.ModelError = ModelError;
//# sourceMappingURL=modelError.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.MovieAnnotation = void 0;
const annotation_1 = require("./annotation");

@@ -10,3 +9,2 @@ class MovieAnnotation extends annotation_1.Annotation {

}
exports.MovieAnnotation = MovieAnnotation;
MovieAnnotation.discriminator = undefined;

@@ -30,2 +28,3 @@ MovieAnnotation.attributeTypeMap = [

];
exports.MovieAnnotation = MovieAnnotation;
//# sourceMappingURL=movieAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.MovieAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class MovieAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.MovieAnnotationResponse = MovieAnnotationResponse;
MovieAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ MovieAnnotationResponse.attributeTypeMap = [

];
exports.MovieAnnotationResponse = MovieAnnotationResponse;
//# sourceMappingURL=movieAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.MovieAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class MovieAnnotations extends linkElement_1.LinkElement {

}
exports.MovieAnnotations = MovieAnnotations;
MovieAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ MovieAnnotations.attributeTypeMap = [

];
exports.MovieAnnotations = MovieAnnotations;
//# sourceMappingURL=movieAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.MovieAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class MovieAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.MovieAnnotationsResponse = MovieAnnotationsResponse;
MovieAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ MovieAnnotationsResponse.attributeTypeMap = [

];
exports.MovieAnnotationsResponse = MovieAnnotationsResponse;
//# sourceMappingURL=movieAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ObjectExist = void 0;
class ObjectExist {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.ObjectExist = ObjectExist;
ObjectExist.discriminator = undefined;

@@ -24,2 +22,3 @@ ObjectExist.attributeTypeMap = [

];
exports.ObjectExist = ObjectExist;
//# sourceMappingURL=objectExist.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.OptimizeOptions = void 0;
class OptimizeOptions {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.OptimizeOptions = OptimizeOptions;
OptimizeOptions.discriminator = undefined;

@@ -84,2 +82,3 @@ OptimizeOptions.attributeTypeMap = [

];
exports.OptimizeOptions = OptimizeOptions;
//# sourceMappingURL=optimizeOptions.js.map

@@ -34,3 +34,3 @@ /**

/**
* If true page contents will be reused when document is optimized for equal pages.
* If true page contents will be reused when document is optimized for equal pages. LinkDuplcateStreams option must be set to true.
*/

@@ -59,3 +59,3 @@ 'allowReusePageContent': boolean;

/**
* Make fonts not embedded if set to true.
* Make fonts not embedded if set to true. Unembedding a font means removing the embedded byte stream data of the font included in a PDF document.
*/

@@ -72,3 +72,3 @@ 'unembedFonts': boolean;

/**
* Fonts will be converted into subsets if set to true.
* Fonts will be converted into subsets if set to true. Only those characters that are actually used in the layout are stored in the PDF.
*/

@@ -75,0 +75,0 @@ 'subsetFonts': boolean;

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Option = void 0;
class Option {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.Option = Option;
Option.discriminator = undefined;

@@ -34,2 +32,3 @@ Option.attributeTypeMap = [

];
exports.Option = Option;
//# sourceMappingURL=option.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.OrganizeDocumentData = void 0;
class OrganizeDocumentData {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.OrganizeDocumentData = OrganizeDocumentData;
OrganizeDocumentData.discriminator = undefined;

@@ -24,2 +22,3 @@ OrganizeDocumentData.attributeTypeMap = [

];
exports.OrganizeDocumentData = OrganizeDocumentData;
//# sourceMappingURL=organizeDocumentData.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.OrganizeDocumentRequest = void 0;
class OrganizeDocumentRequest {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.OrganizeDocumentRequest = OrganizeDocumentRequest;
OrganizeDocumentRequest.discriminator = undefined;

@@ -19,2 +17,3 @@ OrganizeDocumentRequest.attributeTypeMap = [

];
exports.OrganizeDocumentRequest = OrganizeDocumentRequest;
//# sourceMappingURL=organizeDocumentRequest.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.OutputFormat = void 0;
var OutputFormat;

@@ -5,0 +4,0 @@ (function (OutputFormat) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Page = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class Page extends linkElement_1.LinkElement {

}
exports.Page = Page;
Page.discriminator = undefined;

@@ -25,2 +23,3 @@ Page.attributeTypeMap = [

];
exports.Page = Page;
//# sourceMappingURL=page.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PageLayout = void 0;
var PageLayout;

@@ -5,0 +4,0 @@ (function (PageLayout) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PageMode = void 0;
var PageMode;

@@ -5,0 +4,0 @@ (function (PageMode) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PageNumberStamp = void 0;
const stampBase_1 = require("./stampBase");

@@ -10,3 +9,2 @@ class PageNumberStamp extends stampBase_1.StampBase {

}
exports.PageNumberStamp = PageNumberStamp;
PageNumberStamp.discriminator = undefined;

@@ -50,2 +48,3 @@ PageNumberStamp.attributeTypeMap = [

];
exports.PageNumberStamp = PageNumberStamp;
//# sourceMappingURL=pageNumberStamp.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PageRange = void 0;
class PageRange {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.PageRange = PageRange;
PageRange.discriminator = undefined;

@@ -24,2 +22,3 @@ PageRange.attributeTypeMap = [

];
exports.PageRange = PageRange;
//# sourceMappingURL=pageRange.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Pages = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class Pages extends linkElement_1.LinkElement {

}
exports.Pages = Pages;
Pages.discriminator = undefined;

@@ -20,2 +18,3 @@ Pages.attributeTypeMap = [

];
exports.Pages = Pages;
//# sourceMappingURL=pages.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PageWordCount = void 0;
class PageWordCount {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.PageWordCount = PageWordCount;
PageWordCount.discriminator = undefined;

@@ -24,2 +22,3 @@ PageWordCount.attributeTypeMap = [

];
exports.PageWordCount = PageWordCount;
//# sourceMappingURL=pageWordCount.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Paragraph = void 0;
class Paragraph {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.Paragraph = Paragraph;
Paragraph.discriminator = undefined;

@@ -74,2 +72,3 @@ Paragraph.attributeTypeMap = [

];
exports.Paragraph = Paragraph;
//# sourceMappingURL=paragraph.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PartsEmbeddingModes = void 0;
var PartsEmbeddingModes;

@@ -5,0 +4,0 @@ (function (PartsEmbeddingModes) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PdfAType = void 0;
var PdfAType;

@@ -5,0 +4,0 @@ (function (PdfAType) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PdfPageStamp = void 0;
const stampBase_1 = require("./stampBase");

@@ -10,3 +9,2 @@ class PdfPageStamp extends stampBase_1.StampBase {

}
exports.PdfPageStamp = PdfPageStamp;
PdfPageStamp.discriminator = undefined;

@@ -50,2 +48,3 @@ PdfPageStamp.attributeTypeMap = [

];
exports.PdfPageStamp = PdfPageStamp;
//# sourceMappingURL=pdfPageStamp.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PermissionsFlags = void 0;
var PermissionsFlags;

@@ -5,0 +4,0 @@ (function (PermissionsFlags) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Point = void 0;
class Point {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.Point = Point;
Point.discriminator = undefined;

@@ -24,2 +22,3 @@ Point.attributeTypeMap = [

];
exports.Point = Point;
//# sourceMappingURL=point.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PolyAnnotation = void 0;
const markupAnnotation_1 = require("./markupAnnotation");

@@ -10,3 +9,2 @@ class PolyAnnotation extends markupAnnotation_1.MarkupAnnotation {

}
exports.PolyAnnotation = PolyAnnotation;
PolyAnnotation.discriminator = undefined;

@@ -40,2 +38,3 @@ PolyAnnotation.attributeTypeMap = [

];
exports.PolyAnnotation = PolyAnnotation;
//# sourceMappingURL=polyAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PolygonAnnotation = void 0;
const polyAnnotation_1 = require("./polyAnnotation");

@@ -10,5 +9,5 @@ class PolygonAnnotation extends polyAnnotation_1.PolyAnnotation {

}
exports.PolygonAnnotation = PolygonAnnotation;
PolygonAnnotation.discriminator = undefined;
PolygonAnnotation.attributeTypeMap = [];
exports.PolygonAnnotation = PolygonAnnotation;
//# sourceMappingURL=polygonAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PolygonAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class PolygonAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.PolygonAnnotationResponse = PolygonAnnotationResponse;
PolygonAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ PolygonAnnotationResponse.attributeTypeMap = [

];
exports.PolygonAnnotationResponse = PolygonAnnotationResponse;
//# sourceMappingURL=polygonAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PolygonAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class PolygonAnnotations extends linkElement_1.LinkElement {

}
exports.PolygonAnnotations = PolygonAnnotations;
PolygonAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ PolygonAnnotations.attributeTypeMap = [

];
exports.PolygonAnnotations = PolygonAnnotations;
//# sourceMappingURL=polygonAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PolygonAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class PolygonAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.PolygonAnnotationsResponse = PolygonAnnotationsResponse;
PolygonAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ PolygonAnnotationsResponse.attributeTypeMap = [

];
exports.PolygonAnnotationsResponse = PolygonAnnotationsResponse;
//# sourceMappingURL=polygonAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PolyIntent = void 0;
var PolyIntent;

@@ -5,0 +4,0 @@ (function (PolyIntent) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PolyLineAnnotation = void 0;
const polyAnnotation_1 = require("./polyAnnotation");

@@ -10,5 +9,5 @@ class PolyLineAnnotation extends polyAnnotation_1.PolyAnnotation {

}
exports.PolyLineAnnotation = PolyLineAnnotation;
PolyLineAnnotation.discriminator = undefined;
PolyLineAnnotation.attributeTypeMap = [];
exports.PolyLineAnnotation = PolyLineAnnotation;
//# sourceMappingURL=polyLineAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PolyLineAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class PolyLineAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.PolyLineAnnotationResponse = PolyLineAnnotationResponse;
PolyLineAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ PolyLineAnnotationResponse.attributeTypeMap = [

];
exports.PolyLineAnnotationResponse = PolyLineAnnotationResponse;
//# sourceMappingURL=polyLineAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PolyLineAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class PolyLineAnnotations extends linkElement_1.LinkElement {

}
exports.PolyLineAnnotations = PolyLineAnnotations;
PolyLineAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ PolyLineAnnotations.attributeTypeMap = [

];
exports.PolyLineAnnotations = PolyLineAnnotations;
//# sourceMappingURL=polyLineAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PolyLineAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class PolyLineAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.PolyLineAnnotationsResponse = PolyLineAnnotationsResponse;
PolyLineAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ PolyLineAnnotationsResponse.attributeTypeMap = [

];
exports.PolyLineAnnotationsResponse = PolyLineAnnotationsResponse;
//# sourceMappingURL=polyLineAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PopupAnnotation = void 0;
const annotation_1 = require("./annotation");

@@ -10,3 +9,2 @@ class PopupAnnotation extends annotation_1.Annotation {

}
exports.PopupAnnotation = PopupAnnotation;
PopupAnnotation.discriminator = undefined;

@@ -20,2 +18,3 @@ PopupAnnotation.attributeTypeMap = [

];
exports.PopupAnnotation = PopupAnnotation;
//# sourceMappingURL=popupAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PopupAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class PopupAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.PopupAnnotationResponse = PopupAnnotationResponse;
PopupAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ PopupAnnotationResponse.attributeTypeMap = [

];
exports.PopupAnnotationResponse = PopupAnnotationResponse;
//# sourceMappingURL=popupAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PopupAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class PopupAnnotations extends linkElement_1.LinkElement {

}
exports.PopupAnnotations = PopupAnnotations;
PopupAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ PopupAnnotations.attributeTypeMap = [

];
exports.PopupAnnotations = PopupAnnotations;
//# sourceMappingURL=popupAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PopupAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class PopupAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.PopupAnnotationsResponse = PopupAnnotationsResponse;
PopupAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ PopupAnnotationsResponse.attributeTypeMap = [

];
exports.PopupAnnotationsResponse = PopupAnnotationsResponse;
//# sourceMappingURL=popupAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PopupAnnotationWithParent = void 0;
const popupAnnotation_1 = require("./popupAnnotation");

@@ -10,3 +9,2 @@ class PopupAnnotationWithParent extends popupAnnotation_1.PopupAnnotation {

}
exports.PopupAnnotationWithParent = PopupAnnotationWithParent;
PopupAnnotationWithParent.discriminator = undefined;

@@ -20,2 +18,3 @@ PopupAnnotationWithParent.attributeTypeMap = [

];
exports.PopupAnnotationWithParent = PopupAnnotationWithParent;
//# sourceMappingURL=popupAnnotationWithParent.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Position = void 0;
class Position {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.Position = Position;
Position.discriminator = undefined;

@@ -24,2 +22,3 @@ Position.attributeTypeMap = [

];
exports.Position = Position;
//# sourceMappingURL=position.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RadioButtonField = void 0;
const choiceField_1 = require("./choiceField");

@@ -10,3 +9,2 @@ class RadioButtonField extends choiceField_1.ChoiceField {

}
exports.RadioButtonField = RadioButtonField;
RadioButtonField.discriminator = undefined;

@@ -30,2 +28,3 @@ RadioButtonField.attributeTypeMap = [

];
exports.RadioButtonField = RadioButtonField;
//# sourceMappingURL=radioButtonField.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RadioButtonFieldResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class RadioButtonFieldResponse extends asposeResponse_1.AsposeResponse {

}
exports.RadioButtonFieldResponse = RadioButtonFieldResponse;
RadioButtonFieldResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ RadioButtonFieldResponse.attributeTypeMap = [

];
exports.RadioButtonFieldResponse = RadioButtonFieldResponse;
//# sourceMappingURL=radioButtonFieldResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RadioButtonFields = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class RadioButtonFields extends linkElement_1.LinkElement {

}
exports.RadioButtonFields = RadioButtonFields;
RadioButtonFields.discriminator = undefined;

@@ -20,2 +18,3 @@ RadioButtonFields.attributeTypeMap = [

];
exports.RadioButtonFields = RadioButtonFields;
//# sourceMappingURL=radioButtonFields.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RadioButtonFieldsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class RadioButtonFieldsResponse extends asposeResponse_1.AsposeResponse {

}
exports.RadioButtonFieldsResponse = RadioButtonFieldsResponse;
RadioButtonFieldsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ RadioButtonFieldsResponse.attributeTypeMap = [

];
exports.RadioButtonFieldsResponse = RadioButtonFieldsResponse;
//# sourceMappingURL=radioButtonFieldsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RadioButtonOptionField = void 0;
const formField_1 = require("./formField");

@@ -10,3 +9,2 @@ class RadioButtonOptionField extends formField_1.FormField {

}
exports.RadioButtonOptionField = RadioButtonOptionField;
RadioButtonOptionField.discriminator = undefined;

@@ -25,2 +23,3 @@ RadioButtonOptionField.attributeTypeMap = [

];
exports.RadioButtonOptionField = RadioButtonOptionField;
//# sourceMappingURL=radioButtonOptionField.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RasterImagesSavingModes = void 0;
var RasterImagesSavingModes;

@@ -5,0 +4,0 @@ (function (RasterImagesSavingModes) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Rectangle = void 0;
class Rectangle {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.Rectangle = Rectangle;
Rectangle.discriminator = undefined;

@@ -34,2 +32,3 @@ Rectangle.attributeTypeMap = [

];
exports.Rectangle = Rectangle;
//# sourceMappingURL=rectangle.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RedactionAnnotation = void 0;
const annotation_1 = require("./annotation");

@@ -10,3 +9,2 @@ class RedactionAnnotation extends annotation_1.Annotation {

}
exports.RedactionAnnotation = RedactionAnnotation;
RedactionAnnotation.discriminator = undefined;

@@ -45,2 +43,3 @@ RedactionAnnotation.attributeTypeMap = [

];
exports.RedactionAnnotation = RedactionAnnotation;
//# sourceMappingURL=redactionAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RedactionAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class RedactionAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.RedactionAnnotationResponse = RedactionAnnotationResponse;
RedactionAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ RedactionAnnotationResponse.attributeTypeMap = [

];
exports.RedactionAnnotationResponse = RedactionAnnotationResponse;
//# sourceMappingURL=redactionAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RedactionAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class RedactionAnnotations extends linkElement_1.LinkElement {

}
exports.RedactionAnnotations = RedactionAnnotations;
RedactionAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ RedactionAnnotations.attributeTypeMap = [

];
exports.RedactionAnnotations = RedactionAnnotations;
//# sourceMappingURL=redactionAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RedactionAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class RedactionAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.RedactionAnnotationsResponse = RedactionAnnotationsResponse;
RedactionAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ RedactionAnnotationsResponse.attributeTypeMap = [

];
exports.RedactionAnnotationsResponse = RedactionAnnotationsResponse;
//# sourceMappingURL=redactionAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Rotation = void 0;
var Rotation;

@@ -5,0 +4,0 @@ (function (Rotation) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Row = void 0;
class Row {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.Row = Row;
Row.discriminator = undefined;

@@ -69,2 +67,3 @@ Row.attributeTypeMap = [

];
exports.Row = Row;
//# sourceMappingURL=row.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RowRecognized = void 0;
class RowRecognized {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.RowRecognized = RowRecognized;
RowRecognized.discriminator = undefined;

@@ -24,2 +22,3 @@ RowRecognized.attributeTypeMap = [

];
exports.RowRecognized = RowRecognized;
//# sourceMappingURL=rowRecognized.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ScreenAnnotation = void 0;
const annotation_1 = require("./annotation");

@@ -10,3 +9,2 @@ class ScreenAnnotation extends annotation_1.Annotation {

}
exports.ScreenAnnotation = ScreenAnnotation;
ScreenAnnotation.discriminator = undefined;

@@ -25,2 +23,3 @@ ScreenAnnotation.attributeTypeMap = [

];
exports.ScreenAnnotation = ScreenAnnotation;
//# sourceMappingURL=screenAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ScreenAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class ScreenAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.ScreenAnnotationResponse = ScreenAnnotationResponse;
ScreenAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ ScreenAnnotationResponse.attributeTypeMap = [

];
exports.ScreenAnnotationResponse = ScreenAnnotationResponse;
//# sourceMappingURL=screenAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ScreenAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class ScreenAnnotations extends linkElement_1.LinkElement {

}
exports.ScreenAnnotations = ScreenAnnotations;
ScreenAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ ScreenAnnotations.attributeTypeMap = [

];
exports.ScreenAnnotations = ScreenAnnotations;
//# sourceMappingURL=screenAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ScreenAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class ScreenAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.ScreenAnnotationsResponse = ScreenAnnotationsResponse;
ScreenAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ ScreenAnnotationsResponse.attributeTypeMap = [

];
exports.ScreenAnnotationsResponse = ScreenAnnotationsResponse;
//# sourceMappingURL=screenAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Segment = void 0;
class Segment {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.Segment = Segment;
Segment.discriminator = undefined;

@@ -24,2 +22,3 @@ Segment.attributeTypeMap = [

];
exports.Segment = Segment;
//# sourceMappingURL=segment.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ShapeType = void 0;
var ShapeType;

@@ -5,0 +4,0 @@ (function (ShapeType) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Signature = void 0;
class Signature {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.Signature = Signature;
Signature.discriminator = undefined;

@@ -94,2 +92,3 @@ Signature.attributeTypeMap = [

];
exports.Signature = Signature;
//# sourceMappingURL=signature.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SignatureCustomAppearance = void 0;
class SignatureCustomAppearance {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.SignatureCustomAppearance = SignatureCustomAppearance;
SignatureCustomAppearance.discriminator = undefined;

@@ -74,2 +72,3 @@ SignatureCustomAppearance.attributeTypeMap = [

];
exports.SignatureCustomAppearance = SignatureCustomAppearance;
//# sourceMappingURL=signatureCustomAppearance.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SignatureField = void 0;
const formField_1 = require("./formField");

@@ -10,3 +9,2 @@ class SignatureField extends formField_1.FormField {

}
exports.SignatureField = SignatureField;
SignatureField.discriminator = undefined;

@@ -20,2 +18,3 @@ SignatureField.attributeTypeMap = [

];
exports.SignatureField = SignatureField;
//# sourceMappingURL=signatureField.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SignatureFieldResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class SignatureFieldResponse extends asposeResponse_1.AsposeResponse {

}
exports.SignatureFieldResponse = SignatureFieldResponse;
SignatureFieldResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ SignatureFieldResponse.attributeTypeMap = [

];
exports.SignatureFieldResponse = SignatureFieldResponse;
//# sourceMappingURL=signatureFieldResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SignatureFields = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class SignatureFields extends linkElement_1.LinkElement {

}
exports.SignatureFields = SignatureFields;
SignatureFields.discriminator = undefined;

@@ -20,2 +18,3 @@ SignatureFields.attributeTypeMap = [

];
exports.SignatureFields = SignatureFields;
//# sourceMappingURL=signatureFields.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SignatureFieldsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class SignatureFieldsResponse extends asposeResponse_1.AsposeResponse {

}
exports.SignatureFieldsResponse = SignatureFieldsResponse;
SignatureFieldsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ SignatureFieldsResponse.attributeTypeMap = [

];
exports.SignatureFieldsResponse = SignatureFieldsResponse;
//# sourceMappingURL=signatureFieldsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SignatureType = void 0;
var SignatureType;

@@ -5,0 +4,0 @@ (function (SignatureType) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SignatureVerifyResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class SignatureVerifyResponse extends asposeResponse_1.AsposeResponse {

}
exports.SignatureVerifyResponse = SignatureVerifyResponse;
SignatureVerifyResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ SignatureVerifyResponse.attributeTypeMap = [

];
exports.SignatureVerifyResponse = SignatureVerifyResponse;
//# sourceMappingURL=signatureVerifyResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SoundAnnotation = void 0;
const markupAnnotation_1 = require("./markupAnnotation");

@@ -10,3 +9,2 @@ class SoundAnnotation extends markupAnnotation_1.MarkupAnnotation {

}
exports.SoundAnnotation = SoundAnnotation;
SoundAnnotation.discriminator = undefined;

@@ -45,2 +43,3 @@ SoundAnnotation.attributeTypeMap = [

];
exports.SoundAnnotation = SoundAnnotation;
//# sourceMappingURL=soundAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SoundAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class SoundAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.SoundAnnotationResponse = SoundAnnotationResponse;
SoundAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ SoundAnnotationResponse.attributeTypeMap = [

];
exports.SoundAnnotationResponse = SoundAnnotationResponse;
//# sourceMappingURL=soundAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SoundAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class SoundAnnotations extends linkElement_1.LinkElement {

}
exports.SoundAnnotations = SoundAnnotations;
SoundAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ SoundAnnotations.attributeTypeMap = [

];
exports.SoundAnnotations = SoundAnnotations;
//# sourceMappingURL=soundAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SoundAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class SoundAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.SoundAnnotationsResponse = SoundAnnotationsResponse;
SoundAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ SoundAnnotationsResponse.attributeTypeMap = [

];
exports.SoundAnnotationsResponse = SoundAnnotationsResponse;
//# sourceMappingURL=soundAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SoundEncoding = void 0;
var SoundEncoding;

@@ -5,0 +4,0 @@ (function (SoundEncoding) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SoundIcon = void 0;
var SoundIcon;

@@ -5,0 +4,0 @@ (function (SoundIcon) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SplitRangePdfOptions = void 0;
class SplitRangePdfOptions {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.SplitRangePdfOptions = SplitRangePdfOptions;
SplitRangePdfOptions.discriminator = undefined;

@@ -19,2 +17,3 @@ SplitRangePdfOptions.attributeTypeMap = [

];
exports.SplitRangePdfOptions = SplitRangePdfOptions;
//# sourceMappingURL=splitRangePdfOptions.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SplitResult = void 0;
class SplitResult {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.SplitResult = SplitResult;
SplitResult.discriminator = undefined;

@@ -19,2 +17,3 @@ SplitResult.attributeTypeMap = [

];
exports.SplitResult = SplitResult;
//# sourceMappingURL=splitResult.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SplitResultDocument = void 0;
const link_1 = require("./link");

@@ -10,3 +9,2 @@ class SplitResultDocument extends link_1.Link {

}
exports.SplitResultDocument = SplitResultDocument;
SplitResultDocument.discriminator = undefined;

@@ -20,2 +18,3 @@ SplitResultDocument.attributeTypeMap = [

];
exports.SplitResultDocument = SplitResultDocument;
//# sourceMappingURL=splitResultDocument.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SplitResultResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class SplitResultResponse extends asposeResponse_1.AsposeResponse {

}
exports.SplitResultResponse = SplitResultResponse;
SplitResultResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ SplitResultResponse.attributeTypeMap = [

];
exports.SplitResultResponse = SplitResultResponse;
//# sourceMappingURL=splitResultResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SquareAnnotation = void 0;
const commonFigureAnnotation_1 = require("./commonFigureAnnotation");

@@ -10,5 +9,5 @@ class SquareAnnotation extends commonFigureAnnotation_1.CommonFigureAnnotation {

}
exports.SquareAnnotation = SquareAnnotation;
SquareAnnotation.discriminator = undefined;
SquareAnnotation.attributeTypeMap = [];
exports.SquareAnnotation = SquareAnnotation;
//# sourceMappingURL=squareAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SquareAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class SquareAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.SquareAnnotationResponse = SquareAnnotationResponse;
SquareAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ SquareAnnotationResponse.attributeTypeMap = [

];
exports.SquareAnnotationResponse = SquareAnnotationResponse;
//# sourceMappingURL=squareAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SquareAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class SquareAnnotations extends linkElement_1.LinkElement {

}
exports.SquareAnnotations = SquareAnnotations;
SquareAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ SquareAnnotations.attributeTypeMap = [

];
exports.SquareAnnotations = SquareAnnotations;
//# sourceMappingURL=squareAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SquareAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class SquareAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.SquareAnnotationsResponse = SquareAnnotationsResponse;
SquareAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ SquareAnnotationsResponse.attributeTypeMap = [

];
exports.SquareAnnotationsResponse = SquareAnnotationsResponse;
//# sourceMappingURL=squareAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SquigglyAnnotation = void 0;
const markupAnnotation_1 = require("./markupAnnotation");

@@ -10,3 +9,2 @@ class SquigglyAnnotation extends markupAnnotation_1.MarkupAnnotation {

}
exports.SquigglyAnnotation = SquigglyAnnotation;
SquigglyAnnotation.discriminator = undefined;

@@ -20,2 +18,3 @@ SquigglyAnnotation.attributeTypeMap = [

];
exports.SquigglyAnnotation = SquigglyAnnotation;
//# sourceMappingURL=squigglyAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SquigglyAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class SquigglyAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.SquigglyAnnotationResponse = SquigglyAnnotationResponse;
SquigglyAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ SquigglyAnnotationResponse.attributeTypeMap = [

];
exports.SquigglyAnnotationResponse = SquigglyAnnotationResponse;
//# sourceMappingURL=squigglyAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SquigglyAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class SquigglyAnnotations extends linkElement_1.LinkElement {

}
exports.SquigglyAnnotations = SquigglyAnnotations;
SquigglyAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ SquigglyAnnotations.attributeTypeMap = [

];
exports.SquigglyAnnotations = SquigglyAnnotations;
//# sourceMappingURL=squigglyAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SquigglyAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class SquigglyAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.SquigglyAnnotationsResponse = SquigglyAnnotationsResponse;
SquigglyAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ SquigglyAnnotationsResponse.attributeTypeMap = [

];
exports.SquigglyAnnotationsResponse = SquigglyAnnotationsResponse;
//# sourceMappingURL=squigglyAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Stamp = void 0;
class Stamp {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.Stamp = Stamp;
Stamp.discriminator = undefined;

@@ -124,2 +122,3 @@ Stamp.attributeTypeMap = [

];
exports.Stamp = Stamp;
//# sourceMappingURL=stamp.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StampAnnotation = void 0;
const markupAnnotation_1 = require("./markupAnnotation");

@@ -10,3 +9,2 @@ class StampAnnotation extends markupAnnotation_1.MarkupAnnotation {

}
exports.StampAnnotation = StampAnnotation;
StampAnnotation.discriminator = undefined;

@@ -30,2 +28,3 @@ StampAnnotation.attributeTypeMap = [

];
exports.StampAnnotation = StampAnnotation;
//# sourceMappingURL=stampAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StampAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class StampAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.StampAnnotationResponse = StampAnnotationResponse;
StampAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ StampAnnotationResponse.attributeTypeMap = [

];
exports.StampAnnotationResponse = StampAnnotationResponse;
//# sourceMappingURL=stampAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StampAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class StampAnnotations extends linkElement_1.LinkElement {

}
exports.StampAnnotations = StampAnnotations;
StampAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ StampAnnotations.attributeTypeMap = [

];
exports.StampAnnotations = StampAnnotations;
//# sourceMappingURL=stampAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StampAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class StampAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.StampAnnotationsResponse = StampAnnotationsResponse;
StampAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ StampAnnotationsResponse.attributeTypeMap = [

];
exports.StampAnnotationsResponse = StampAnnotationsResponse;
//# sourceMappingURL=stampAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StampBase = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class StampBase extends linkElement_1.LinkElement {

}
exports.StampBase = StampBase;
StampBase.discriminator = undefined;

@@ -55,2 +53,3 @@ StampBase.attributeTypeMap = [

];
exports.StampBase = StampBase;
//# sourceMappingURL=stampBase.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StampIcon = void 0;
var StampIcon;

@@ -5,0 +4,0 @@ (function (StampIcon) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StampInfo = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class StampInfo extends linkElement_1.LinkElement {

}
exports.StampInfo = StampInfo;
StampInfo.discriminator = undefined;

@@ -50,2 +48,3 @@ StampInfo.attributeTypeMap = [

];
exports.StampInfo = StampInfo;
//# sourceMappingURL=stampInfo.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StampsInfo = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class StampsInfo extends linkElement_1.LinkElement {

}
exports.StampsInfo = StampsInfo;
StampsInfo.discriminator = undefined;

@@ -20,2 +18,3 @@ StampsInfo.attributeTypeMap = [

];
exports.StampsInfo = StampsInfo;
//# sourceMappingURL=stampsInfo.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StampsInfoResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class StampsInfoResponse extends asposeResponse_1.AsposeResponse {

}
exports.StampsInfoResponse = StampsInfoResponse;
StampsInfoResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ StampsInfoResponse.attributeTypeMap = [

];
exports.StampsInfoResponse = StampsInfoResponse;
//# sourceMappingURL=stampsInfoResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StampType = void 0;
var StampType;

@@ -5,0 +4,0 @@ (function (StampType) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StorageExist = void 0;
class StorageExist {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.StorageExist = StorageExist;
StorageExist.discriminator = undefined;

@@ -19,2 +17,3 @@ StorageExist.attributeTypeMap = [

];
exports.StorageExist = StorageExist;
//# sourceMappingURL=storageExist.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StorageFile = void 0;
class StorageFile {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.StorageFile = StorageFile;
StorageFile.discriminator = undefined;

@@ -39,2 +37,3 @@ StorageFile.attributeTypeMap = [

];
exports.StorageFile = StorageFile;
//# sourceMappingURL=storageFile.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StrikeOutAnnotation = void 0;
const markupAnnotation_1 = require("./markupAnnotation");

@@ -10,3 +9,2 @@ class StrikeOutAnnotation extends markupAnnotation_1.MarkupAnnotation {

}
exports.StrikeOutAnnotation = StrikeOutAnnotation;
StrikeOutAnnotation.discriminator = undefined;

@@ -20,2 +18,3 @@ StrikeOutAnnotation.attributeTypeMap = [

];
exports.StrikeOutAnnotation = StrikeOutAnnotation;
//# sourceMappingURL=strikeOutAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StrikeOutAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class StrikeOutAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.StrikeOutAnnotationResponse = StrikeOutAnnotationResponse;
StrikeOutAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ StrikeOutAnnotationResponse.attributeTypeMap = [

];
exports.StrikeOutAnnotationResponse = StrikeOutAnnotationResponse;
//# sourceMappingURL=strikeOutAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StrikeOutAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class StrikeOutAnnotations extends linkElement_1.LinkElement {

}
exports.StrikeOutAnnotations = StrikeOutAnnotations;
StrikeOutAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ StrikeOutAnnotations.attributeTypeMap = [

];
exports.StrikeOutAnnotations = StrikeOutAnnotations;
//# sourceMappingURL=strikeOutAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StrikeOutAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class StrikeOutAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.StrikeOutAnnotationsResponse = StrikeOutAnnotationsResponse;
StrikeOutAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ StrikeOutAnnotationsResponse.attributeTypeMap = [

];
exports.StrikeOutAnnotationsResponse = StrikeOutAnnotationsResponse;
//# sourceMappingURL=strikeOutAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Table = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class Table extends linkElement_1.LinkElement {

}
exports.Table = Table;
Table.discriminator = undefined;

@@ -130,2 +128,3 @@ Table.attributeTypeMap = [

];
exports.Table = Table;
//# sourceMappingURL=table.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TableBroken = void 0;
var TableBroken;

@@ -5,0 +4,0 @@ (function (TableBroken) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TableRecognized = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class TableRecognized extends linkElement_1.LinkElement {

}
exports.TableRecognized = TableRecognized;
TableRecognized.discriminator = undefined;

@@ -35,2 +33,3 @@ TableRecognized.attributeTypeMap = [

];
exports.TableRecognized = TableRecognized;
//# sourceMappingURL=tableRecognized.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TableRecognizedResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class TableRecognizedResponse extends asposeResponse_1.AsposeResponse {

}
exports.TableRecognizedResponse = TableRecognizedResponse;
TableRecognizedResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ TableRecognizedResponse.attributeTypeMap = [

];
exports.TableRecognizedResponse = TableRecognizedResponse;
//# sourceMappingURL=tableRecognizedResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TablesRecognized = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class TablesRecognized extends linkElement_1.LinkElement {

}
exports.TablesRecognized = TablesRecognized;
TablesRecognized.discriminator = undefined;

@@ -20,2 +18,3 @@ TablesRecognized.attributeTypeMap = [

];
exports.TablesRecognized = TablesRecognized;
//# sourceMappingURL=tablesRecognized.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TablesRecognizedResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class TablesRecognizedResponse extends asposeResponse_1.AsposeResponse {

}
exports.TablesRecognizedResponse = TablesRecognizedResponse;
TablesRecognizedResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ TablesRecognizedResponse.attributeTypeMap = [

];
exports.TablesRecognizedResponse = TablesRecognizedResponse;
//# sourceMappingURL=tablesRecognizedResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextAnnotation = void 0;
const markupAnnotation_1 = require("./markupAnnotation");

@@ -10,3 +9,2 @@ class TextAnnotation extends markupAnnotation_1.MarkupAnnotation {

}
exports.TextAnnotation = TextAnnotation;
TextAnnotation.discriminator = undefined;

@@ -30,2 +28,3 @@ TextAnnotation.attributeTypeMap = [

];
exports.TextAnnotation = TextAnnotation;
//# sourceMappingURL=textAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class TextAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.TextAnnotationResponse = TextAnnotationResponse;
TextAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ TextAnnotationResponse.attributeTypeMap = [

];
exports.TextAnnotationResponse = TextAnnotationResponse;
//# sourceMappingURL=textAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class TextAnnotations extends linkElement_1.LinkElement {

}
exports.TextAnnotations = TextAnnotations;
TextAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ TextAnnotations.attributeTypeMap = [

];
exports.TextAnnotations = TextAnnotations;
//# sourceMappingURL=textAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class TextAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.TextAnnotationsResponse = TextAnnotationsResponse;
TextAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ TextAnnotationsResponse.attributeTypeMap = [

];
exports.TextAnnotationsResponse = TextAnnotationsResponse;
//# sourceMappingURL=textAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextBoxField = void 0;
const formField_1 = require("./formField");

@@ -10,3 +9,2 @@ class TextBoxField extends formField_1.FormField {

}
exports.TextBoxField = TextBoxField;
TextBoxField.discriminator = undefined;

@@ -45,2 +43,3 @@ TextBoxField.attributeTypeMap = [

];
exports.TextBoxField = TextBoxField;
//# sourceMappingURL=textBoxField.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextBoxFieldResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class TextBoxFieldResponse extends asposeResponse_1.AsposeResponse {

}
exports.TextBoxFieldResponse = TextBoxFieldResponse;
TextBoxFieldResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ TextBoxFieldResponse.attributeTypeMap = [

];
exports.TextBoxFieldResponse = TextBoxFieldResponse;
//# sourceMappingURL=textBoxFieldResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextBoxFields = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class TextBoxFields extends linkElement_1.LinkElement {

}
exports.TextBoxFields = TextBoxFields;
TextBoxFields.discriminator = undefined;

@@ -20,2 +18,3 @@ TextBoxFields.attributeTypeMap = [

];
exports.TextBoxFields = TextBoxFields;
//# sourceMappingURL=textBoxFields.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextBoxFieldsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class TextBoxFieldsResponse extends asposeResponse_1.AsposeResponse {

}
exports.TextBoxFieldsResponse = TextBoxFieldsResponse;
TextBoxFieldsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ TextBoxFieldsResponse.attributeTypeMap = [

];
exports.TextBoxFieldsResponse = TextBoxFieldsResponse;
//# sourceMappingURL=textBoxFieldsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextFooter = void 0;
const stampBase_1 = require("./stampBase");

@@ -10,3 +9,2 @@ class TextFooter extends stampBase_1.StampBase {

}
exports.TextFooter = TextFooter;
TextFooter.discriminator = undefined;

@@ -45,2 +43,3 @@ TextFooter.attributeTypeMap = [

];
exports.TextFooter = TextFooter;
//# sourceMappingURL=textFooter.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextHeader = void 0;
const stampBase_1 = require("./stampBase");

@@ -10,3 +9,2 @@ class TextHeader extends stampBase_1.StampBase {

}
exports.TextHeader = TextHeader;
TextHeader.discriminator = undefined;

@@ -45,2 +43,3 @@ TextHeader.attributeTypeMap = [

];
exports.TextHeader = TextHeader;
//# sourceMappingURL=textHeader.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextHorizontalAlignment = void 0;
var TextHorizontalAlignment;

@@ -5,0 +4,0 @@ (function (TextHorizontalAlignment) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextIcon = void 0;
var TextIcon;

@@ -5,0 +4,0 @@ (function (TextIcon) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextLine = void 0;
class TextLine {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.TextLine = TextLine;
TextLine.discriminator = undefined;

@@ -24,2 +22,3 @@ TextLine.attributeTypeMap = [

];
exports.TextLine = TextLine;
//# sourceMappingURL=textLine.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextRect = void 0;
class TextRect {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.TextRect = TextRect;
TextRect.discriminator = undefined;

@@ -54,2 +52,3 @@ TextRect.attributeTypeMap = [

];
exports.TextRect = TextRect;
//# sourceMappingURL=textRect.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextRects = void 0;
class TextRects {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.TextRects = TextRects;
TextRects.discriminator = undefined;

@@ -19,2 +17,3 @@ TextRects.attributeTypeMap = [

];
exports.TextRects = TextRects;
//# sourceMappingURL=textRects.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextRectsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class TextRectsResponse extends asposeResponse_1.AsposeResponse {

}
exports.TextRectsResponse = TextRectsResponse;
TextRectsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ TextRectsResponse.attributeTypeMap = [

];
exports.TextRectsResponse = TextRectsResponse;
//# sourceMappingURL=textRectsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextReplace = void 0;
class TextReplace {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.TextReplace = TextReplace;
TextReplace.discriminator = undefined;

@@ -44,2 +42,3 @@ TextReplace.attributeTypeMap = [

];
exports.TextReplace = TextReplace;
//# sourceMappingURL=textReplace.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextReplaceListRequest = void 0;
class TextReplaceListRequest {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.TextReplaceListRequest = TextReplaceListRequest;
TextReplaceListRequest.discriminator = undefined;

@@ -34,2 +32,3 @@ TextReplaceListRequest.attributeTypeMap = [

];
exports.TextReplaceListRequest = TextReplaceListRequest;
//# sourceMappingURL=textReplaceListRequest.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextReplaceResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class TextReplaceResponse extends asposeResponse_1.AsposeResponse {

}
exports.TextReplaceResponse = TextReplaceResponse;
TextReplaceResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ TextReplaceResponse.attributeTypeMap = [

];
exports.TextReplaceResponse = TextReplaceResponse;
//# sourceMappingURL=textReplaceResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextStamp = void 0;
const stampBase_1 = require("./stampBase");

@@ -10,3 +9,2 @@ class TextStamp extends stampBase_1.StampBase {

}
exports.TextStamp = TextStamp;
TextStamp.discriminator = undefined;

@@ -55,2 +53,3 @@ TextStamp.attributeTypeMap = [

];
exports.TextStamp = TextStamp;
//# sourceMappingURL=textStamp.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextState = void 0;
class TextState {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.TextState = TextState;
TextState.discriminator = undefined;

@@ -64,2 +62,3 @@ TextState.attributeTypeMap = [

];
exports.TextState = TextState;
//# sourceMappingURL=textState.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextStyle = void 0;
class TextStyle {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.TextStyle = TextStyle;
TextStyle.discriminator = undefined;

@@ -39,2 +37,3 @@ TextStyle.attributeTypeMap = [

];
exports.TextStyle = TextStyle;
//# sourceMappingURL=textStyle.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TimestampSettings = void 0;
class TimestampSettings {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.TimestampSettings = TimestampSettings;
TimestampSettings.discriminator = undefined;

@@ -24,2 +22,3 @@ TimestampSettings.attributeTypeMap = [

];
exports.TimestampSettings = TimestampSettings;
//# sourceMappingURL=timestampSettings.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnderlineAnnotation = void 0;
const markupAnnotation_1 = require("./markupAnnotation");

@@ -10,3 +9,2 @@ class UnderlineAnnotation extends markupAnnotation_1.MarkupAnnotation {

}
exports.UnderlineAnnotation = UnderlineAnnotation;
UnderlineAnnotation.discriminator = undefined;

@@ -20,2 +18,3 @@ UnderlineAnnotation.attributeTypeMap = [

];
exports.UnderlineAnnotation = UnderlineAnnotation;
//# sourceMappingURL=underlineAnnotation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnderlineAnnotationResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class UnderlineAnnotationResponse extends asposeResponse_1.AsposeResponse {

}
exports.UnderlineAnnotationResponse = UnderlineAnnotationResponse;
UnderlineAnnotationResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ UnderlineAnnotationResponse.attributeTypeMap = [

];
exports.UnderlineAnnotationResponse = UnderlineAnnotationResponse;
//# sourceMappingURL=underlineAnnotationResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnderlineAnnotations = void 0;
const linkElement_1 = require("./linkElement");

@@ -10,3 +9,2 @@ class UnderlineAnnotations extends linkElement_1.LinkElement {

}
exports.UnderlineAnnotations = UnderlineAnnotations;
UnderlineAnnotations.discriminator = undefined;

@@ -20,2 +18,3 @@ UnderlineAnnotations.attributeTypeMap = [

];
exports.UnderlineAnnotations = UnderlineAnnotations;
//# sourceMappingURL=underlineAnnotations.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnderlineAnnotationsResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class UnderlineAnnotationsResponse extends asposeResponse_1.AsposeResponse {

}
exports.UnderlineAnnotationsResponse = UnderlineAnnotationsResponse;
UnderlineAnnotationsResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ UnderlineAnnotationsResponse.attributeTypeMap = [

];
exports.UnderlineAnnotationsResponse = UnderlineAnnotationsResponse;
//# sourceMappingURL=underlineAnnotationsResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.VerticalAlignment = void 0;
var VerticalAlignment;

@@ -5,0 +4,0 @@ (function (VerticalAlignment) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.WordCount = void 0;
class WordCount {

@@ -9,3 +8,2 @@ static getAttributeTypeMap() {

}
exports.WordCount = WordCount;
WordCount.discriminator = undefined;

@@ -19,2 +17,3 @@ WordCount.attributeTypeMap = [

];
exports.WordCount = WordCount;
//# sourceMappingURL=wordCount.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.WordCountResponse = void 0;
const asposeResponse_1 = require("./asposeResponse");

@@ -10,3 +9,2 @@ class WordCountResponse extends asposeResponse_1.AsposeResponse {

}
exports.WordCountResponse = WordCountResponse;
WordCountResponse.discriminator = undefined;

@@ -20,2 +18,3 @@ WordCountResponse.attributeTypeMap = [

];
exports.WordCountResponse = WordCountResponse;
//# sourceMappingURL=wordCountResponse.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.WrapMode = void 0;
var WrapMode;

@@ -5,0 +4,0 @@ (function (WrapMode) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ObjectSerializer = void 0;
const annotationFlags_1 = require("./models/annotationFlags");

@@ -5,0 +4,0 @@ const annotationState_1 = require("./models/annotationState");

@@ -1,2 +0,1 @@

/// <reference types="node" />
import request = require("request");

@@ -3,0 +2,0 @@ import { Configuration } from "./configuration";

"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());

@@ -12,3 +11,2 @@ });

Object.defineProperty(exports, "__esModule", { value: true });
exports.addQueryParameterToUrl = exports.invokeApiMethod = void 0;
const objectSerializer_1 = require("./objectSerializer");

@@ -69,3 +67,3 @@ var superagent = require("superagent");

sa.set("x-aspose-client", "nodejs sdk");
sa.set("x-aspose-client-version", "24.7.0");
sa.set("x-aspose-client-version", "24.7.0");
if (!requestOptions.headers) {

@@ -72,0 +70,0 @@ requestOptions.headers = {};

@@ -98,3 +98,3 @@ /**

sa.set("x-aspose-client", "nodejs sdk");
sa.set("x-aspose-client-version", "24.7.0");
sa.set("x-aspose-client-version", "24.8.0");

@@ -101,0 +101,0 @@ if (!requestOptions.headers) {

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc