Support analytics data in user export bundle

GitOrigin-RevId: 49739297f40831cf035e2a9d4f3343a8cb2d7fdb
This commit is contained in:
John Lees-Miller
2025-11-25 09:06:20 +00:00
committed by Copybot
parent 241a4b6b03
commit b514ebcc8e
4 changed files with 39 additions and 6 deletions
@@ -160,4 +160,21 @@ module.exports = class AbstractPersistor {
name,
})
}
/**
* List objects in a directory, returning the full keys.
*
* Suitable only for directories where the number of keys is known to be small.
*
* @param {string} location
* @param {string} prefix
* @returns {Promise<Array<string>>}
*/
async listDirectoryKeys(location, prefix) {
throw new NotImplementedError('method not implemented in persistor', {
method: 'listDirectoryKeys',
location,
prefix,
})
}
}