@nebius/js-sdk - v0.2.54
    Preparing search index...

    Maps fully qualified protobuf names to generated runtime types and extensions.

    The SDK generator uses a registry for dynamic protobuf operations. Registering a message with an existing $type, or an enum with an existing $type, replaces the previous entry. Lookup methods return undefined when no entry exists.

    import { Registry } from '@nebius/js-sdk/runtime/protos/registry';

    const registry = new Registry();
    registry.registerExtension({
    extendee: 'google.protobuf.FieldOptions',
    fullName: 'example.sensitive',
    fieldNo: 50_001,
    name: 'sensitive',
    kind: 'scalar',
    scalarType: 8,
    });
    registry.getExtension('google.protobuf.FieldOptions', 50_001);
    Index
    • Maps fully qualified protobuf names to generated runtime types and extensions.

      The SDK generator uses a registry for dynamic protobuf operations. Registering a message with an existing $type, or an enum with an existing $type, replaces the previous entry. Lookup methods return undefined when no entry exists.

      Returns Registry