Skip to content

Deprecations

This page explains deprecated and legacy-supported APIs in practical terms.

Current deprecated public API

Nexus.listPopComunities

Status: deprecated but still supported.

Use the correctly spelled Nexus.listPopCommunities instead.

The historical misspelling Nexus.listPopComunities remains available for backward compatibility. It should not be used in new code.

Compatibility rule

Deprecated does not mean removed.

For dblurt, a deprecated API remains callable until there is a deliberate maintainer decision to remove it in a future compatibility-breaking release. New documentation and examples should use the replacement API.

Overload guidance

Nexus methods with pagination or observer context may support both legacy positional signatures and newer option-object signatures.

New code should prefer option-object forms when available because they keep query state together:

ts
await client.nexus.getRankedPosts({
  sort: 'trending',
  tag: 'blurt',
  limit: 10,
  observer: null
});

Existing positional signatures remain compatibility surfaces unless a future release intentionally changes that policy.

Related API details: