/** * ### iOS specific * * The `PowerAuthExternalPendingOperationType` defines types of operation * started in another application that share activation data. */ export type PowerAuthExternalPendingOperationType = "ACTIVATION" | "PROTOCOL_UPGRADE"; /** * ### iOS specific * * The `PowerAuthExternalPendingOperation` interface contains data that can identify an external * application that started the critical operation. */ export interface PowerAuthExternalPendingOperation { /** * Type of operation running in another application. */ externalOperationType: PowerAuthExternalPendingOperationType; /** * Identifier of external application that started the operation. This is the same identifier * you provided to `PowerAuthSharingConfiguration` during the PowerAuth initialization. */ externalApplicationId: string; }