@plyaz/core 1.18.5 → 1.19.0

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.mjs CHANGED
@@ -15839,7 +15839,7 @@ var ExampleRepository = class _ExampleRepository extends BaseRepository {
15839
15839
  name: data.name ?? "",
15840
15840
  description: data.description ?? null,
15841
15841
  amount: data.amount ?? 0,
15842
- owner_id: data.owner_id ?? null,
15842
+ owner_id: data.owner_id ?? SYSTEM_USER_ID,
15843
15843
  status: data.status ?? "draft",
15844
15844
  is_visible: data.is_visible ?? true,
15845
15845
  created_at: now,
@@ -15853,7 +15853,7 @@ var ExampleRepository = class _ExampleRepository extends BaseRepository {
15853
15853
  name: data.name ?? "",
15854
15854
  description: data.description ?? null,
15855
15855
  amount: data.amount ?? 0,
15856
- owner_id: data.owner_id ?? null,
15856
+ owner_id: data.owner_id ?? SYSTEM_USER_ID,
15857
15857
  status: data.status ?? "draft",
15858
15858
  is_visible: data.is_visible ?? true,
15859
15859
  created_at: now,