@makehq/sdk
    Preparing search index...

    Type Alias CredentialSelection

    CredentialSelection: CredentialSelectionBase & (
        | { appEndpoints?: string[]; appModules: string[] }
        | { appEndpoints: string[]; appModules?: string[] }
    )

    Represents an app/module selection to derive credentials from. At least one of appModules or appEndpoints must be specified (both may be provided together).

    Type declaration

    • { appEndpoints?: string[]; appModules: string[] }
      • OptionalappEndpoints?: string[]

        Array of Endpoint Names that the credential will be used to access. Use ["*"] to select all endpoints.

      • appModules: string[]

        Array of module IDs to include. Use ["*"] to select all modules with credentials.

    • { appEndpoints: string[]; appModules?: string[] }
      • appEndpoints: string[]

        Array of Endpoint Names that the credential will be used to access. Use ["*"] to select all endpoints.

      • OptionalappModules?: string[]

        Array of module IDs to include. Use ["*"] to select all modules with credentials.