@simprints/simface-sdk 0.16.1 → 0.17.1

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.
@@ -1,11 +1,11 @@
1
1
  /** Configuration for the SimFace SDK. */
2
2
  export interface SimFaceConfig {
3
- /** Base URL of the SimFace API backend. */
4
- apiUrl: string;
5
3
  /** Unique identifier for the project. */
6
4
  projectId: string;
7
5
  /** Short-lived API credential for authentication. Do not hardcode long-lived secrets into public client bundles. */
8
6
  apiKey: string;
7
+ /** Optional base URL of the SimFace API backend. Defaults to the hosted SimFace backend. */
8
+ apiUrl?: string;
9
9
  }
10
10
  /** Result of an enrollment operation. */
11
11
  export interface EnrollResult {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simprints/simface-sdk",
3
- "version": "0.16.1",
3
+ "version": "0.17.1",
4
4
  "simprints:releaseMajorVersion": "0",
5
5
  "description": "SimFace facial recognition SDK for web-based KYC workflows",
6
6
  "license": "MIT",