internetarchive-sdk-js
    Preparing search index...

    Interface CreateItemParams

    interface CreateItemParams {
        collection: string;
        identifier: string;
        mediatype:
            | "data"
            | "collection"
            | "audio"
            | "etree"
            | "image"
            | "movies"
            | "software"
            | "texts"
            | "web";
        metadata?: Record<string, unknown>;
        upload: FileUpload;
    }
    Index

    Properties

    collection: string
    identifier: string
    mediatype:
        | "data"
        | "collection"
        | "audio"
        | "etree"
        | "image"
        | "movies"
        | "software"
        | "texts"
        | "web"
    metadata?: Record<string, unknown>
    upload: FileUpload