(
config: ProtectionConfigView,
explicitAddress?: string,
)
| 127 | } |
| 128 | |
| 129 | updateProtection( |
| 130 | config: ProtectionConfigView, |
| 131 | explicitAddress?: string, |
| 132 | ): Promise<ProtectionConfigView> { |
| 133 | return this.sdk.agents.replaceProtection(this.resolveAddress(explicitAddress), config); |
| 134 | } |
| 135 | |
| 136 | async deleteAgent(explicitAddress?: string): Promise<string> { |
| 137 | const address = this.resolveAddress(explicitAddress); |
no test coverage detected