@fluxfiles/node 0.1.23 → 0.1.24

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
@@ -111,6 +111,9 @@ interface BaseTokenOptions {
111
111
  /** Optional self-hosted office suite URL (Collabora/OnlyOffice) for .docx/.xlsx/.pptx…. May
112
112
  * carry a `{url}` placeholder the UI substitutes with the selected file's URL. Free; http(s). */
113
113
  officeUrl?: string;
114
+ /** Optional self-hosted e-signature URL (DocuSeal) for signing PDFs/docs. May carry a `{url}`
115
+ * placeholder the UI substitutes with the selected file's URL. Free; http(s). */
116
+ esignUrl?: string;
114
117
  /** Allow the Optimization feature (POST /api/fm/optimize) — recompress images to WebP +
115
118
  * compress PDFs. **Free/core**; default **false** because it replaces/deletes originals, so
116
119
  * it's an opt-in capability. */
package/dist/index.d.ts CHANGED
@@ -111,6 +111,9 @@ interface BaseTokenOptions {
111
111
  /** Optional self-hosted office suite URL (Collabora/OnlyOffice) for .docx/.xlsx/.pptx…. May
112
112
  * carry a `{url}` placeholder the UI substitutes with the selected file's URL. Free; http(s). */
113
113
  officeUrl?: string;
114
+ /** Optional self-hosted e-signature URL (DocuSeal) for signing PDFs/docs. May carry a `{url}`
115
+ * placeholder the UI substitutes with the selected file's URL. Free; http(s). */
116
+ esignUrl?: string;
114
117
  /** Allow the Optimization feature (POST /api/fm/optimize) — recompress images to WebP +
115
118
  * compress PDFs. **Free/core**; default **false** because it replaces/deletes originals, so
116
119
  * it's an opt-in capability. */
package/dist/index.js CHANGED
@@ -175,6 +175,7 @@ function applyTenantOverrides(payload, opts) {
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
177
  if (opts.officeUrl) payload.office_url = String(opts.officeUrl);
178
+ if (opts.esignUrl) payload.esign_url = String(opts.esignUrl);
178
179
  if (opts.allowOptimize !== void 0) payload.allow_optimize = !!opts.allowOptimize;
179
180
  if (opts.allowShare !== void 0) payload.allow_share = !!opts.allowShare;
180
181
  if (opts.allowIntake !== void 0) payload.allow_intake = !!opts.allowIntake;
package/dist/index.mjs CHANGED
@@ -153,6 +153,7 @@ function applyTenantOverrides(payload, opts) {
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
155
  if (opts.officeUrl) payload.office_url = String(opts.officeUrl);
156
+ if (opts.esignUrl) payload.esign_url = String(opts.esignUrl);
156
157
  if (opts.allowOptimize !== void 0) payload.allow_optimize = !!opts.allowOptimize;
157
158
  if (opts.allowShare !== void 0) payload.allow_share = !!opts.allowShare;
158
159
  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.23",
3
+ "version": "0.1.24",
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
@@ -147,6 +147,7 @@ function applyTenantOverrides(payload: Record<string, unknown>, opts: BaseTokenO
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
149
  if (opts.officeUrl) payload.office_url = String(opts.officeUrl);
150
+ if (opts.esignUrl) payload.esign_url = String(opts.esignUrl);
150
151
  if (opts.allowOptimize !== undefined) payload.allow_optimize = !!opts.allowOptimize;
151
152
  // Other paid-module claims (inert unless the module is installed + licensed).
152
153
  if (opts.allowShare !== undefined) payload.allow_share = !!opts.allowShare;
package/src/types.ts CHANGED
@@ -115,6 +115,9 @@ export interface BaseTokenOptions {
115
115
  /** Optional self-hosted office suite URL (Collabora/OnlyOffice) for .docx/.xlsx/.pptx…. May
116
116
  * carry a `{url}` placeholder the UI substitutes with the selected file's URL. Free; http(s). */
117
117
  officeUrl?: string;
118
+ /** Optional self-hosted e-signature URL (DocuSeal) for signing PDFs/docs. May carry a `{url}`
119
+ * placeholder the UI substitutes with the selected file's URL. Free; http(s). */
120
+ esignUrl?: string;
118
121
  /** Allow the Optimization feature (POST /api/fm/optimize) — recompress images to WebP +
119
122
  * compress PDFs. **Free/core**; default **false** because it replaces/deletes originals, so
120
123
  * it's an opt-in capability. */