secure-upload-fastify-sdk 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1975,7 +1975,7 @@ async function secureUploadPluginImpl(app, options) {
1975
1975
  initRateLimit: options.rateLimit?.initPerMin ?? DEFAULTS.initRateLimit,
1976
1976
  partRateLimit: options.rateLimit?.partPerMin ?? DEFAULTS.partRateLimit,
1977
1977
  smartMaxFiles: options.rateLimit?.smartMaxFilesPerInit ?? DEFAULTS.smartMaxFiles,
1978
- smartInitRateLimit: DEFAULTS.smartInitRateLimit,
1978
+ smartInitRateLimit: options.rateLimit?.smartInitRateLimit ?? DEFAULTS.smartInitRateLimit,
1979
1979
  multipartPath: options.pathPrefix?.multipart ?? DEFAULTS.multipartPath,
1980
1980
  smartPath: options.pathPrefix?.smart ?? DEFAULTS.smartPath,
1981
1981
  fileUrlPrefix: options.fileUrlPrefix ?? DEFAULTS.fileUrlPrefix,