@incodetech/welcome 1.85.0-20251031203908.0 → 1.85.0-20251031213627.0

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.
@@ -10,6 +10,7 @@ type ProofOfAddressProps = {
10
10
  numberOfTries?: number;
11
11
  onError: (error: string) => void;
12
12
  sendBase64?: boolean;
13
+ workflowId?: string;
13
14
  };
14
- declare const ProofOfAddress: ({ onSuccess, title, subtitle, disableSkipPoa, token, numberOfTries, onError, sendBase64, }: ProofOfAddressProps) => import("react/jsx-runtime").JSX.Element;
15
+ declare const ProofOfAddress: ({ onSuccess, title, subtitle, disableSkipPoa, token, numberOfTries, onError, sendBase64, workflowId, }: ProofOfAddressProps) => import("react/jsx-runtime").JSX.Element;
15
16
  export default ProofOfAddress;
@@ -3,5 +3,5 @@ import { WorkflowModulesProps } from '../types';
3
3
  interface AddressProps extends WorkflowModulesProps {
4
4
  workflowId: string;
5
5
  }
6
- declare const Address: ({ token, goNext, config, workflowId }: AddressProps) => import("react/jsx-runtime").JSX.Element;
6
+ declare const Address: ({ token, goNext, config, workflowId, onError, }: AddressProps) => import("react/jsx-runtime").JSX.Element;
7
7
  export default Address;