interface BitwardenNodeParameters {
accessAll?: boolean;
additionalFields?: {
collections?: unknown[];
externalId?: string;
};
collectionId?: string;
email?: string;
filters?: {
actingUserId?: string;
end?: string;
itemID?: string;
start?: string;
};
groupId?: string;
groupIds?: string;
limit?: number;
memberId?: string;
memberIds?: string;
name?: string;
operation?: | "create"
| "get"
| "getAll"
| "update"
| "delete"
| "getMembers"
| "updateMembers"
| "getGroups"
| "updateGroups";
resource?: "event"
| "collection"
| "group"
| "member";
returnAll?: boolean;
type?: 0 | 1 | 3 | 2;
updateFields?:
| { externalId?: string; groups?: unknown[] }
| {
accessAll?: boolean;
collections?: unknown[];
externalId?: string;
name?: string;
}
| {
accessAll?: boolean;
collections?: unknown[];
externalId?: string;
type?: 0
| 1
| 3
| 2;
};
}
Properties§
Source§readonly filters?: {
actingUserId?: string;
end?: string;
itemID?: string;
start?: string;
}
readonly filters?: {
actingUserId?: string;
end?: string;
itemID?: string;
start?: string;
}
Default: {}
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 10 Type options: {"minValue":1}
Whether to allow this group to access all collections within the organization, instead of only its associated collections. If set to true, this option overrides any collection assignments.