@squidcloud/client
    Preparing search index...

    Interface DiscoverDataConnectionSchemaResponse<SchemaType>

    Response from discovering a data connection schema.

    interface DiscoverDataConnectionSchemaResponse<SchemaType = Record<string, any>> {
        collectionReadiness: Record<string, CollectionReadiness>;
        schema: SchemaType;
    }

    Type Parameters

    • SchemaType = Record<string, any>
    Index

    Properties

    collectionReadiness: Record<string, CollectionReadiness>

    Information about collection readiness for CRUD operations and replication.

    schema: SchemaType

    The discovered schema containing collections, fields, associations, and stored procedures.