MapColonies Authentication
    Preparing search index...

    Interface for Bundle Content

    interface BundleContent {
        assets: {
            createdAt: Date;
            environment: ("np" | "stage" | "prod")[];
            isTemplate: boolean;
            name: string;
            type: "TEST" | "TEST_DATA" | "POLICY" | "DATA";
            uri: string;
            value: Buffer<ArrayBufferLike>;
            version: number;
        }[];
        connections: {
            allowNoBrowserConnection: boolean;
            allowNoOriginConnection: boolean;
            createdAt: Date;
            domains: string[];
            enabled: boolean;
            environment: "np"
            | "stage"
            | "prod";
            name: string;
            origins: string[];
            token: string;
            version: number;
        }[];
        environment: "np"
        | "stage"
        | "prod";
        key?: {
            environment: "np" | "stage" | "prod";
            privateKey: JWKPrivateKey;
            publicKey: JWKPublicKey;
            version: number;
        };
    }
    Index

    Properties

    assets: {
        createdAt: Date;
        environment: ("np" | "stage" | "prod")[];
        isTemplate: boolean;
        name: string;
        type: "TEST" | "TEST_DATA" | "POLICY" | "DATA";
        uri: string;
        value: Buffer<ArrayBufferLike>;
        version: number;
    }[]

    The assets of the bundle

    connections: {
        allowNoBrowserConnection: boolean;
        allowNoOriginConnection: boolean;
        createdAt: Date;
        domains: string[];
        enabled: boolean;
        environment: "np" | "stage" | "prod";
        name: string;
        origins: string[];
        token: string;
        version: number;
    }[]

    The connections of the bundle

    environment: "np" | "stage" | "prod"

    The environment of the bundle

    key?: {
        environment: "np" | "stage" | "prod";
        privateKey: JWKPrivateKey;
        publicKey: JWKPublicKey;
        version: number;
    }

    The key of the bundle