@useparagon/connect 2.1.0 → 2.1.1-experimental-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.
@@ -382,9 +382,9 @@ export declare class InstallFlow {
382
382
  private readonly paragon;
383
383
  private startOptions;
384
384
  private integrationName;
385
- private accountType;
386
- private preOptions;
387
- private postOptions;
385
+ private accountTypeValue;
386
+ private preOptionsValue;
387
+ private postOptionsValue;
388
388
  private credentialId;
389
389
  constructor(paragon: ConnectSDK);
390
390
  start(integrationName: string, startOptions?: StartOptions): void;
@@ -398,11 +398,13 @@ export declare class InstallFlow {
398
398
  private requiresAccountType;
399
399
  private requiresPreOptions;
400
400
  private requiresPostOptions;
401
+ /** Starts an OAuth authentication flow through a window Pop-up */
402
+ private handleOAuth;
401
403
  setAccountType(accountType: string): Promise<void>;
402
404
  setPreOptions(options: Record<string, ConnectInputValue>): Promise<void>;
403
405
  setPostOptions(options: Record<string, ConnectInputValue>): Promise<void>;
404
- getAccountType(): string | null;
405
- getPreOptions(): Record<string, ConnectInputValue> | null;
406
- getPostOptions(): Record<string, ConnectInputValue> | null;
406
+ getAccountTypeValue(): string | null;
407
+ getPreOptionsValue(): Record<string, ConnectInputValue> | null;
408
+ getPostOptionsValue(): Record<string, ConnectInputValue> | null;
407
409
  next(): InstallFlowStage;
408
410
  }