@fluxfiles/node 0.1.22 → 0.1.23

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/index.d.mts CHANGED
@@ -108,6 +108,9 @@ interface BaseTokenOptions {
108
108
  /** Optional self-hosted PDF-tools URL (Stirling-PDF, or any web PDF toolkit). When set, the
109
109
  * UI shows a "PDF tools" action that embeds it (merge/split/OCR/convert/…). Free; http(s). */
110
110
  pdfToolsUrl?: string;
111
+ /** Optional self-hosted office suite URL (Collabora/OnlyOffice) for .docx/.xlsx/.pptx…. May
112
+ * carry a `{url}` placeholder the UI substitutes with the selected file's URL. Free; http(s). */
113
+ officeUrl?: string;
111
114
  /** Allow the Optimization feature (POST /api/fm/optimize) — recompress images to WebP +
112
115
  * compress PDFs. **Free/core**; default **false** because it replaces/deletes originals, so
113
116
  * it's an opt-in capability. */
package/dist/index.d.ts CHANGED
@@ -108,6 +108,9 @@ interface BaseTokenOptions {
108
108
  /** Optional self-hosted PDF-tools URL (Stirling-PDF, or any web PDF toolkit). When set, the
109
109
  * UI shows a "PDF tools" action that embeds it (merge/split/OCR/convert/…). Free; http(s). */
110
110
  pdfToolsUrl?: string;
111
+ /** Optional self-hosted office suite URL (Collabora/OnlyOffice) for .docx/.xlsx/.pptx…. May
112
+ * carry a `{url}` placeholder the UI substitutes with the selected file's URL. Free; http(s). */
113
+ officeUrl?: string;
111
114
  /** Allow the Optimization feature (POST /api/fm/optimize) — recompress images to WebP +
112
115
  * compress PDFs. **Free/core**; default **false** because it replaces/deletes originals, so
113
116
  * it's an opt-in capability. */
package/dist/index.js CHANGED
@@ -174,6 +174,7 @@ function applyTenantOverrides(payload, opts) {
174
174
  if (opts.allowTerminal !== void 0) payload.allow_terminal = !!opts.allowTerminal;
175
175
  if (opts.terminalPtyUrl) payload.terminal_pty_url = String(opts.terminalPtyUrl);
176
176
  if (opts.pdfToolsUrl) payload.pdf_tools_url = String(opts.pdfToolsUrl);
177
+ if (opts.officeUrl) payload.office_url = String(opts.officeUrl);
177
178
  if (opts.allowOptimize !== void 0) payload.allow_optimize = !!opts.allowOptimize;
178
179
  if (opts.allowShare !== void 0) payload.allow_share = !!opts.allowShare;
179
180
  if (opts.allowIntake !== void 0) payload.allow_intake = !!opts.allowIntake;
package/dist/index.mjs CHANGED
@@ -152,6 +152,7 @@ function applyTenantOverrides(payload, opts) {
152
152
  if (opts.allowTerminal !== void 0) payload.allow_terminal = !!opts.allowTerminal;
153
153
  if (opts.terminalPtyUrl) payload.terminal_pty_url = String(opts.terminalPtyUrl);
154
154
  if (opts.pdfToolsUrl) payload.pdf_tools_url = String(opts.pdfToolsUrl);
155
+ if (opts.officeUrl) payload.office_url = String(opts.officeUrl);
155
156
  if (opts.allowOptimize !== void 0) payload.allow_optimize = !!opts.allowOptimize;
156
157
  if (opts.allowShare !== void 0) payload.allow_share = !!opts.allowShare;
157
158
  if (opts.allowIntake !== void 0) payload.allow_intake = !!opts.allowIntake;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluxfiles/node",
3
- "version": "0.1.22",
3
+ "version": "0.1.23",
4
4
  "description": "Server-side Node/TypeScript SDK for minting FluxFiles JWTs (plain + BYOB), byte-compatible with the PHP core",
5
5
  "license": "MIT",
6
6
  "sideEffects": false,
package/src/token.ts CHANGED
@@ -146,6 +146,7 @@ function applyTenantOverrides(payload: Record<string, unknown>, opts: BaseTokenO
146
146
  if (opts.allowTerminal !== undefined) payload.allow_terminal = !!opts.allowTerminal;
147
147
  if (opts.terminalPtyUrl) payload.terminal_pty_url = String(opts.terminalPtyUrl);
148
148
  if (opts.pdfToolsUrl) payload.pdf_tools_url = String(opts.pdfToolsUrl);
149
+ if (opts.officeUrl) payload.office_url = String(opts.officeUrl);
149
150
  if (opts.allowOptimize !== undefined) payload.allow_optimize = !!opts.allowOptimize;
150
151
  // Other paid-module claims (inert unless the module is installed + licensed).
151
152
  if (opts.allowShare !== undefined) payload.allow_share = !!opts.allowShare;
package/src/types.ts CHANGED
@@ -112,6 +112,9 @@ export interface BaseTokenOptions {
112
112
  /** Optional self-hosted PDF-tools URL (Stirling-PDF, or any web PDF toolkit). When set, the
113
113
  * UI shows a "PDF tools" action that embeds it (merge/split/OCR/convert/…). Free; http(s). */
114
114
  pdfToolsUrl?: string;
115
+ /** Optional self-hosted office suite URL (Collabora/OnlyOffice) for .docx/.xlsx/.pptx…. May
116
+ * carry a `{url}` placeholder the UI substitutes with the selected file's URL. Free; http(s). */
117
+ officeUrl?: string;
115
118
  /** Allow the Optimization feature (POST /api/fm/optimize) — recompress images to WebP +
116
119
  * compress PDFs. **Free/core**; default **false** because it replaces/deletes originals, so
117
120
  * it's an opt-in capability. */