updating-secrets - v0.3.1
    Preparing search index...

    Type Alias ProcessedSecretDefinitions

    ProcessedSecretDefinitions: {
        [SecretName in string]: {
            adapterConfig: NonNullable<Values<SecretDefinitions>["adapterConfig"]>;
            help: { description: string; whereToFind: string };
            secretName: SecretName;
            shapeDefinition: ShapeDefinition<unknown, true> | undefined;
        }
    }

    Processed secret definitions. This is what will be passed to all adapter loadSecrets methods. This type is simply a more uniform and generic version of SecretDefinitions.