@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Interface SyncGovernanceSuccess

    Sync processed — individual accounts may have errors

    interface SyncGovernanceSuccess {
        accounts: {
            account: AccountReference;
            status: "failed" | "synced";
            governance_agents?: { url: string; categories?: string[] }[];
            errors?: Error[];
        }[];
        context?: ContextObject;
        ext?: ExtensionObject;
    }
    Index

    Properties

    accounts: {
        account: AccountReference;
        status: "failed" | "synced";
        governance_agents?: { url: string; categories?: string[] }[];
        errors?: Error[];
    }[]

    Per-account sync results

    Type Declaration

    • account: AccountReference
    • status: "failed" | "synced"

      Sync result. synced: governance agents persisted. failed: could not complete (see errors).

    • Optionalgovernance_agents?: { url: string; categories?: string[] }[]

      Governance agents now synced on this account. Reflects the persisted state after sync.

    • Optionalerrors?: Error[]

      Per-account errors (only present when status is 'failed')

    context?: ContextObject
    ext?: ExtensionObject