qdadm 0.44.0 → 0.45.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qdadm",
3
- "version": "0.44.0",
3
+ "version": "0.45.1",
4
4
  "description": "Vue 3 framework for admin dashboards with PrimeVue",
5
5
  "author": "quazardous",
6
6
  "license": "MIT",
@@ -754,7 +754,7 @@ export class EntityManager {
754
754
 
755
755
  try {
756
756
  // Fetch all items from referenced entity
757
- const { items } = await refManager.list({ limit: 1000 })
757
+ const { items } = await refManager.list({ page_size: 1000 })
758
758
 
759
759
  // Build options array
760
760
  const refLabelField = labelField || refManager.labelField || 'label'
@@ -116,7 +116,7 @@ export class EntityRoleGranterAdapter extends RoleGranterAdapter {
116
116
  }
117
117
 
118
118
  try {
119
- const { data: roles } = await manager.list({ limit: 1000 })
119
+ const { items: roles } = await manager.list({ page_size: 1000 })
120
120
 
121
121
  // Build cache
122
122
  const permissions = {}