ng-qubee 3.4.0 → 3.5.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/README.md +3 -2
- package/fesm2022/ng-qubee.mjs +582 -105
- package/fesm2022/ng-qubee.mjs.map +1 -1
- package/package.json +3 -1
- package/types/ng-qubee.d.ts +50 -20
package/README.md
CHANGED
|
@@ -13,8 +13,8 @@ NgQubee is a query builder for Angular. Compose your API requests without re-inv
|
|
|
13
13
|
|
|
14
14
|
- Reactive — URIs emitted as RxJS observables, state held in Angular Signals
|
|
15
15
|
- Pagination ready — typed `PaginatedCollection`, fluent navigation (`nextPage`, `lastPage`, `goToPage`)
|
|
16
|
-
- Test-driven —
|
|
17
|
-
- **Multi-driver support**: JSON:API, Laravel (pagination-only), Spatie Query Builder, NestJS (`nestjs-paginate`), PostgREST / Supabase, and Strapi
|
|
16
|
+
- Test-driven — 550+ specs
|
|
17
|
+
- **Multi-driver support**: Django REST Framework, JSON:API, Laravel (pagination-only), Spatie Query Builder, NestJS (`nestjs-paginate`), PostgREST / Supabase, and Strapi
|
|
18
18
|
|
|
19
19
|
## 📚 Documentation
|
|
20
20
|
|
|
@@ -39,6 +39,7 @@ A driver **must** be specified in the configuration:
|
|
|
39
39
|
|
|
40
40
|
| Driver | Backend | Wire format snapshot |
|
|
41
41
|
|---|---|---|
|
|
42
|
+
| **DRF** | [Django REST Framework](https://www.django-rest-framework.org/) + [django-filter](https://django-filter.readthedocs.io/) | `field=value`, `field__gte=N`, `ordering=-field`, `page=N&page_size=M` |
|
|
42
43
|
| **JSON:API** | Any [JSON:API](https://jsonapi.org/format/)-compliant backend | `filter[field]=value`, `sort=-field`, `page[number]=N&page[size]=N` |
|
|
43
44
|
| **Laravel** | Plain Laravel pagination | `limit=N&page=N` (pagination only) |
|
|
44
45
|
| **Spatie** | [Spatie Laravel Query Builder](https://spatie.be/docs/laravel-query-builder) | `filter[field]=value`, `sort=-field` |
|