@suluk/platform - v0.6.0
    Preparing search index...

    Interface BrandManifest

    A BRAND — thin, swappable per deployment. Carries the app identity + the brand-facing opts (→ [vars]).

    interface BrandManifest {
        name: string;
        globalBrandOpts?: Record<string, unknown>;
        brandOpts?: Record<string, Record<string, unknown>>;
        wireBrandOpts?: Record<string, Record<string, unknown>>;
    }
    Index

    Properties

    name: string

    the deployment/app name (the wrangler + package name). Differs per brand of the same system.

    globalBrandOpts?: Record<string, unknown>

    brand identity shared by every service (BRAND_NAME, baseUrl, emailFrom, …) → [vars].

    brandOpts?: Record<string, Record<string, unknown>>

    per-service brand-facing opts → [vars].

    wireBrandOpts?: Record<string, Record<string, unknown>>

    brand-tunable EDGE params keyed by wire.id (Phase 3).