mulink 1.0.0 → 1.0.2

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.
@@ -9331,8 +9331,8 @@ var bridgeConfigSchema = zod.z.object({
9331
9331
  }).optional(),
9332
9332
  uploads: zod.z.object({
9333
9333
  enabled: zod.z.boolean(),
9334
- strategy: zod.z.enum(["standard", "external"]).default("standard"),
9335
- provider: zod.z.enum(["uploadthing", "vercel-blob", "standard"]).optional(),
9334
+ strategy: zod.z.enum(["standard", "external", "presigned"]).default("standard"),
9335
+ provider: zod.z.enum(["uploadthing", "vercel-blob", "standard", "s3", "minio"]).optional(),
9336
9336
  compression: zod.z.object({
9337
9337
  enabled: zod.z.boolean().default(false),
9338
9338
  formats: zod.z.array(zod.z.enum(["gzip", "webp", "brotli"])).optional()
@@ -9341,6 +9341,15 @@ var bridgeConfigSchema = zod.z.object({
9341
9341
  maxSize: zod.z.string().optional(),
9342
9342
  allowedTypes: zod.z.array(zod.z.string()).optional(),
9343
9343
  scan: zod.z.enum(["clamav", "none"]).optional()
9344
+ }).optional(),
9345
+ presignedUploads: zod.z.object({
9346
+ enabled: zod.z.boolean().optional(),
9347
+ presignEndpoint: zod.z.string().optional(),
9348
+ fallbackToBackend: zod.z.boolean().optional()
9349
+ }).optional(),
9350
+ progressTracking: zod.z.object({
9351
+ enabled: zod.z.boolean().optional(),
9352
+ useXHR: zod.z.boolean().optional()
9344
9353
  }).optional()
9345
9354
  }).optional(),
9346
9355
  dev: zod.z.object({
@@ -9370,7 +9379,7 @@ var ConfigurationLoader = class {
9370
9379
  }
9371
9380
  async load(configPath) {
9372
9381
  if (!configPath?.trim()) {
9373
- configPath = "link.config.json";
9382
+ configPath = "mulink.config.json";
9374
9383
  }
9375
9384
  const resolvedPath = path2__default.default.resolve(process.cwd(), configPath);
9376
9385
  try {
@@ -9479,7 +9488,7 @@ ${errorMessages}`,
9479
9488
  }
9480
9489
  async save(config, configPath) {
9481
9490
  if (!configPath?.trim()) {
9482
- configPath = "link.config.json";
9491
+ configPath = "mulink.config.json";
9483
9492
  }
9484
9493
  const resolvedPath = path2__default.default.resolve(process.cwd(), configPath);
9485
9494
  try {
@@ -9537,5 +9546,5 @@ exports.VersionChecker = VersionChecker;
9537
9546
  exports.__name = __name;
9538
9547
  exports.checkAndNotifyUpdates = checkAndNotifyUpdates;
9539
9548
  exports.createBridgeVersionChecker = createBridgeVersionChecker;
9540
- //# sourceMappingURL=chunk-F6QVO6NR.cjs.map
9541
- //# sourceMappingURL=chunk-F6QVO6NR.cjs.map
9549
+ //# sourceMappingURL=chunk-RGLCJDOY.cjs.map
9550
+ //# sourceMappingURL=chunk-RGLCJDOY.cjs.map