import { EntryInformationSelection } from "../modules/DirectoryAbstractService/EntryInformationSelection.ta.mjs"; /** * @summary Convenience default value for EntryInformationSelection. * @description * * This seelcts all user attributes, no operational attributes, performs no * context selection, returns no contexts, and selects for contributing entries * only within a compound entry. * * ### ASN.1 Definition * * ```asn1 * EntryInformationSelection ::= SET { * attributes CHOICE { * allUserAttributes [0] NULL, * select [1] SET OF AttributeType * -- empty set implies no attributes are requested -- } DEFAULT allUserAttributes:NULL, * infoTypes [2] INTEGER { * attributeTypesOnly (0), * attributeTypesAndValues (1)} DEFAULT attributeTypesAndValues, * extraAttributes CHOICE { * allOperationalAttributes [3] NULL, * select [4] SET SIZE (1..MAX) OF AttributeType } OPTIONAL, * contextSelection ContextSelection OPTIONAL, * returnContexts BOOLEAN DEFAULT FALSE, * familyReturn FamilyReturn DEFAULT * {memberSelect contributingEntriesOnly} } * ``` * * @returns {EntryInformationSelection} * @function */ export declare const defaultEntryInformationSelection: EntryInformationSelection; export default defaultEntryInformationSelection; //# sourceMappingURL=defaultEntryInformationSelection.d.mts.map