Integration App React - v2.21.0
    Preparing search index...

    Interface WorkspaceElementSpec

    interface WorkspaceElementSpec {
        type: WorkspaceElementType;
        apiPath: string;
        name: string;
        namePlural: string;
        createSchema?: ZodObject<
            any,
            UnknownKeysParam,
            ZodTypeAny,
            { [key: string]: any },
            { [key: string]: any },
        >;
        updateSchema?: ZodObject<
            any,
            UnknownKeysParam,
            ZodTypeAny,
            { [key: string]: any },
            { [key: string]: any },
        >;
    }
    Index

    Properties

    apiPath: string
    name: string
    namePlural: string
    createSchema?: ZodObject<
        any,
        UnknownKeysParam,
        ZodTypeAny,
        { [key: string]: any },
        { [key: string]: any },
    >
    updateSchema?: ZodObject<
        any,
        UnknownKeysParam,
        ZodTypeAny,
        { [key: string]: any },
        { [key: string]: any },
    >