Pinecone TypeScript SDK - v9.0.0
    Preparing search index...

    Type Alias FullTextSearchStringField

    FullTextSearchStringField: StringField

    A string field indexed for full-text search.

    fullTextSearch is what makes the field searchable, so it is required. Pass an empty object to accept the text analysis defaults, or set options explicitly.

    import type { FullTextSearchStringField } from '@pinecone-database/pinecone';

    const field: FullTextSearchStringField = {
    type: 'string',
    fullTextSearch: {},
    };