@base44-preview/sdk 0.8.18-pr.88.d4664b3 → 0.8.18-pr.90.f93cd0d

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 CHANGED
@@ -21,13 +21,13 @@ npm install @base44/sdk
21
21
 
22
22
  The SDK provides access to Base44's functionality through the following modules:
23
23
 
24
- - **[`agents`](https://docs.base44.com/sdk-docs/interfaces/agents)**: Interact with AI agents and manage conversations.
25
- - **[`app-logs`](https://docs.base44.com/sdk-docs/interfaces/app-logs)**: Access and query app logs.
26
- - **[`auth`](https://docs.base44.com/sdk-docs/interfaces/auth)**: Manage user authentication, registration, and session handling.
27
- - **[`connectors`](https://docs.base44.com/sdk-docs/interfaces/connectors)**: Manage OAuth connections and access tokens for third-party services.
28
- - **[`entities`](https://docs.base44.com/sdk-docs/interfaces/entities)**: Work with your app's data entities using CRUD operations.
29
- - **[`functions`](https://docs.base44.com/sdk-docs/interfaces/functions)**: Execute backend functions.
30
- - **[`integrations`](https://docs.base44.com/sdk-docs/type-aliases/integrations)**: Pre-built integrations for external services.
24
+ - **[`agents`](https://docs.base44.com/developers/references/sdk/docs/interfaces/agents)**: Interact with AI agents and manage conversations.
25
+ - **[`app-logs`](https://docs.base44.com/developers/references/sdk/docs/interfaces/app-logs)**: Access and query app logs.
26
+ - **[`auth`](https://docs.base44.com/developers/references/sdk/docs/interfaces/auth)**: Manage user authentication, registration, and session handling.
27
+ - **[`connectors`](https://docs.base44.com/developers/references/sdk/docs/interfaces/connectors)**: Manage OAuth connections and access tokens for third-party services.
28
+ - **[`entities`](https://docs.base44.com/developers/references/sdk/docs/interfaces/entities)**: Work with your app's data entities using CRUD operations.
29
+ - **[`functions`](https://docs.base44.com/developers/references/sdk/docs/interfaces/functions)**: Execute backend functions.
30
+ - **[`integrations`](https://docs.base44.com/developers/references/sdk/docs/type-aliases/integrations)**: Pre-built integrations for external services.
31
31
 
32
32
  ## Quick starts
33
33
 
@@ -97,7 +97,7 @@ Deno.serve(async (req) => {
97
97
 
98
98
  ## Learn more
99
99
 
100
- For complete documentation, guides, and API reference, visit the **[Base44 SDK Documentation](https://docs.base44.com/sdk-getting-started/overview)**.
100
+ For complete documentation, guides, and API reference, visit the **[Base44 SDK Documentation](https://docs.base44.com/developers/landing)**.
101
101
 
102
102
  ## Development
103
103
 
@@ -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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base44-preview/sdk",
3
- "version": "0.8.18-pr.88.d4664b3",
3
+ "version": "0.8.18-pr.90.f93cd0d",
4
4
  "description": "JavaScript SDK for Base44 API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",