@incodetech/core 0.0.0-dev-20260224-1accab3 → 0.0.0-dev-20260224-8cae674

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.
@@ -18,7 +18,7 @@ type AuthenticationConfig = FlowModuleConfig['AUTHENTICATION'] & BaseFaceCapture
18
18
  type CreateAuthenticationActorOptions = {
19
19
  config: AuthenticationConfig;
20
20
  dependencies?: FaceCaptureDependencies;
21
- authHint: string;
21
+ authHint?: string;
22
22
  };
23
23
  type AuthenticationActor = ActorRefFrom<AuthenticationMachine>;
24
24
  declare function createAuthenticationActor(options: CreateAuthenticationActorOptions): AuthenticationActor;
@@ -52,7 +52,7 @@ async function uploadAuthFace(params) {
52
52
  encrypted: true,
53
53
  clientInfo: { deviceClass: getDeviceClass() },
54
54
  metadata: params.metadata ?? void 0,
55
- hint: params.authHint
55
+ ...params.authHint !== void 0 && { hint: params.authHint }
56
56
  };
57
57
  const query = {};
58
58
  if (params.recordingId) query.recordingId = params.recordingId;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@incodetech/core",
3
- "version": "0.0.0-dev-20260224-1accab3",
3
+ "version": "0.0.0-dev-20260224-8cae674",
4
4
  "type": "module",
5
5
  "main": "./dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",