• Entries larger than 250,000 characters will be chunked. Be carefull when using together with the REST API.

    Objects and arrays will be automatically stringified to be stored in AppsDb.

    Example

    import { Showpad } from '@showpad/experience-app-sdk'
    import { v4 as uuidv4 } from 'uuid'

    type Contact = {
    name: string
    surname: string
    }

    const contact: Contact = {
    name: 'John',
    surname: 'Doe'
    }

    const appsDbEntries = await Showpad.setStoreEntryValue('Contacts', uuidv4(), contact)

    Parameters

    • store: string
    • entryId: string
    • entryValue: JsonValue

      Limited to 10Mb (10,000,000 characters)

    Returns Promise<JsonValue>

Generated using TypeDoc