@ironsoftware/ironpdf 2023.11.2 → 2024.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/internal/IronPdfEngine.ProtoFiles/.gitignore +5 -1
- package/src/internal/IronPdfEngine.ProtoFiles/iron_pdf_service.proto +17 -0
- package/src/internal/IronPdfEngine.ProtoFiles/pdfium_annotation.proto +53 -0
- package/src/internal/IronPdfEngine.ProtoFiles/pdfium_font.proto +209 -0
- package/src/internal/IronPdfEngine.ProtoFiles/pdfium_pdf_document.proto +7 -8
- package/src/internal/access.d.ts.map +1 -1
- package/src/internal/access.js +10 -2
- package/src/internal/access.js.map +1 -1
- package/src/internal/access.ts +10 -2
- package/src/internal/generated_proto/iron_pdf_service.d.ts +35 -0
- package/src/internal/generated_proto/iron_pdf_service.d.ts.map +1 -1
- package/src/internal/generated_proto/iron_pdf_service.ts +35 -0
- package/src/internal/generated_proto/ironpdfengineproto/IronPdfService.d.ts +168 -0
- package/src/internal/generated_proto/ironpdfengineproto/IronPdfService.d.ts.map +1 -1
- package/src/internal/generated_proto/ironpdfengineproto/IronPdfService.ts +196 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayRequestStreamP.d.ts +20 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayRequestStreamP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayRequestStreamP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayRequestStreamP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayRequestStreamP.ts +24 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayResultP.d.ts +12 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayResultP.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValRequestP.d.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValRequestP.ts +13 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValResultP.d.ts +12 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValResultP.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameRequestP.d.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameRequestP.ts +13 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameResultP.d.ts +12 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameResultP.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAnnotationSubTypesP.d.ts +7 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAnnotationSubTypesP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAnnotationSubTypesP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAnnotationSubTypesP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAnnotationSubTypesP.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayRequestStreamP.d.ts +24 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayRequestStreamP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayRequestStreamP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayRequestStreamP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayRequestStreamP.ts +28 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayResultP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayResultP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsRequestP.d.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsRequestP.ts +13 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsResultP.d.ts +12 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsResultP.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFontInfoP.d.ts +2 -4
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFontInfoP.d.ts.map +1 -1
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFontInfoP.ts +2 -4
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsRequestP.d.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsRequestP.ts +13 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsResultP.d.ts +12 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsResultP.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtRequestP.d.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtRequestP.ts +13 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtResultP.d.ts +12 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtResultP.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameRequestP.d.ts +7 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameRequestP.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameResultP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameResultP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationCollectionP.d.ts +8 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationCollectionP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationCollectionP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationCollectionP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationCollectionP.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationP.d.ts +22 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationP.ts +25 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfDocumentConstructorStreamP.d.ts +2 -2
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfDocumentConstructorStreamP.d.ts.map +1 -1
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfDocumentConstructorStreamP.ts +2 -2
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfFreeTextAnnotationP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfFreeTextAnnotationP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfFreeTextAnnotationP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfFreeTextAnnotationP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfFreeTextAnnotationP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfLinkAnnotationP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfLinkAnnotationP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfLinkAnnotationP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfLinkAnnotationP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfLinkAnnotationP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfTextAnnotationP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfTextAnnotationP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfTextAnnotationP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfTextAnnotationP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfTextAnnotationP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayRequestStreamP.d.ts +24 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayRequestStreamP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayRequestStreamP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayRequestStreamP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayRequestStreamP.ts +28 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayResultP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayResultP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValRequestP.d.ts +12 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValRequestP.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValResultP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValResultP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameRequestP.d.ts +12 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameRequestP.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameResultP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameResultP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameRequestP.d.ts +7 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameRequestP.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameResultP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameResultP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumRequestP.d.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumRequestP.ts +13 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumResultP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumResultP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameRequestP.d.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameRequestP.ts +13 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameResultP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameResultP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumWrappedPdfAnnotationP.d.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumWrappedPdfAnnotationP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumWrappedPdfAnnotationP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumWrappedPdfAnnotationP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumWrappedPdfAnnotationP.ts +18 -0
- package/src/internal/grpc_layer/handshake.d.ts.map +1 -1
- package/src/internal/grpc_layer/handshake.js +5 -1
- package/src/internal/grpc_layer/handshake.js.map +1 -1
- package/src/internal/grpc_layer/handshake.ts +5 -1
- package/src/internal/grpc_layer/pdfium/compress.d.ts +1 -0
- package/src/internal/grpc_layer/pdfium/compress.d.ts.map +1 -1
- package/src/internal/grpc_layer/pdfium/compress.js +20 -1
- package/src/internal/grpc_layer/pdfium/compress.js.map +1 -1
- package/src/internal/grpc_layer/pdfium/compress.ts +33 -6
- package/src/internal/grpc_layer/pdfium/io.d.ts +2 -1
- package/src/internal/grpc_layer/pdfium/io.d.ts.map +1 -1
- package/src/internal/grpc_layer/pdfium/io.js +3 -0
- package/src/internal/grpc_layer/pdfium/io.js.map +1 -1
- package/src/internal/grpc_layer/pdfium/io.ts +15 -13
- package/src/public/pdfDocument.d.ts +16 -3
- package/src/public/pdfDocument.d.ts.map +1 -1
- package/src/public/pdfDocument.js +27 -6
- package/src/public/pdfDocument.js.map +1 -1
- package/src/public/pdfDocument.ts +41 -16
- package/src/public/types.d.ts +5 -0
- package/src/public/types.d.ts.map +1 -1
- package/src/public/types.js +7 -1
- package/src/public/types.js.map +1 -1
- package/src/public/types.ts +6 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_annotation.proto
|
|
2
|
+
|
|
3
|
+
import type { PdfiumWrappedPdfAnnotationP as _ironpdfengineproto_PdfiumWrappedPdfAnnotationP, PdfiumWrappedPdfAnnotationP__Output as _ironpdfengineproto_PdfiumWrappedPdfAnnotationP__Output } from '../ironpdfengineproto/PdfiumWrappedPdfAnnotationP';
|
|
4
|
+
|
|
5
|
+
export interface PdfiumPdfAnnotationCollectionP {
|
|
6
|
+
'annotations'?: (_ironpdfengineproto_PdfiumWrappedPdfAnnotationP)[];
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export interface PdfiumPdfAnnotationCollectionP__Output {
|
|
10
|
+
'annotations'?: (_ironpdfengineproto_PdfiumWrappedPdfAnnotationP__Output)[];
|
|
11
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { PdfiumAnnotationSubTypesP as _ironpdfengineproto_PdfiumAnnotationSubTypesP, PdfiumAnnotationSubTypesP__Output as _ironpdfengineproto_PdfiumAnnotationSubTypesP__Output } from '../ironpdfengineproto/PdfiumAnnotationSubTypesP';
|
|
2
|
+
export interface PdfiumPdfAnnotationP {
|
|
3
|
+
'subtype'?: (_ironpdfengineproto_PdfiumAnnotationSubTypesP | null);
|
|
4
|
+
'x'?: (number | string);
|
|
5
|
+
'y'?: (number | string);
|
|
6
|
+
'width'?: (number | string);
|
|
7
|
+
'height'?: (number | string);
|
|
8
|
+
'contents'?: (string);
|
|
9
|
+
'name'?: (string);
|
|
10
|
+
'_contents'?: "contents";
|
|
11
|
+
'_name'?: "name";
|
|
12
|
+
}
|
|
13
|
+
export interface PdfiumPdfAnnotationP__Output {
|
|
14
|
+
'subtype'?: (_ironpdfengineproto_PdfiumAnnotationSubTypesP__Output);
|
|
15
|
+
'x'?: (number);
|
|
16
|
+
'y'?: (number);
|
|
17
|
+
'width'?: (number);
|
|
18
|
+
'height'?: (number);
|
|
19
|
+
'contents'?: (string);
|
|
20
|
+
'name'?: (string);
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=PdfiumPdfAnnotationP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumPdfAnnotationP.d.ts","sourceRoot":"","sources":["PdfiumPdfAnnotationP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,yBAAyB,IAAI,6CAA6C,EAAE,iCAAiC,IAAI,qDAAqD,EAAE,MAAM,iDAAiD,CAAC;AAE9O,MAAM,WAAW,oBAAoB;IACnC,SAAS,CAAC,EAAE,CAAC,6CAA6C,GAAG,IAAI,CAAC,CAAC;IACnE,GAAG,CAAC,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;IACxB,GAAG,CAAC,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;IACxB,OAAO,CAAC,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;IAC5B,QAAQ,CAAC,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;IAC7B,UAAU,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACtB,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IAClB,WAAW,CAAC,EAAE,UAAU,CAAC;IACzB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,4BAA4B;IAC3C,SAAS,CAAC,EAAE,CAAC,qDAAqD,CAAC,CAAC;IACpE,GAAG,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACf,GAAG,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACf,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACnB,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACpB,UAAU,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACtB,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACnB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumPdfAnnotationP.js","sourceRoot":"","sources":["PdfiumPdfAnnotationP.ts"],"names":[],"mappings":";AAAA,+EAA+E"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_annotation.proto
|
|
2
|
+
|
|
3
|
+
import type { PdfiumAnnotationSubTypesP as _ironpdfengineproto_PdfiumAnnotationSubTypesP, PdfiumAnnotationSubTypesP__Output as _ironpdfengineproto_PdfiumAnnotationSubTypesP__Output } from '../ironpdfengineproto/PdfiumAnnotationSubTypesP';
|
|
4
|
+
|
|
5
|
+
export interface PdfiumPdfAnnotationP {
|
|
6
|
+
'subtype'?: (_ironpdfengineproto_PdfiumAnnotationSubTypesP | null);
|
|
7
|
+
'x'?: (number | string);
|
|
8
|
+
'y'?: (number | string);
|
|
9
|
+
'width'?: (number | string);
|
|
10
|
+
'height'?: (number | string);
|
|
11
|
+
'contents'?: (string);
|
|
12
|
+
'name'?: (string);
|
|
13
|
+
'_contents'?: "contents";
|
|
14
|
+
'_name'?: "name";
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface PdfiumPdfAnnotationP__Output {
|
|
18
|
+
'subtype'?: (_ironpdfengineproto_PdfiumAnnotationSubTypesP__Output);
|
|
19
|
+
'x'?: (number);
|
|
20
|
+
'y'?: (number);
|
|
21
|
+
'width'?: (number);
|
|
22
|
+
'height'?: (number);
|
|
23
|
+
'contents'?: (string);
|
|
24
|
+
'name'?: (string);
|
|
25
|
+
}
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfDocumentConstructorStreamP.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
export interface _ironpdfengineproto_PdfiumPdfDocumentConstructorStreamP_InfoP {
|
|
3
3
|
'userPassword'?: (string);
|
|
4
4
|
'ownerPassword'?: (string);
|
|
5
|
-
'trackChanges'?: (
|
|
5
|
+
'trackChanges'?: (number);
|
|
6
6
|
'_userPassword'?: "userPassword";
|
|
7
7
|
'_ownerPassword'?: "ownerPassword";
|
|
8
8
|
'_trackChanges'?: "trackChanges";
|
|
@@ -10,7 +10,7 @@ export interface _ironpdfengineproto_PdfiumPdfDocumentConstructorStreamP_InfoP {
|
|
|
10
10
|
export interface _ironpdfengineproto_PdfiumPdfDocumentConstructorStreamP_InfoP__Output {
|
|
11
11
|
'userPassword'?: (string);
|
|
12
12
|
'ownerPassword'?: (string);
|
|
13
|
-
'trackChanges'?: (
|
|
13
|
+
'trackChanges'?: (number);
|
|
14
14
|
}
|
|
15
15
|
export interface PdfiumPdfDocumentConstructorStreamP {
|
|
16
16
|
'info'?: (_ironpdfengineproto_PdfiumPdfDocumentConstructorStreamP_InfoP | null);
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfDocumentConstructorStreamP.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PdfiumPdfDocumentConstructorStreamP.d.ts","sourceRoot":"","sources":["PdfiumPdfDocumentConstructorStreamP.ts"],"names":[],"mappings":";AAGA,MAAM,WAAW,6DAA6D;IAC5E,cAAc,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IAC1B,eAAe,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IAC3B,cAAc,CAAC,EAAE,CAAC,
|
|
1
|
+
{"version":3,"file":"PdfiumPdfDocumentConstructorStreamP.d.ts","sourceRoot":"","sources":["PdfiumPdfDocumentConstructorStreamP.ts"],"names":[],"mappings":";AAGA,MAAM,WAAW,6DAA6D;IAC5E,cAAc,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IAC1B,eAAe,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IAC3B,cAAc,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IAC1B,eAAe,CAAC,EAAE,cAAc,CAAC;IACjC,gBAAgB,CAAC,EAAE,eAAe,CAAC;IACnC,eAAe,CAAC,EAAE,cAAc,CAAC;CAClC;AAED,MAAM,WAAW,qEAAqE;IACpF,cAAc,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IAC1B,eAAe,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IAC3B,cAAc,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CAC3B;AAED,MAAM,WAAW,mCAAmC;IAClD,MAAM,CAAC,EAAE,CAAC,6DAA6D,GAAG,IAAI,CAAC,CAAC;IAChF,eAAe,CAAC,EAAE,CAAC,MAAM,GAAG,UAAU,GAAG,MAAM,CAAC,CAAC;IACjD,SAAS,CAAC,EAAE,MAAM,GAAC,eAAe,CAAC;CACpC;AAED,MAAM,WAAW,2CAA2C;IAC1D,MAAM,CAAC,EAAE,CAAC,qEAAqE,CAAC,CAAC;IACjF,eAAe,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CAC5B"}
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfDocumentConstructorStreamP.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
export interface _ironpdfengineproto_PdfiumPdfDocumentConstructorStreamP_InfoP {
|
|
5
5
|
'userPassword'?: (string);
|
|
6
6
|
'ownerPassword'?: (string);
|
|
7
|
-
'trackChanges'?: (
|
|
7
|
+
'trackChanges'?: (number);
|
|
8
8
|
'_userPassword'?: "userPassword";
|
|
9
9
|
'_ownerPassword'?: "ownerPassword";
|
|
10
10
|
'_trackChanges'?: "trackChanges";
|
|
@@ -13,7 +13,7 @@ export interface _ironpdfengineproto_PdfiumPdfDocumentConstructorStreamP_InfoP {
|
|
|
13
13
|
export interface _ironpdfengineproto_PdfiumPdfDocumentConstructorStreamP_InfoP__Output {
|
|
14
14
|
'userPassword'?: (string);
|
|
15
15
|
'ownerPassword'?: (string);
|
|
16
|
-
'trackChanges'?: (
|
|
16
|
+
'trackChanges'?: (number);
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
export interface PdfiumPdfDocumentConstructorStreamP {
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { PdfiumPdfAnnotationP as _ironpdfengineproto_PdfiumPdfAnnotationP, PdfiumPdfAnnotationP__Output as _ironpdfengineproto_PdfiumPdfAnnotationP__Output } from '../ironpdfengineproto/PdfiumPdfAnnotationP';
|
|
2
|
+
export interface PdfiumPdfFreeTextAnnotationP {
|
|
3
|
+
'annotation'?: (_ironpdfengineproto_PdfiumPdfAnnotationP | null);
|
|
4
|
+
'appearance'?: (string);
|
|
5
|
+
'_appearance'?: "appearance";
|
|
6
|
+
}
|
|
7
|
+
export interface PdfiumPdfFreeTextAnnotationP__Output {
|
|
8
|
+
'annotation'?: (_ironpdfengineproto_PdfiumPdfAnnotationP__Output);
|
|
9
|
+
'appearance'?: (string);
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=PdfiumPdfFreeTextAnnotationP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumPdfFreeTextAnnotationP.d.ts","sourceRoot":"","sources":["PdfiumPdfFreeTextAnnotationP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,oBAAoB,IAAI,wCAAwC,EAAE,4BAA4B,IAAI,gDAAgD,EAAE,MAAM,4CAA4C,CAAC;AAErN,MAAM,WAAW,4BAA4B;IAC3C,YAAY,CAAC,EAAE,CAAC,wCAAwC,GAAG,IAAI,CAAC,CAAC;IACjE,YAAY,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACxB,aAAa,CAAC,EAAE,YAAY,CAAC;CAC9B;AAED,MAAM,WAAW,oCAAoC;IACnD,YAAY,CAAC,EAAE,CAAC,gDAAgD,CAAC,CAAC;IAClE,YAAY,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACzB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumPdfFreeTextAnnotationP.js","sourceRoot":"","sources":["PdfiumPdfFreeTextAnnotationP.ts"],"names":[],"mappings":";AAAA,+EAA+E"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_annotation.proto
|
|
2
|
+
|
|
3
|
+
import type { PdfiumPdfAnnotationP as _ironpdfengineproto_PdfiumPdfAnnotationP, PdfiumPdfAnnotationP__Output as _ironpdfengineproto_PdfiumPdfAnnotationP__Output } from '../ironpdfengineproto/PdfiumPdfAnnotationP';
|
|
4
|
+
|
|
5
|
+
export interface PdfiumPdfFreeTextAnnotationP {
|
|
6
|
+
'annotation'?: (_ironpdfengineproto_PdfiumPdfAnnotationP | null);
|
|
7
|
+
'appearance'?: (string);
|
|
8
|
+
'_appearance'?: "appearance";
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface PdfiumPdfFreeTextAnnotationP__Output {
|
|
12
|
+
'annotation'?: (_ironpdfengineproto_PdfiumPdfAnnotationP__Output);
|
|
13
|
+
'appearance'?: (string);
|
|
14
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { PdfiumPdfAnnotationP as _ironpdfengineproto_PdfiumPdfAnnotationP, PdfiumPdfAnnotationP__Output as _ironpdfengineproto_PdfiumPdfAnnotationP__Output } from '../ironpdfengineproto/PdfiumPdfAnnotationP';
|
|
2
|
+
export interface PdfiumPdfLinkAnnotationP {
|
|
3
|
+
'annotation'?: (_ironpdfengineproto_PdfiumPdfAnnotationP | null);
|
|
4
|
+
'dest'?: (string);
|
|
5
|
+
'_dest'?: "dest";
|
|
6
|
+
}
|
|
7
|
+
export interface PdfiumPdfLinkAnnotationP__Output {
|
|
8
|
+
'annotation'?: (_ironpdfengineproto_PdfiumPdfAnnotationP__Output);
|
|
9
|
+
'dest'?: (string);
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=PdfiumPdfLinkAnnotationP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumPdfLinkAnnotationP.d.ts","sourceRoot":"","sources":["PdfiumPdfLinkAnnotationP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,oBAAoB,IAAI,wCAAwC,EAAE,4BAA4B,IAAI,gDAAgD,EAAE,MAAM,4CAA4C,CAAC;AAErN,MAAM,WAAW,wBAAwB;IACvC,YAAY,CAAC,EAAE,CAAC,wCAAwC,GAAG,IAAI,CAAC,CAAC;IACjE,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,gCAAgC;IAC/C,YAAY,CAAC,EAAE,CAAC,gDAAgD,CAAC,CAAC;IAClE,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACnB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumPdfLinkAnnotationP.js","sourceRoot":"","sources":["PdfiumPdfLinkAnnotationP.ts"],"names":[],"mappings":";AAAA,+EAA+E"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_annotation.proto
|
|
2
|
+
|
|
3
|
+
import type { PdfiumPdfAnnotationP as _ironpdfengineproto_PdfiumPdfAnnotationP, PdfiumPdfAnnotationP__Output as _ironpdfengineproto_PdfiumPdfAnnotationP__Output } from '../ironpdfengineproto/PdfiumPdfAnnotationP';
|
|
4
|
+
|
|
5
|
+
export interface PdfiumPdfLinkAnnotationP {
|
|
6
|
+
'annotation'?: (_ironpdfengineproto_PdfiumPdfAnnotationP | null);
|
|
7
|
+
'dest'?: (string);
|
|
8
|
+
'_dest'?: "dest";
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface PdfiumPdfLinkAnnotationP__Output {
|
|
12
|
+
'annotation'?: (_ironpdfengineproto_PdfiumPdfAnnotationP__Output);
|
|
13
|
+
'dest'?: (string);
|
|
14
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { PdfiumPdfAnnotationP as _ironpdfengineproto_PdfiumPdfAnnotationP, PdfiumPdfAnnotationP__Output as _ironpdfengineproto_PdfiumPdfAnnotationP__Output } from '../ironpdfengineproto/PdfiumPdfAnnotationP';
|
|
2
|
+
export interface PdfiumPdfTextAnnotationP {
|
|
3
|
+
'annotation'?: (_ironpdfengineproto_PdfiumPdfAnnotationP | null);
|
|
4
|
+
'state'?: (string);
|
|
5
|
+
'_state'?: "state";
|
|
6
|
+
}
|
|
7
|
+
export interface PdfiumPdfTextAnnotationP__Output {
|
|
8
|
+
'annotation'?: (_ironpdfengineproto_PdfiumPdfAnnotationP__Output);
|
|
9
|
+
'state'?: (string);
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=PdfiumPdfTextAnnotationP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumPdfTextAnnotationP.d.ts","sourceRoot":"","sources":["PdfiumPdfTextAnnotationP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,oBAAoB,IAAI,wCAAwC,EAAE,4BAA4B,IAAI,gDAAgD,EAAE,MAAM,4CAA4C,CAAC;AAErN,MAAM,WAAW,wBAAwB;IACvC,YAAY,CAAC,EAAE,CAAC,wCAAwC,GAAG,IAAI,CAAC,CAAC;IACjE,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,gCAAgC;IAC/C,YAAY,CAAC,EAAE,CAAC,gDAAgD,CAAC,CAAC;IAClE,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACpB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumPdfTextAnnotationP.js","sourceRoot":"","sources":["PdfiumPdfTextAnnotationP.ts"],"names":[],"mappings":";AAAA,+EAA+E"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_annotation.proto
|
|
2
|
+
|
|
3
|
+
import type { PdfiumPdfAnnotationP as _ironpdfengineproto_PdfiumPdfAnnotationP, PdfiumPdfAnnotationP__Output as _ironpdfengineproto_PdfiumPdfAnnotationP__Output } from '../ironpdfengineproto/PdfiumPdfAnnotationP';
|
|
4
|
+
|
|
5
|
+
export interface PdfiumPdfTextAnnotationP {
|
|
6
|
+
'annotation'?: (_ironpdfengineproto_PdfiumPdfAnnotationP | null);
|
|
7
|
+
'state'?: (string);
|
|
8
|
+
'_state'?: "state";
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface PdfiumPdfTextAnnotationP__Output {
|
|
12
|
+
'annotation'?: (_ironpdfengineproto_PdfiumPdfAnnotationP__Output);
|
|
13
|
+
'state'?: (string);
|
|
14
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import type { PdfDocumentP as _ironpdfengineproto_PdfDocumentP, PdfDocumentP__Output as _ironpdfengineproto_PdfDocumentP__Output } from '../ironpdfengineproto/PdfDocumentP';
|
|
3
|
+
export interface _ironpdfengineproto_PdfiumReplaceFontViaByteArrayRequestStreamP_InfoP {
|
|
4
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP | null);
|
|
5
|
+
'fontObjNum'?: (number);
|
|
6
|
+
'fontBytesSize'?: (number);
|
|
7
|
+
'replaceAsType'?: (number);
|
|
8
|
+
}
|
|
9
|
+
export interface _ironpdfengineproto_PdfiumReplaceFontViaByteArrayRequestStreamP_InfoP__Output {
|
|
10
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP__Output);
|
|
11
|
+
'fontObjNum'?: (number);
|
|
12
|
+
'fontBytesSize'?: (number);
|
|
13
|
+
'replaceAsType'?: (number);
|
|
14
|
+
}
|
|
15
|
+
export interface PdfiumReplaceFontViaByteArrayRequestStreamP {
|
|
16
|
+
'info'?: (_ironpdfengineproto_PdfiumReplaceFontViaByteArrayRequestStreamP_InfoP | null);
|
|
17
|
+
'fontBytesChunk'?: (Buffer | Uint8Array | string);
|
|
18
|
+
'request'?: "info" | "fontBytesChunk";
|
|
19
|
+
}
|
|
20
|
+
export interface PdfiumReplaceFontViaByteArrayRequestStreamP__Output {
|
|
21
|
+
'info'?: (_ironpdfengineproto_PdfiumReplaceFontViaByteArrayRequestStreamP_InfoP__Output);
|
|
22
|
+
'fontBytesChunk'?: (Buffer);
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=PdfiumReplaceFontViaByteArrayRequestStreamP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumReplaceFontViaByteArrayRequestStreamP.d.ts","sourceRoot":"","sources":["PdfiumReplaceFontViaByteArrayRequestStreamP.ts"],"names":[],"mappings":";AAEA,OAAO,KAAK,EAAE,YAAY,IAAI,gCAAgC,EAAE,oBAAoB,IAAI,wCAAwC,EAAE,MAAM,oCAAoC,CAAC;AAE7K,MAAM,WAAW,qEAAqE;IACpF,UAAU,CAAC,EAAE,CAAC,gCAAgC,GAAG,IAAI,CAAC,CAAC;IACvD,YAAY,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACxB,eAAe,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IAC3B,eAAe,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CAC5B;AAED,MAAM,WAAW,6EAA6E;IAC5F,UAAU,CAAC,EAAE,CAAC,wCAAwC,CAAC,CAAC;IACxD,YAAY,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACxB,eAAe,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IAC3B,eAAe,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CAC5B;AAED,MAAM,WAAW,2CAA2C;IAC1D,MAAM,CAAC,EAAE,CAAC,qEAAqE,GAAG,IAAI,CAAC,CAAC;IACxF,gBAAgB,CAAC,EAAE,CAAC,MAAM,GAAG,UAAU,GAAG,MAAM,CAAC,CAAC;IAClD,SAAS,CAAC,EAAE,MAAM,GAAC,gBAAgB,CAAC;CACrC;AAED,MAAM,WAAW,mDAAmD;IAClE,MAAM,CAAC,EAAE,CAAC,6EAA6E,CAAC,CAAC;IACzF,gBAAgB,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CAC7B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumReplaceFontViaByteArrayRequestStreamP.js","sourceRoot":"","sources":["PdfiumReplaceFontViaByteArrayRequestStreamP.ts"],"names":[],"mappings":";AAAA,yEAAyE"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_font.proto
|
|
2
|
+
|
|
3
|
+
import type { PdfDocumentP as _ironpdfengineproto_PdfDocumentP, PdfDocumentP__Output as _ironpdfengineproto_PdfDocumentP__Output } from '../ironpdfengineproto/PdfDocumentP';
|
|
4
|
+
|
|
5
|
+
export interface _ironpdfengineproto_PdfiumReplaceFontViaByteArrayRequestStreamP_InfoP {
|
|
6
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP | null);
|
|
7
|
+
'fontObjNum'?: (number);
|
|
8
|
+
'fontBytesSize'?: (number);
|
|
9
|
+
'replaceAsType'?: (number);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export interface _ironpdfengineproto_PdfiumReplaceFontViaByteArrayRequestStreamP_InfoP__Output {
|
|
13
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP__Output);
|
|
14
|
+
'fontObjNum'?: (number);
|
|
15
|
+
'fontBytesSize'?: (number);
|
|
16
|
+
'replaceAsType'?: (number);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export interface PdfiumReplaceFontViaByteArrayRequestStreamP {
|
|
20
|
+
'info'?: (_ironpdfengineproto_PdfiumReplaceFontViaByteArrayRequestStreamP_InfoP | null);
|
|
21
|
+
'fontBytesChunk'?: (Buffer | Uint8Array | string);
|
|
22
|
+
'request'?: "info"|"fontBytesChunk";
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export interface PdfiumReplaceFontViaByteArrayRequestStreamP__Output {
|
|
26
|
+
'info'?: (_ironpdfengineproto_PdfiumReplaceFontViaByteArrayRequestStreamP_InfoP__Output);
|
|
27
|
+
'fontBytesChunk'?: (Buffer);
|
|
28
|
+
}
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayResultP.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
2
|
+
export interface PdfiumReplaceFontViaByteArrayResultP {
|
|
3
|
+
'result'?: (number);
|
|
4
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
5
|
+
'resultOrException'?: "result" | "exception";
|
|
6
|
+
}
|
|
7
|
+
export interface PdfiumReplaceFontViaByteArrayResultP__Output {
|
|
8
|
+
'result'?: (number);
|
|
9
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=PdfiumReplaceFontViaByteArrayResultP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumReplaceFontViaByteArrayResultP.d.ts","sourceRoot":"","sources":["PdfiumReplaceFontViaByteArrayResultP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,gBAAgB,IAAI,oCAAoC,EAAE,wBAAwB,IAAI,4CAA4C,EAAE,MAAM,wCAAwC,CAAC;AAEjM,MAAM,WAAW,oCAAoC;IACnD,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACpB,WAAW,CAAC,EAAE,CAAC,oCAAoC,GAAG,IAAI,CAAC,CAAC;IAC5D,mBAAmB,CAAC,EAAE,QAAQ,GAAC,WAAW,CAAC;CAC5C;AAED,MAAM,WAAW,4CAA4C;IAC3D,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACpB,WAAW,CAAC,EAAE,CAAC,4CAA4C,CAAC,CAAC;CAC9D"}
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayResultP.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumReplaceFontViaByteArrayResultP.js","sourceRoot":"","sources":["PdfiumReplaceFontViaByteArrayResultP.ts"],"names":[],"mappings":";AAAA,yEAAyE"}
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayResultP.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_font.proto
|
|
2
|
+
|
|
3
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
4
|
+
|
|
5
|
+
export interface PdfiumReplaceFontViaByteArrayResultP {
|
|
6
|
+
'result'?: (number);
|
|
7
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
8
|
+
'resultOrException'?: "result"|"exception";
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface PdfiumReplaceFontViaByteArrayResultP__Output {
|
|
12
|
+
'result'?: (number);
|
|
13
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
14
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { PdfDocumentP as _ironpdfengineproto_PdfDocumentP, PdfDocumentP__Output as _ironpdfengineproto_PdfDocumentP__Output } from '../ironpdfengineproto/PdfDocumentP';
|
|
2
|
+
export interface PdfiumReplaceFontViaStandardFontEnumValRequestP {
|
|
3
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP | null);
|
|
4
|
+
'fontObjNum'?: (number);
|
|
5
|
+
'standardFontEnumVal'?: (number);
|
|
6
|
+
}
|
|
7
|
+
export interface PdfiumReplaceFontViaStandardFontEnumValRequestP__Output {
|
|
8
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP__Output);
|
|
9
|
+
'fontObjNum'?: (number);
|
|
10
|
+
'standardFontEnumVal'?: (number);
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=PdfiumReplaceFontViaStandardFontEnumValRequestP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumReplaceFontViaStandardFontEnumValRequestP.d.ts","sourceRoot":"","sources":["PdfiumReplaceFontViaStandardFontEnumValRequestP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,IAAI,gCAAgC,EAAE,oBAAoB,IAAI,wCAAwC,EAAE,MAAM,oCAAoC,CAAC;AAE7K,MAAM,WAAW,+CAA+C;IAC9D,UAAU,CAAC,EAAE,CAAC,gCAAgC,GAAG,IAAI,CAAC,CAAC;IACvD,YAAY,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACxB,qBAAqB,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CAClC;AAED,MAAM,WAAW,uDAAuD;IACtE,UAAU,CAAC,EAAE,CAAC,wCAAwC,CAAC,CAAC;IACxD,YAAY,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACxB,qBAAqB,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CAClC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumReplaceFontViaStandardFontEnumValRequestP.js","sourceRoot":"","sources":["PdfiumReplaceFontViaStandardFontEnumValRequestP.ts"],"names":[],"mappings":";AAAA,yEAAyE"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_font.proto
|
|
2
|
+
|
|
3
|
+
import type { PdfDocumentP as _ironpdfengineproto_PdfDocumentP, PdfDocumentP__Output as _ironpdfengineproto_PdfDocumentP__Output } from '../ironpdfengineproto/PdfDocumentP';
|
|
4
|
+
|
|
5
|
+
export interface PdfiumReplaceFontViaStandardFontEnumValRequestP {
|
|
6
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP | null);
|
|
7
|
+
'fontObjNum'?: (number);
|
|
8
|
+
'standardFontEnumVal'?: (number);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface PdfiumReplaceFontViaStandardFontEnumValRequestP__Output {
|
|
12
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP__Output);
|
|
13
|
+
'fontObjNum'?: (number);
|
|
14
|
+
'standardFontEnumVal'?: (number);
|
|
15
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
2
|
+
export interface PdfiumReplaceFontViaStandardFontEnumValResultP {
|
|
3
|
+
'result'?: (number);
|
|
4
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
5
|
+
'resultOrException'?: "result" | "exception";
|
|
6
|
+
}
|
|
7
|
+
export interface PdfiumReplaceFontViaStandardFontEnumValResultP__Output {
|
|
8
|
+
'result'?: (number);
|
|
9
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=PdfiumReplaceFontViaStandardFontEnumValResultP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumReplaceFontViaStandardFontEnumValResultP.d.ts","sourceRoot":"","sources":["PdfiumReplaceFontViaStandardFontEnumValResultP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,gBAAgB,IAAI,oCAAoC,EAAE,wBAAwB,IAAI,4CAA4C,EAAE,MAAM,wCAAwC,CAAC;AAEjM,MAAM,WAAW,8CAA8C;IAC7D,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACpB,WAAW,CAAC,EAAE,CAAC,oCAAoC,GAAG,IAAI,CAAC,CAAC;IAC5D,mBAAmB,CAAC,EAAE,QAAQ,GAAC,WAAW,CAAC;CAC5C;AAED,MAAM,WAAW,sDAAsD;IACrE,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACpB,WAAW,CAAC,EAAE,CAAC,4CAA4C,CAAC,CAAC;CAC9D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumReplaceFontViaStandardFontEnumValResultP.js","sourceRoot":"","sources":["PdfiumReplaceFontViaStandardFontEnumValResultP.ts"],"names":[],"mappings":";AAAA,yEAAyE"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_font.proto
|
|
2
|
+
|
|
3
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
4
|
+
|
|
5
|
+
export interface PdfiumReplaceFontViaStandardFontEnumValResultP {
|
|
6
|
+
'result'?: (number);
|
|
7
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
8
|
+
'resultOrException'?: "result"|"exception";
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface PdfiumReplaceFontViaStandardFontEnumValResultP__Output {
|
|
12
|
+
'result'?: (number);
|
|
13
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
14
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { PdfDocumentP as _ironpdfengineproto_PdfDocumentP, PdfDocumentP__Output as _ironpdfengineproto_PdfDocumentP__Output } from '../ironpdfengineproto/PdfDocumentP';
|
|
2
|
+
export interface PdfiumReplaceFontViaStandardFontNameRequestP {
|
|
3
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP | null);
|
|
4
|
+
'fontObjNum'?: (number);
|
|
5
|
+
'standardFontName'?: (string);
|
|
6
|
+
}
|
|
7
|
+
export interface PdfiumReplaceFontViaStandardFontNameRequestP__Output {
|
|
8
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP__Output);
|
|
9
|
+
'fontObjNum'?: (number);
|
|
10
|
+
'standardFontName'?: (string);
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=PdfiumReplaceFontViaStandardFontNameRequestP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumReplaceFontViaStandardFontNameRequestP.d.ts","sourceRoot":"","sources":["PdfiumReplaceFontViaStandardFontNameRequestP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,IAAI,gCAAgC,EAAE,oBAAoB,IAAI,wCAAwC,EAAE,MAAM,oCAAoC,CAAC;AAE7K,MAAM,WAAW,4CAA4C;IAC3D,UAAU,CAAC,EAAE,CAAC,gCAAgC,GAAG,IAAI,CAAC,CAAC;IACvD,YAAY,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACxB,kBAAkB,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CAC/B;AAED,MAAM,WAAW,oDAAoD;IACnE,UAAU,CAAC,EAAE,CAAC,wCAAwC,CAAC,CAAC;IACxD,YAAY,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACxB,kBAAkB,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CAC/B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumReplaceFontViaStandardFontNameRequestP.js","sourceRoot":"","sources":["PdfiumReplaceFontViaStandardFontNameRequestP.ts"],"names":[],"mappings":";AAAA,yEAAyE"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_font.proto
|
|
2
|
+
|
|
3
|
+
import type { PdfDocumentP as _ironpdfengineproto_PdfDocumentP, PdfDocumentP__Output as _ironpdfengineproto_PdfDocumentP__Output } from '../ironpdfengineproto/PdfDocumentP';
|
|
4
|
+
|
|
5
|
+
export interface PdfiumReplaceFontViaStandardFontNameRequestP {
|
|
6
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP | null);
|
|
7
|
+
'fontObjNum'?: (number);
|
|
8
|
+
'standardFontName'?: (string);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface PdfiumReplaceFontViaStandardFontNameRequestP__Output {
|
|
12
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP__Output);
|
|
13
|
+
'fontObjNum'?: (number);
|
|
14
|
+
'standardFontName'?: (string);
|
|
15
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
2
|
+
export interface PdfiumReplaceFontViaStandardFontNameResultP {
|
|
3
|
+
'result'?: (number);
|
|
4
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
5
|
+
'resultOrException'?: "result" | "exception";
|
|
6
|
+
}
|
|
7
|
+
export interface PdfiumReplaceFontViaStandardFontNameResultP__Output {
|
|
8
|
+
'result'?: (number);
|
|
9
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=PdfiumReplaceFontViaStandardFontNameResultP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumReplaceFontViaStandardFontNameResultP.d.ts","sourceRoot":"","sources":["PdfiumReplaceFontViaStandardFontNameResultP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,gBAAgB,IAAI,oCAAoC,EAAE,wBAAwB,IAAI,4CAA4C,EAAE,MAAM,wCAAwC,CAAC;AAEjM,MAAM,WAAW,2CAA2C;IAC1D,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACpB,WAAW,CAAC,EAAE,CAAC,oCAAoC,GAAG,IAAI,CAAC,CAAC;IAC5D,mBAAmB,CAAC,EAAE,QAAQ,GAAC,WAAW,CAAC;CAC5C;AAED,MAAM,WAAW,mDAAmD;IAClE,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACpB,WAAW,CAAC,EAAE,CAAC,4CAA4C,CAAC,CAAC;CAC9D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumReplaceFontViaStandardFontNameResultP.js","sourceRoot":"","sources":["PdfiumReplaceFontViaStandardFontNameResultP.ts"],"names":[],"mappings":";AAAA,yEAAyE"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_font.proto
|
|
2
|
+
|
|
3
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
4
|
+
|
|
5
|
+
export interface PdfiumReplaceFontViaStandardFontNameResultP {
|
|
6
|
+
'result'?: (number);
|
|
7
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
8
|
+
'resultOrException'?: "result"|"exception";
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface PdfiumReplaceFontViaStandardFontNameResultP__Output {
|
|
12
|
+
'result'?: (number);
|
|
13
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumResolveStandardFontNameRequestP.d.ts","sourceRoot":"","sources":["PdfiumResolveStandardFontNameRequestP.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,qCAAqC;IACpD,UAAU,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACvB;AAED,MAAM,WAAW,6CAA6C;IAC5D,UAAU,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACvB"}
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameRequestP.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumResolveStandardFontNameRequestP.js","sourceRoot":"","sources":["PdfiumResolveStandardFontNameRequestP.ts"],"names":[],"mappings":";AAAA,yEAAyE"}
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameRequestP.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_font.proto
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
export interface PdfiumResolveStandardFontNameRequestP {
|
|
5
|
+
'fontName'?: (string);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export interface PdfiumResolveStandardFontNameRequestP__Output {
|
|
9
|
+
'fontName'?: (string);
|
|
10
|
+
}
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameResultP.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
2
|
+
export interface PdfiumResolveStandardFontNameResultP {
|
|
3
|
+
'result'?: (string);
|
|
4
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
5
|
+
'resultOrException'?: "result" | "exception";
|
|
6
|
+
}
|
|
7
|
+
export interface PdfiumResolveStandardFontNameResultP__Output {
|
|
8
|
+
'result'?: (string);
|
|
9
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=PdfiumResolveStandardFontNameResultP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumResolveStandardFontNameResultP.d.ts","sourceRoot":"","sources":["PdfiumResolveStandardFontNameResultP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,gBAAgB,IAAI,oCAAoC,EAAE,wBAAwB,IAAI,4CAA4C,EAAE,MAAM,wCAAwC,CAAC;AAEjM,MAAM,WAAW,oCAAoC;IACnD,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACpB,WAAW,CAAC,EAAE,CAAC,oCAAoC,GAAG,IAAI,CAAC,CAAC;IAC5D,mBAAmB,CAAC,EAAE,QAAQ,GAAC,WAAW,CAAC;CAC5C;AAED,MAAM,WAAW,4CAA4C;IAC3D,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACpB,WAAW,CAAC,EAAE,CAAC,4CAA4C,CAAC,CAAC;CAC9D"}
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameResultP.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumResolveStandardFontNameResultP.js","sourceRoot":"","sources":["PdfiumResolveStandardFontNameResultP.ts"],"names":[],"mappings":";AAAA,yEAAyE"}
|