Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2024-12-09 17:47:54 +00:00
parent aab34601c1
commit d853bec339
3889 changed files with 146268 additions and 299 deletions

View file

@ -2,6 +2,14 @@
* Options to control cache upload
*/
export interface UploadOptions {
/**
* Indicates whether to use the Azure Blob SDK to download caches
* that are stored on Azure Blob Storage to improve reliability and
* performance
*
* @default false
*/
useAzureSdk?: boolean;
/**
* Number of parallel cache upload
*
@ -14,6 +22,10 @@ export interface UploadOptions {
* @default 32MB
*/
uploadChunkSize?: number;
/**
* Archive size in bytes
*/
archiveSizeBytes?: number;
}
/**
* Options to control cache download