@base44-preview/sdk 0.8.18-pr.88.4da9709 → 0.8.18-pr.89.3725918
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.
|
@@ -178,7 +178,7 @@ export interface AuthModule {
|
|
|
178
178
|
*
|
|
179
179
|
* Supported providers:
|
|
180
180
|
* - `'google'` - {@link https://developers.google.com/identity/protocols/oauth2 | Google OAuth}. Enabled by default.
|
|
181
|
-
* - `'microsoft'` - {@link https://learn.microsoft.com/en-us/entra/identity-platform/v2-oauth2-auth-code-flow | Microsoft OAuth}. Enable
|
|
181
|
+
* - `'microsoft'` - {@link https://learn.microsoft.com/en-us/entra/identity-platform/v2-oauth2-auth-code-flow | Microsoft OAuth}. Enable Microsoft in your app's authentication settings before specifying this provider.
|
|
182
182
|
* - `'facebook'` - {@link https://developers.facebook.com/docs/facebook-login | Facebook Login}. Enable this in your app's authentication settings before using.
|
|
183
183
|
*
|
|
184
184
|
* @param provider - The authentication provider to use: `'google'`, `'microsoft'`, or `'facebook'`.
|
|
@@ -31,6 +31,8 @@ export interface EntityHandler {
|
|
|
31
31
|
* Retrieves all records of this type with support for sorting,
|
|
32
32
|
* pagination, and field selection.
|
|
33
33
|
*
|
|
34
|
+
* **Note:** The maximum limit is 5,000 items per request.
|
|
35
|
+
*
|
|
34
36
|
* @param sort - Sort parameter, such as `'-created_date'` for descending. Defaults to `'-created_date'`.
|
|
35
37
|
* @param limit - Maximum number of results to return. Defaults to `50`.
|
|
36
38
|
* @param skip - Number of results to skip for pagination. Defaults to `0`.
|
|
@@ -69,6 +71,8 @@ export interface EntityHandler {
|
|
|
69
71
|
* Retrieves records that match specific criteria with support for
|
|
70
72
|
* sorting, pagination, and field selection.
|
|
71
73
|
*
|
|
74
|
+
* **Note:** The maximum limit is 5,000 items per request.
|
|
75
|
+
*
|
|
72
76
|
* @param query - Query object with field-value pairs. Each key should be a field name
|
|
73
77
|
* from your entity schema, and each value is the criteria to match. Records matching all
|
|
74
78
|
* specified criteria are returned. Field names are case-sensitive.
|