@flowscripter/dynamic-cli-framework
    Preparing search index...

    Interface SecretsApi

    interface SecretsApi {
        delete(options: { name: string; service: string }): Promise<boolean>;
        get(options: { name: string; service: string }): Promise<string | null>;
        set(
            options: { name: string; service: string; value: string },
        ): Promise<void>;
    }
    Index