spartaxx.businessmodels 1.0.105 → 1.0.107

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.
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ import { ExcelExport } from "./ExcelExport";
2
+ import { FileGenConfig } from "./FileGenConfig";
3
+ import { GeneratePdfServiceParams } from "./GeneratePdfServiceParams";
4
+ import { PdfExport } from "./PdfExport";
5
+ import { PuppeteerOptions } from "./PuppeteerOptions";
6
+ import { PuppeteerOptionsMargin } from "./PuppeteerOptions";
7
+ import { RabbitMQQueueInfo } from "./RabbitMQQueueInfo";
8
+ import { TemplateCategory } from "./TemplateCategory";
9
+ import { TemplateName } from "./TemplateName";
10
+ import { TemplateType } from "./TemplateType";
11
+
12
+ export {
13
+ ExcelExport, FileGenConfig, GeneratePdfServiceParams, PdfExport, PuppeteerOptionsMargin, PuppeteerOptions,
14
+ RabbitMQQueueInfo, TemplateCategory, TemplateName, TemplateType
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ import { PuppeteerOptions } from "./PuppeteerOptions";
2
+ export interface GeneratePdfServiceParams {
3
+ HtmlTemplatePath?: string;
4
+ HtmlContent?: string;
5
+ OutputFileName?: string;
6
+ OutputFileSharedPath?: string;
7
+ OutputFileAppUrl?: string;
8
+ IsNeedBase64?: boolean;
9
+ Base64String?: string;
10
+ PuppeteerOptions?: PuppeteerOptions;
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,20 @@
1
+ export interface PuppeteerOptions {
2
+ Format?: string;
3
+ Landscape?: boolean;
4
+ Width?: string;
5
+ Height?: string;
6
+ PuppeteerOptionsMargin?: PuppeteerOptionsMargin;
7
+ PrintBackground?: boolean;
8
+ HeaderTemplate?: string;
9
+ FooterTemplate?: string;
10
+ PageRanges?: string;
11
+ preferCSSPageSize?: boolean;
12
+ }
13
+
14
+ export interface PuppeteerOptionsMargin {
15
+ Top?: string;
16
+ Right?: string;
17
+ Bottom?: string;
18
+ Left?: string;
19
+ }
20
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.105",
3
+ "version": "1.0.107",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {