18 lines
473 B
Swift
18 lines
473 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Foundation
|
|
import Amplify
|
|
|
|
protocol AuthResetPasswordTask: AmplifyAuthTask where Request == AuthResetPasswordRequest, Success == AuthResetPasswordResult, Failure == AuthError {}
|
|
|
|
public extension HubPayload.EventName.Auth {
|
|
|
|
/// eventName for HubPayloads emitted by this operation
|
|
static let resetPasswordAPI = "Auth.resetPasswordAPI"
|
|
}
|