@json-to-office/shared 3.0.0 → 3.2.0
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/dist/fonts/node.d.ts +1 -1
- package/dist/index.d.ts +37 -3
- package/dist/index.js +152 -40
- package/dist/index.js.map +1 -1
- package/dist/{types-kcQwhOlf.d.ts → types-DyQ0V9MU.d.ts} +7 -0
- package/package.json +1 -1
|
@@ -17,6 +17,13 @@ type HighchartsHeadersResolver = (body: unknown) => HighchartsHeaders | Promise<
|
|
|
17
17
|
interface HighchartsServiceConfig {
|
|
18
18
|
serverUrl?: string;
|
|
19
19
|
headers?: HighchartsHeaders | HighchartsHeadersResolver;
|
|
20
|
+
/**
|
|
21
|
+
* Allow an export server outside this machine and its private networks.
|
|
22
|
+
* A chart is posted whole — every series, label and title — so a remote
|
|
23
|
+
* server is a decision, not a default: without this, generation refuses a
|
|
24
|
+
* public URL; with it, every generation says which URL received the data.
|
|
25
|
+
*/
|
|
26
|
+
allowRemote?: boolean;
|
|
20
27
|
}
|
|
21
28
|
type PptxServiceHeaders = Record<string, string>;
|
|
22
29
|
type PptxServiceHeadersResolver = (body: unknown) => PptxServiceHeaders | Promise<PptxServiceHeaders>;
|