@regulaforensics/idv-capture-web 3.9.471-nightly → 3.9.473-rc

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.ts CHANGED
@@ -7,7 +7,6 @@ export declare type ApiKeyConnectionConfig = {
7
7
  baseUrl: string;
8
8
  apiKey: string;
9
9
  ttl?: number;
10
- httpTimeoutMs?: number;
11
10
  };
12
11
 
13
12
  declare type AuthTokenStoreData = {
@@ -166,7 +165,6 @@ declare type ConnectionByApiKeyConfigCore = {
166
165
  deviceDescriptor: {
167
166
  ttl: number;
168
167
  };
169
- httpTimeoutMs?: number;
170
168
  };
171
169
 
172
170
  declare type ConnectionConfigCore = {
@@ -175,7 +173,6 @@ declare type ConnectionConfigCore = {
175
173
  password: string;
176
174
  port?: number;
177
175
  userName: string;
178
- httpTimeoutMs?: number;
179
176
  };
180
177
 
181
178
  export declare enum ConnectionError {
@@ -192,7 +189,6 @@ export declare type CredentialConnectionConfig = {
192
189
  baseUrl: string;
193
190
  password: string;
194
191
  userName: string;
195
- httpTimeoutMs?: number;
196
192
  };
197
193
 
198
194
  declare type CurrentScreenConfig = {
@@ -353,7 +349,6 @@ export declare const IdvEventTypesEnum: {
353
349
 
354
350
  declare class IdvFetchService {
355
351
  private _connectionTokenExpirationBufferMs;
356
- private _httpTimeoutMs;
357
352
  private _origin;
358
353
  private _apiKeyAuthToken;
359
354
  private _connectionToken;
@@ -385,8 +380,6 @@ declare class IdvFetchService {
385
380
  } | FetchErrorResult>;
386
381
  private _getAuthorizationSearchParam;
387
382
  private _getResponseTextFromBadResponse;
388
- private _applyHttpTimeout;
389
- private _getRequestSignal;
390
383
  private _httpFetch;
391
384
  private _fetchPing;
392
385
  private _fetchMe;
@@ -463,12 +456,11 @@ declare class IdvFetchService {
463
456
  data: SessionData;
464
457
  } | FetchErrorResult>;
465
458
  pushLogs(sessionId: string, pushLogsParams: PushLogsParams): Promise<Record<string, unknown>>;
466
- startIamAuth({ applicationId, baseUrl, metadata, locale, httpTimeoutMs, }: {
459
+ startIamAuth({ applicationId, baseUrl, metadata, locale, }: {
467
460
  applicationId: string;
468
461
  baseUrl: string;
469
462
  metadata?: Record<string, unknown>;
470
463
  locale?: string;
471
- httpTimeoutMs?: number;
472
464
  }): Promise<Record<string, unknown>>;
473
465
  private _postStartUpload;
474
466
  private _postFileChunk;
@@ -518,7 +510,6 @@ declare type IdvIntegrationControllerProps = {
518
510
  baseUrl: string;
519
511
  metadata?: Record<string, unknown>;
520
512
  locale?: string;
521
- httpTimeoutMs?: number;
522
513
  }) => Promise<Record<string, unknown>>;
523
514
  };
524
515
 
@@ -693,7 +684,6 @@ export declare type LoginConfig = {
693
684
  baseUrl: string;
694
685
  metadata?: Record<string, unknown>;
695
686
  locale?: string;
696
- httpTimeoutMs?: number;
697
687
  };
698
688
 
699
689
  export declare enum LoginError {
@@ -815,7 +805,6 @@ declare type StartConfig = {
815
805
  isSecure?: boolean;
816
806
  apiKey?: string;
817
807
  port?: number;
818
- httpTimeoutMs?: number;
819
808
  };
820
809
 
821
810
  export declare type StartLoginCompletion = string | BaseLoginError;
@@ -862,7 +851,6 @@ declare type Workflow = {
862
851
  id: string;
863
852
  logging?: WorkflowLogging | null;
864
853
  steps: Array<WorkflowStep>;
865
- stepTemplateIds?: string[];
866
854
  client: WorkflowClient;
867
855
  trackLocation?: boolean;
868
856
  error?: string | null;
@@ -917,7 +905,6 @@ declare class WorkflowModel implements Workflow {
917
905
  id: string;
918
906
  steps: WorkflowStepModel[];
919
907
  client: WorkflowClientModel;
920
- stepTemplateIds?: string[];
921
908
  name?: string;
922
909
  logging?: WorkflowLoggingModel | null;
923
910
  error?: string | null;