@quantidia/sdk 1.1.4 → 1.1.5

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.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -43,6 +43,7 @@ Add the script tag before your app code. The SDK exposes `window.Quantidia` once
43
43
  baseUrl: "https://YOUR_QUANTIDIA_URL/integration",
44
44
  apiBase: "https://YOUR_QUANTIDIA_URL",
45
45
  view: "full", // "full" | "restricted" | "gateway"
46
+ flow: "SSO_SIGN",
46
47
  quantidiaJava: {
47
48
  force: false,
48
49
  certificates: "https://localhost:9895/rest/certificates",
@@ -177,6 +178,7 @@ init({
177
178
  baseUrl: "https://YOUR_QUANTIDIA_URL/integration",
178
179
  apiBase: "https://YOUR_QUANTIDIA_URL",
179
180
  view: "full", // "full" | "restricted" | "gateway"
181
+ flow: "SSO_SIGN",
180
182
  quantidiaJava: {
181
183
  force: false,
182
184
  certificates: "https://localhost:9895/rest/certificates",
@@ -190,6 +192,7 @@ init({
190
192
  | `baseUrl` | `string` | Yes | Base URL of the signing integration endpoint |
191
193
  | `apiBase` | `string` | Yes | Base URL of the API (without path) |
192
194
  | `view` | `string` | No | Signing UI view mode (`"full"` default) |
195
+ | `flow` | `string` | No (recommended) | Which SDK flow to run. Currently only `"SSO_SIGN"` (login + sign, today's only flow) exists |
193
196
  | `quantidiaJava` | `object` | No | Local Nexu / Quantidia Java configuration |
194
197
  | `quantidiaJava.force` | `boolean` | No | Always route signing through the local Java agent |
195
198
  | `quantidiaJava.certificates` | `string` | No | Local agent certificates endpoint |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantidia/sdk",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "Quantidia SDK for digital signature integrations (Fortify, Nexu, cloud signing)",
5
5
  "type": "module",
6
6
  "main": "./dist/quantidia-sdk.cjs",