@punks/backend-entity-manager 0.0.229 → 0.0.232

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/cjs/index.js CHANGED
@@ -21436,6 +21436,7 @@ exports.MediaLibraryService = class MediaLibraryService {
21436
21436
  folder = await this.mediaFolderRepository.folderCreate({
21437
21437
  name: folderName,
21438
21438
  parentId: parentFolder?.id,
21439
+ organizationId: input.organizationId,
21439
21440
  });
21440
21441
  }
21441
21442
  parentFolder = folder;
@@ -21449,6 +21450,7 @@ exports.MediaLibraryService = class MediaLibraryService {
21449
21450
  return await this.mediaFolderRepository.folderCreate({
21450
21451
  name: input.folderName,
21451
21452
  parentId: input.parentId,
21453
+ organizationId: input.organizationId,
21452
21454
  });
21453
21455
  }
21454
21456
  async folderMove(input) {