Brett Willis

Results 31 issues of Brett Willis

Allow a model to be configured as a subcollection of a parent model, by adding a `parentModel` option. ```JSON { "options": { "parentModel": "users" }, "attributes": { "owner": { "model":...

enhancement

Relations are stored as references in Firestore database. In some situations (when accessing the database natively, not via the Strapi API) it may be convenient to have certain values from...

enhancement

I bootstrapped this codebase from the official `strapi-connector-mongoose` package at version `3.0.0`, because I figured that, because Mongoose is also a NoSQL database, that package would be the best starting...

help wanted

https://strapi.io/documentation/v3.x/content-api/parameters.html#deep-filtering

bug

The query parameter `q` and filter parameter `filter_by` support prefix matching by default, and if enabled in the schema, the `q` parameter supports infix. However, even if `infix` is enabled...

enhancement
feature:filtering

The [`updateUser()`](https://firebase.google.com/docs/reference/admin/node/firebase-admin.auth.baseauth.md#baseauthupdateuser) and [`createUser()`](https://firebase.google.com/docs/reference/admin/node/firebase-admin.auth.baseauth.md#baseauthcreateuser) methods always perform two API requests under the hood: (1) the create/update request, and (2) a subsequent [`getUser()`](https://firebase.google.com/docs/reference/admin/node/firebase-admin.auth.baseauth.md#baseauthgetuser) request. In latency-sensitive applications where the result of...

needs-triage
type: feature request

Closes #1876 ### Summary Currently, the custome user claims can be updated with [setCustomUserClaims()](https://firebase.google.com/docs/reference/admin/node/firebase-admin.auth.baseauth.md#baseauthsetcustomuserclaims), and the user details can be updated with [updateUser()](https://firebase.google.com/docs/reference/admin/node/firebase-admin.auth.baseauth.md#baseauthupdateuser). Both use same [/accounts:update](https://cloud.google.com/identity-platform/docs/reference/rest/v1/accounts/update) REST API under...

Currently, the custome user claims can be updated with [`setCustomUserClaims()`](https://firebase.google.com/docs/reference/admin/node/firebase-admin.auth.baseauth.md#baseauthsetcustomuserclaims), and the user details can be updated with [`updateUser()`](https://firebase.google.com/docs/reference/admin/node/firebase-admin.auth.baseauth.md#baseauthupdateuser). Both use same [`/accounts:update`](https://cloud.google.com/identity-platform/docs/reference/rest/v1/accounts/update) REST API under the hood. Is there...

needs-triage
type: feature request

An HTTP agent can be specified in `initializeApp()` using [`AppOptions.httpAgent`](https://github.com/firebase/firebase-admin-node/blob/94dd7c3efb9ff00b0462cf772b803d6abecc2dcc/src/app/core.ts#L85). When running on GCP infrastructure using application default credentials, the SDK will request the internal metadata server at an `http:`...

needs-triage

This is a typing issue only, not a runtime isse. Since TypeScript `4.8.3`, when using `"moduleResolution": "NodeNext"` (or `"Node16"`) for an ESM project, TypeScript will now report an error when...