/** * Credential form rendering, shared across every product that consumes * wspace-integrations-svc. * * A provider's authentication methods, and the fields each one needs, are data * the service sends down. This module is the single renderer for that data — * so adding a provider, or a new way of authenticating against one, is a * catalog change rather than React in each consuming app. */ export { SchemaForm, parseFormSchema, isSchemaComplete, initialValuesFromSchema, visibleValues, } from './SchemaForm'; export { AuthMethodSelector, AuthMethodNotice } from './AuthMethodSelector'; export type { AuthMethodFlow, AuthMethodLike, FormSchema, SchemaProperty, } from './types'; //# sourceMappingURL=index.d.ts.map