@base44-preview/sdk 0.8.48-pr.286.d14ea24 → 0.8.48-pr.287.fd215cb

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
@@ -151,12 +151,3 @@ npm run create-docs
151
151
  cd docs
152
152
  mintlify dev
153
153
  ```
154
-
155
- ### Platform browser subscriptions
156
-
157
- The separate `@base44/sdk/platform/client` entry point subscribes to public builder
158
- updates through the white-label socket. It supports typed events, bounded delivery,
159
- and reconnect replay using browser credentials supplied by your backend.
160
- See [setup, public contract and recovery](platform-docs/client.md) and the
161
- [TypeScript example](examples/platform-client.ts). Backend token integration and
162
- workspace rollout are prerequisites; never use an API key in the browser.
package/dist/index.d.ts CHANGED
@@ -4,7 +4,7 @@ import { getAccessToken, saveAccessToken, removeAccessToken, getLoginUrl } from
4
4
  export { createClient, createClientFromRequest, Base44Error, getAccessToken, saveAccessToken, removeAccessToken, getLoginUrl, };
5
5
  export type { Base44Client, CreateClientAnalyticsConfig, CreateClientConfig, CreateClientOptions, Base44ErrorJSON, };
6
6
  export * from "./types.js";
7
- export type { DeleteManyResult, DeleteResult, EntitiesModule, EntityFilterOperators, EntityFilterQuery, EntityFilterValue, EntityHandler, EntityRecord, EntityTypeRegistry, ImportResult, RealtimeEventType, RealtimeEvent, RealtimeCallback, SortField, UpdateManyResult, } from "./modules/entities.types.js";
7
+ export type { DeleteManyResult, DeleteResult, EntitiesModule, EntityAggregateResult, EntityAggregateSpec, EntityDateBucketUnit, EntityDistinctOptions, EntityFilterOperators, EntityFilterQuery, EntityFilterValue, EntityHandler, EntityListOptions, EntityPage, EntityRecord, EntityTypeRegistry, EntityUpsertOptions, EntityUpsertResult, ImportResult, RealtimeEventType, RealtimeEvent, RealtimeCallback, SortField, UpdateManyResult, } from "./modules/entities.types.js";
8
8
  export type { AuthModule, LoginResponse, RegisterParams, VerifyOtpParams, ChangePasswordParams, ResetPasswordParams, User, } from "./modules/auth.types.js";
9
9
  export type { IntegrationsModule, IntegrationEndpointFunction, CoreIntegrations, InvokeLLMParams, GenerateImageParams, GenerateImageResult, UploadFileParams, UploadFileResult, SendEmailParams, SendEmailResult, ExtractDataFromUploadedFileParams, ExtractDataFromUploadedFileResult, UploadPrivateFileParams, UploadPrivateFileResult, CreateFileSignedUrlParams, CreateFileSignedUrlResult, } from "./modules/integrations.types.js";
10
10
  export type { FunctionsModule, FunctionName, FunctionNameRegistry, } from "./modules/functions.types.js";
@@ -41,6 +41,10 @@ function parseRealtimeMessage(dataStr) {
41
41
  return null;
42
42
  }
43
43
  }
44
+ const DEFAULT_PAGE_LIMIT = 100;
45
+ function isPageOptions(value) {
46
+ return typeof value === "object" && value !== null;
47
+ }
44
48
  /**
45
49
  * Creates a handler for a specific entity.
46
50
  *
@@ -53,34 +57,51 @@ function parseRealtimeMessage(dataStr) {
53
57
  */
54
58
  function createEntityHandler(axios, appId, entityName, getSocket) {
55
59
  const baseURL = `/apps/${appId}/entities/${entityName}`;
60
+ const fieldsParam = (fields) => Array.isArray(fields) ? fields.join(",") : fields;
61
+ // GET /{entity}: the array form shared by list() and filter()
62
+ const readArray = (sort, limit, skip, fields, query) => {
63
+ const params = {};
64
+ if (query)
65
+ params.q = JSON.stringify(query);
66
+ if (sort)
67
+ params.sort = sort;
68
+ if (limit)
69
+ params.limit = limit;
70
+ if (skip)
71
+ params.skip = skip;
72
+ if (fields)
73
+ params.fields = fieldsParam(fields);
74
+ return axios.get(baseURL, { params });
75
+ };
76
+ // GET /{entity}/v2/list: one cursor page of records or distinct values, shared by list(options) and filter(query, options)
77
+ const readPage = (options, query) => {
78
+ const params = {};
79
+ if (query)
80
+ params.q = JSON.stringify(query);
81
+ params.limit = options.limit || DEFAULT_PAGE_LIMIT;
82
+ if (options.cursor)
83
+ params.cursor = options.cursor;
84
+ if ("distinct" in options) {
85
+ params.distinct = options.distinct;
86
+ }
87
+ else {
88
+ if (options.sort)
89
+ params.sort = options.sort;
90
+ if (options.fields)
91
+ params.fields = fieldsParam(options.fields);
92
+ }
93
+ return axios.get(`${baseURL}/v2/list`, { params });
94
+ };
56
95
  return {
57
- // List entities with optional pagination and sorting
58
- async list(sort, limit, skip, fields) {
59
- const params = {};
60
- if (sort)
61
- params.sort = sort;
62
- if (limit)
63
- params.limit = limit;
64
- if (skip)
65
- params.skip = skip;
66
- if (fields)
67
- params.fields = Array.isArray(fields) ? fields.join(",") : fields;
68
- return axios.get(baseURL, { params });
69
- },
70
- // Filter entities based on query
71
- async filter(query, sort, limit, skip, fields) {
72
- const params = {
73
- q: JSON.stringify(query),
74
- };
75
- if (sort)
76
- params.sort = sort;
77
- if (limit)
78
- params.limit = limit;
79
- if (skip)
80
- params.skip = skip;
81
- if (fields)
82
- params.fields = Array.isArray(fields) ? fields.join(",") : fields;
83
- return axios.get(baseURL, { params });
96
+ // list(sort, limit, skip, fields) returns an array; list(options) returns one cursor page.
97
+ async list(...args) {
98
+ const [sort, limit, skip, fields] = args;
99
+ return isPageOptions(sort) ? readPage(sort) : readArray(sort, limit, skip, fields);
100
+ },
101
+ // filter(query, sort, limit, skip, fields) returns an array; filter(query, options) returns one cursor page.
102
+ async filter(query, ...args) {
103
+ const [sort, limit, skip, fields] = args;
104
+ return isPageOptions(sort) ? readPage(sort, query) : readArray(sort, limit, skip, fields, query);
84
105
  },
85
106
  // Get entity by ID
86
107
  async get(id) {
@@ -110,6 +131,22 @@ function createEntityHandler(axios, appId, entityName, getSocket) {
110
131
  async updateMany(query, data) {
111
132
  return axios.patch(`${baseURL}/update-many`, { query, data });
112
133
  },
134
+ // Count entities matching a query
135
+ async count(query) {
136
+ const params = {};
137
+ if (query)
138
+ params.q = JSON.stringify(query);
139
+ const result = await axios.get(`${baseURL}/count`, { params });
140
+ return result.count;
141
+ },
142
+ // Server-side group-by aggregation
143
+ async aggregate(spec) {
144
+ return axios.post(`${baseURL}/aggregate`, spec);
145
+ },
146
+ // Create or update by a natural key
147
+ async upsert(records, options) {
148
+ return axios.post(`${baseURL}/upsert`, { records, key: options.key });
149
+ },
113
150
  // Update multiple entities by ID, each with its own update data
114
151
  async bulkUpdate(data) {
115
152
  return axios.put(`${baseURL}/bulk`, data);
@@ -50,6 +50,130 @@ export interface UpdateManyResult {
50
50
  /** Whether there are more entities matching the query that were not updated in this batch. When `true`, call `updateMany` again with the same query to update the next batch. */
51
51
  has_more: boolean;
52
52
  }
53
+ /**
54
+ * Options object accepted by {@linkcode EntityHandler.list | list()} and
55
+ * {@linkcode EntityHandler.filter | filter()} to read one cursor page.
56
+ *
57
+ * @typeParam T - Entity record type.
58
+ * @typeParam K - The fields to include in each record.
59
+ */
60
+ export interface EntityListOptions<T, K extends keyof T = keyof T> {
61
+ /** Sort parameter, such as `'-created_date'` for descending. Defaults to `'-created_date'`. */
62
+ sort?: SortField<T>;
63
+ /** Maximum number of records per page, up to 5,000. Defaults to 100. */
64
+ limit?: number;
65
+ /**
66
+ * `next_cursor` from the previous page. Omit or pass `null` for the first page.
67
+ *
68
+ * The token carries the query, sort and fields of the walk, so a later page needs only
69
+ * `cursor` and `limit`. Passing a different query, sort or fields with a cursor is an error.
70
+ */
71
+ cursor?: string | null;
72
+ /** Array of field names to include in each record. Defaults to all fields. */
73
+ fields?: K[];
74
+ }
75
+ /**
76
+ * Options object accepted by {@linkcode EntityHandler.list | list()} and
77
+ * {@linkcode EntityHandler.filter | filter()} to read the distinct values of one field
78
+ * instead of records.
79
+ *
80
+ * @typeParam T - Entity record type.
81
+ * @typeParam K - The field whose distinct values to read.
82
+ */
83
+ export interface EntityDistinctOptions<T, K extends keyof T = keyof T> {
84
+ /** Field whose distinct values to return, in ascending order. Array fields contribute each element. */
85
+ distinct: K;
86
+ /** Maximum number of values per page, up to 1,000. Defaults to 100. */
87
+ limit?: number;
88
+ /** `next_cursor` from the previous page. Omit or pass `null` for the first page. The token carries the query and field. */
89
+ cursor?: string | null;
90
+ }
91
+ /**
92
+ * One page of records, returned by {@linkcode EntityHandler.list | list()} and
93
+ * {@linkcode EntityHandler.filter | filter()} when called with an options object.
94
+ *
95
+ * @typeParam T - Record type of the items.
96
+ */
97
+ export interface EntityPage<T> {
98
+ /** The page's records in the requested sort order, or the distinct values in ascending order. */
99
+ items: T[];
100
+ /** Pass as `cursor` to get the next page. `null` on the last page. */
101
+ next_cursor: string | null;
102
+ /** Whether records remain after this page. */
103
+ has_more: boolean;
104
+ }
105
+ /**
106
+ * Time unit for {@linkcode EntityAggregateSpec.dateBucket | dateBucket}.
107
+ */
108
+ export type EntityDateBucketUnit = "day" | "week" | "month" | "year";
109
+ /**
110
+ * Describes what {@linkcode EntityHandler.aggregate | aggregate()} computes.
111
+ *
112
+ * Name the fields to group by and the measures to compute; the server does the work and
113
+ * returns one row per group. Field names are the entity's own field names.
114
+ *
115
+ * @typeParam T - Entity record type.
116
+ */
117
+ export interface EntityAggregateSpec<T> {
118
+ /** Filter applied before grouping, in the same form {@linkcode EntityHandler.filter | filter()} accepts. Defaults to all records. */
119
+ query?: EntityFilterQuery<T>;
120
+ /** Field, or up to four fields, to group by. Omit to get one total row. */
121
+ groupBy?: (keyof T & string) | (keyof T & string)[];
122
+ /** Group by a time bucket of a date field. `created_date` and `updated_date` support every unit; date fields of your schema support `day`, `month` and `year`. */
123
+ dateBucket?: {
124
+ field: keyof T & string;
125
+ unit: EntityDateBucketUnit;
126
+ };
127
+ /** Whether to include the number of records per group as `count`. Defaults to `true`. */
128
+ count?: boolean;
129
+ /** Field, or fields, to sum. Each appears in the rows as `sum_<field>`. */
130
+ sum?: (keyof T & string) | (keyof T & string)[];
131
+ /** Field, or fields, to average. Each appears in the rows as `avg_<field>`. */
132
+ avg?: (keyof T & string) | (keyof T & string)[];
133
+ /** Field, or fields, to take the minimum of. Each appears in the rows as `min_<field>`. */
134
+ min?: (keyof T & string) | (keyof T & string)[];
135
+ /** Field, or fields, to take the maximum of. Each appears in the rows as `max_<field>`. */
136
+ max?: (keyof T & string) | (keyof T & string)[];
137
+ /** Field whose distinct values to count per group, returned as `count_distinct_<field>`. */
138
+ countDistinct?: keyof T & string;
139
+ /** Filter on the computed fields, applied after grouping. For example `{ count: { $gt: 1 } }` keeps only duplicated groups. */
140
+ having?: Record<string, any>;
141
+ /** Computed or group field to sort the rows by, with a `-` prefix for descending. For example `'-count'`. */
142
+ sort?: string;
143
+ /** Maximum number of rows, up to 1,000. Defaults to 1,000. */
144
+ limit?: number;
145
+ }
146
+ /**
147
+ * Rows returned by {@linkcode EntityHandler.aggregate | aggregate()}.
148
+ */
149
+ export interface EntityAggregateResult {
150
+ /** One row per group: the group fields by name, then `count`, `sum_<field>`, `avg_<field>`, `min_<field>`, `max_<field>` or `count_distinct_<field>`. */
151
+ rows: Record<string, any>[];
152
+ /** `true` when more groups exist than `limit` allowed. */
153
+ truncated: boolean;
154
+ }
155
+ /**
156
+ * Options for {@linkcode EntityHandler.upsert | upsert()}.
157
+ *
158
+ * @typeParam T - Entity record type.
159
+ */
160
+ export interface EntityUpsertOptions<T> {
161
+ /** Field, or fields, that identify a record. A record whose key values match an existing record updates it; any other record is created. */
162
+ key: (keyof T & string) | (keyof T & string)[];
163
+ }
164
+ /**
165
+ * Result returned by {@linkcode EntityHandler.upsert | upsert()}.
166
+ *
167
+ * @typeParam T - Entity record type.
168
+ */
169
+ export interface EntityUpsertResult<T = any> {
170
+ /** Number of records that were created. */
171
+ created: number;
172
+ /** Number of existing records that were updated. */
173
+ updated: number;
174
+ /** The written records, created and updated, as they now exist. */
175
+ records: T[];
176
+ }
53
177
  /**
54
178
  * Result returned when importing entities from a file.
55
179
  *
@@ -211,14 +335,18 @@ export interface EntityHandler<T = any> {
211
335
  * Retrieves all records of this type with support for sorting,
212
336
  * pagination, and field selection.
213
337
  *
214
- * **Note:** The maximum limit is 5,000 items per request.
338
+ * **Note:** The maximum limit is 5,000 items per request. To read more than
339
+ * one page, pass an {@linkcode EntityListOptions | options object} with a
340
+ * `cursor` instead of `skip`: every page costs the same however deep you are,
341
+ * and records deleted between pages never shift the boundary. `skip` is kept
342
+ * for existing code and is deprecated for loops.
215
343
  *
216
344
  * @typeParam K - The fields to include in the response. Defaults to all fields.
217
345
  * @param sort - Sort parameter, such as `'-created_date'` for descending. Defaults to `'-created_date'`.
218
- * @param limit - Maximum number of results to return. Defaults to `50`.
219
- * @param skip - Number of results to skip for pagination. Defaults to `0`.
346
+ * @param limit - Maximum number of results to return. Defaults to `5000`.
347
+ * @param skip - Number of results to skip for pagination. Defaults to `0`. Deprecated for loops; use a cursor.
220
348
  * @param fields - Array of field names to include in the response. Defaults to all fields.
221
- * @returns Promise resolving to an array of records with selected fields.
349
+ * @returns Promise resolving to an array of records with selected fields. When called with an options object, resolves instead to an {@linkcode EntityPage | EntityPage} with `items`, `next_cursor` and `has_more`; with a `distinct` option the items are the field's values.
222
350
  *
223
351
  * @example
224
352
  * ```typescript
@@ -244,15 +372,39 @@ export interface EntityHandler<T = any> {
244
372
  * // Get only specific fields
245
373
  * const fields = await base44.entities.MyEntity.list('-created_date', 10, 0, ['name', 'status']);
246
374
  * ```
375
+ *
376
+ * @example
377
+ * ```typescript
378
+ * // Walk every record with a cursor. Pass an options object instead of
379
+ * // positional arguments to get a page with `next_cursor` and `has_more`.
380
+ * let page = await base44.entities.MyEntity.list({ sort: '-created_date', limit: 1000 });
381
+ * await exportRows(page.items);
382
+ * while (page.has_more) {
383
+ * page = await base44.entities.MyEntity.list({ cursor: page.next_cursor, limit: 1000 });
384
+ * await exportRows(page.items);
385
+ * }
386
+ * ```
387
+ *
388
+ * @example
389
+ * ```typescript
390
+ * // Distinct values of one field, instead of records
391
+ * const { items: categories } = await base44.entities.Product.list({ distinct: 'category' });
392
+ * ```
247
393
  */
248
394
  list<K extends keyof T = keyof T>(sort?: SortField<T>, limit?: number, skip?: number, fields?: K[]): Promise<Pick<T, K>[]>;
395
+ list<K extends keyof T>(options: EntityDistinctOptions<T, K>): Promise<EntityPage<T[K]>>;
396
+ list<K extends keyof T = keyof T>(options: EntityListOptions<T, K>): Promise<EntityPage<Pick<T, K>>>;
249
397
  /**
250
398
  * Filters records based on a query.
251
399
  *
252
400
  * Retrieves records that match specific criteria with support for
253
401
  * sorting, pagination, and field selection.
254
402
  *
255
- * **Note:** The maximum limit is 5,000 items per request.
403
+ * **Note:** The maximum limit is 5,000 items per request. To read more than
404
+ * one page, pass an {@linkcode EntityListOptions | options object} with a
405
+ * `cursor` instead of `skip`: every page costs the same however deep you are,
406
+ * and records deleted between pages never shift the boundary. `skip` is kept
407
+ * for existing code and is deprecated for loops.
256
408
  *
257
409
  * @typeParam K - The fields to include in the response. Defaults to all fields.
258
410
  * @param query - Query object with field-value pairs. Each key should be a field name
@@ -261,10 +413,10 @@ export interface EntityHandler<T = any> {
261
413
  * for exact matches, `null` for null values, arrays as shorthand for matching any of the
262
414
  * provided values, or documented MongoDB query operators for advanced filtering.
263
415
  * @param sort - Sort parameter, such as `'-created_date'` for descending. Defaults to `'-created_date'`.
264
- * @param limit - Maximum number of results to return. Defaults to `50`.
265
- * @param skip - Number of results to skip for pagination. Defaults to `0`.
416
+ * @param limit - Maximum number of results to return. Defaults to `5000`.
417
+ * @param skip - Number of results to skip for pagination. Defaults to `0`. Deprecated for loops; use a cursor.
266
418
  * @param fields - Array of field names to include in the response. Defaults to all fields.
267
- * @returns Promise resolving to an array of filtered records with selected fields.
419
+ * @returns Promise resolving to an array of filtered records with selected fields. When called with an options object, resolves instead to an {@linkcode EntityPage | EntityPage} with `items`, `next_cursor` and `has_more`; with a `distinct` option the items are the field's values.
268
420
  *
269
421
  * @example
270
422
  * ```typescript
@@ -341,8 +493,34 @@ export interface EntityHandler<T = any> {
341
493
  * ['name', 'priority']
342
494
  * );
343
495
  * ```
496
+ *
497
+ * @example
498
+ * ```typescript
499
+ * // Walk all matching records with a cursor. Pass an options object as the
500
+ * // second argument to get a page with `next_cursor` and `has_more`.
501
+ * let page = await base44.entities.Order.filter(
502
+ * { status: 'open' },
503
+ * { sort: '-created_date', limit: 1000 }
504
+ * );
505
+ * await exportRows(page.items);
506
+ * while (page.has_more) {
507
+ * page = await base44.entities.Order.filter({ status: 'open' }, { cursor: page.next_cursor, limit: 1000 });
508
+ * await exportRows(page.items);
509
+ * }
510
+ * ```
511
+ *
512
+ * @example
513
+ * ```typescript
514
+ * // Distinct values of one field among the matching records
515
+ * const { items: agents } = await base44.entities.Order.filter(
516
+ * { status: 'open' },
517
+ * { distinct: 'agent_id' }
518
+ * );
519
+ * ```
344
520
  */
345
521
  filter<K extends keyof T = keyof T>(query: EntityFilterQuery<T>, sort?: SortField<T>, limit?: number, skip?: number, fields?: K[]): Promise<Pick<T, K>[]>;
522
+ filter<K extends keyof T>(query: EntityFilterQuery<T>, options: EntityDistinctOptions<T, K>): Promise<EntityPage<T[K]>>;
523
+ filter<K extends keyof T = keyof T>(query: EntityFilterQuery<T>, options: EntityListOptions<T, K>): Promise<EntityPage<Pick<T, K>>>;
346
524
  /**
347
525
  * Gets a single record by ID.
348
526
  *
@@ -549,6 +727,111 @@ export interface EntityHandler<T = any> {
549
727
  * ```
550
728
  */
551
729
  updateMany(query: Partial<T>, data: Record<string, Record<string, any>>): Promise<UpdateManyResult>;
730
+ /**
731
+ * Counts the records that match a query.
732
+ *
733
+ * Returns the number of records the current user can read, without fetching them.
734
+ * Use it for totals, badges and "page N of M" instead of listing records and
735
+ * measuring the array.
736
+ *
737
+ * @param query - Filter query, in the same form {@linkcode filter | filter()} accepts. Defaults to all records.
738
+ * @returns Promise resolving to the number of matching records.
739
+ *
740
+ * @example
741
+ * ```typescript
742
+ * // How many tasks are still open?
743
+ * const open = await base44.entities.Task.count({ status: 'open' });
744
+ * ```
745
+ *
746
+ * @example
747
+ * ```typescript
748
+ * // Total records in the entity
749
+ * const total = await base44.entities.Task.count();
750
+ * ```
751
+ */
752
+ count(query?: EntityFilterQuery<T>): Promise<number>;
753
+ /**
754
+ * Computes counts, sums, averages, minimums, maximums or distinct counts, grouped by fields.
755
+ *
756
+ * Use it for dashboards, leaderboards and reports instead of loading every record
757
+ * and adding up in the browser. The server groups the records you can read and
758
+ * returns one row per group, up to 1,000 rows.
759
+ *
760
+ * @param spec - What to group by and what to compute. See {@linkcode EntityAggregateSpec | EntityAggregateSpec}.
761
+ * @returns Promise resolving to the rows and a `truncated` flag.
762
+ *
763
+ * @example
764
+ * ```typescript
765
+ * // Sales per agent this month, biggest first
766
+ * const { rows } = await base44.entities.Sale.aggregate({
767
+ * query: { sale_date: { $gte: '2026-09-01' } },
768
+ * groupBy: 'agent_id',
769
+ * sum: 'amount',
770
+ * sort: '-sum_amount'
771
+ * });
772
+ * // rows: [{ agent_id: 'a1', count: 42, sum_amount: 18250 }, ...]
773
+ * ```
774
+ *
775
+ * @example
776
+ * ```typescript
777
+ * // Records created per day
778
+ * const { rows } = await base44.entities.Visit.aggregate({
779
+ * dateBucket: { field: 'created_date', unit: 'day' }
780
+ * });
781
+ * ```
782
+ *
783
+ * @example
784
+ * ```typescript
785
+ * // Find duplicated external ids
786
+ * const { rows } = await base44.entities.Contact.aggregate({
787
+ * groupBy: 'external_id',
788
+ * having: { count: { $gt: 1 } }
789
+ * });
790
+ * ```
791
+ *
792
+ * @example
793
+ * ```typescript
794
+ * // Unique visitors per page
795
+ * const { rows } = await base44.entities.PageView.aggregate({
796
+ * groupBy: 'path',
797
+ * countDistinct: 'session_id'
798
+ * });
799
+ * ```
800
+ */
801
+ aggregate(spec: EntityAggregateSpec<T>): Promise<EntityAggregateResult>;
802
+ /**
803
+ * Creates or updates records by a key of your own.
804
+ *
805
+ * Use this when you sync data from another system: name the field, or fields, that
806
+ * identify a record, and the server updates the records whose key already exists and
807
+ * creates the rest, in one call. You no longer need to list existing records to check
808
+ * for duplicates before writing.
809
+ *
810
+ * You can upsert up to 500 records per request. When two records in one call share a
811
+ * key, the last one wins. Updates merge the given fields into the existing record, like
812
+ * {@linkcode update | update()}.
813
+ *
814
+ * @param records - Array of record data objects. Each must carry a value for every key field.
815
+ * @param options - The key field or fields. See {@linkcode EntityUpsertOptions | EntityUpsertOptions}.
816
+ * @returns Promise resolving to the counts and the written records.
817
+ *
818
+ * @example
819
+ * ```typescript
820
+ * // Sync contacts from a CRM by their CRM id
821
+ * const result = await base44.entities.Contact.upsert(
822
+ * crmContacts.map(c => ({ crm_id: c.id, name: c.name, email: c.email })),
823
+ * { key: 'crm_id' }
824
+ * );
825
+ * console.log(`${result.created} new, ${result.updated} updated`);
826
+ * ```
827
+ *
828
+ * @example
829
+ * ```typescript
830
+ * // Compound key
831
+ * await base44.entities.Inventory.upsert(rows, { key: ['sku', 'warehouse'] });
832
+ * ```
833
+ */
834
+ upsert(records: Partial<T>[], options: EntityUpsertOptions<T>): Promise<EntityUpsertResult<T>>;
552
835
  /**
553
836
  * Updates the specified records in a single request, each with its own data.
554
837
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base44-preview/sdk",
3
- "version": "0.8.48-pr.286.d14ea24",
3
+ "version": "0.8.48-pr.287.fd215cb",
4
4
  "description": "JavaScript SDK for Base44 API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -9,8 +9,8 @@
9
9
  "dist"
10
10
  ],
11
11
  "scripts": {
12
- "build": "npm run build:runtime && npm run build:platform",
13
- "lint": "eslint src platform-src examples/platform-client.ts",
12
+ "build": "tsc",
13
+ "lint": "eslint src",
14
14
  "test": "npm run test:types && vitest run",
15
15
  "test:types": "tsc --noEmit -p tsconfig.type-tests.json",
16
16
  "test:unit": "vitest run tests/unit",
@@ -23,11 +23,7 @@
23
23
  "create-docs-local": "npm run create-docs && npm run copy-docs-local",
24
24
  "copy-docs-local": "node scripts/mintlify-post-processing/copy-to-local-docs.js",
25
25
  "create-docs:generate": "typedoc",
26
- "create-docs:process": "node scripts/mintlify-post-processing/file-processing/file-processing.js",
27
- "build:runtime": "tsc",
28
- "build:platform": "tsc -p tsconfig.platform.json",
29
- "docs:platform-client": "typedoc --options typedoc.platform-client.json",
30
- "test:package": "npm run build && node --test tests/package/platform-client.test.mjs"
26
+ "create-docs:process": "node scripts/mintlify-post-processing/file-processing/file-processing.js"
31
27
  },
32
28
  "dependencies": {
33
29
  "axios": "^1.18.1",
@@ -67,36 +63,5 @@
67
63
  "bugs": {
68
64
  "url": "https://github.com/base44/javascript-sdk/issues"
69
65
  },
70
- "homepage": "https://github.com/base44/javascript-sdk#readme",
71
- "exports": {
72
- ".": {
73
- "types": "./dist/index.d.ts",
74
- "default": "./dist/index.js"
75
- },
76
- "./dist/*.d.ts": "./dist/*.d.ts",
77
- "./dist/*.js": {
78
- "types": "./dist/*.d.ts",
79
- "default": "./dist/*.js"
80
- },
81
- "./dist/*": {
82
- "types": "./dist/*.d.ts",
83
- "default": "./dist/*.js"
84
- },
85
- "./package.json": "./package.json",
86
- "./*": "./*",
87
- "./platform/client": {
88
- "types": "./dist/platform/client/index.d.ts",
89
- "default": "./dist/platform/client/index.js"
90
- }
91
- },
92
- "typesVersions": {
93
- "*": {
94
- "platform/client": [
95
- "dist/platform/client/index.d.ts"
96
- ],
97
- "*": [
98
- "*"
99
- ]
100
- }
101
- }
66
+ "homepage": "https://github.com/base44/javascript-sdk#readme"
102
67
  }
@@ -1,9 +0,0 @@
1
- import type { PlatformClientOptions } from "./client.types.js";
2
- import type { BuilderModule } from "./modules/builder.types.js";
3
- /** Browser platform client. Construction creates no sockets, timers or network requests. */
4
- export declare class Base44PlatformClient {
5
- /** Lazy builder subscriptions with independent session lifecycles. */
6
- readonly builder: BuilderModule;
7
- /** Configure shared service/auth settings; each module initializes its own resources. */
8
- constructor(options: PlatformClientOptions);
9
- }
@@ -1,12 +0,0 @@
1
- import { createBuilder } from "./modules/builder.js";
2
- /** Browser platform client. Construction creates no sockets, timers or network requests. */
3
- export class Base44PlatformClient {
4
- /** Configure shared service/auth settings; each module initializes its own resources. */
5
- constructor(options) {
6
- const url = new URL(options.serverUrl);
7
- if (!["https:", "http:"].includes(url.protocol) || url.username || url.password || url.search || url.hash || url.pathname !== "/") {
8
- throw new TypeError("serverUrl must be an HTTP(S) origin without credentials, path, query or fragment");
9
- }
10
- this.builder = Object.freeze(createBuilder({ ...options, serverUrl: url.origin }));
11
- }
12
- }
@@ -1,7 +0,0 @@
1
- /** Shared configuration for browser platform modules. Never supply an API key. */
2
- export interface PlatformClientOptions {
3
- /** Origin of the platform service, e.g. https://base44.app. No path/query/credentials. */
4
- serverUrl: string;
5
- /** Refresh a browser credential through your backend; called on every builder connection attempt. */
6
- refreshToken: () => string | Promise<string>;
7
- }
@@ -1 +0,0 @@
1
- export {};
@@ -1,10 +0,0 @@
1
- import type { PlatformSocketErrorCode } from "./errors.types.js";
2
- /** Sanitized failure. Original token-provider, handler and server exceptions are not retained. */
3
- export declare class PlatformSocketError extends Error {
4
- /** Stable machine-readable category. */
5
- readonly code: PlatformSocketErrorCode;
6
- /** Associated app, when the server identifies a valid room. */
7
- readonly appId?: string;
8
- /** Create a sanitized error with no credential-bearing cause or payload. */
9
- constructor(code: PlatformSocketErrorCode, appId?: string);
10
- }
@@ -1,10 +0,0 @@
1
- /** Sanitized failure. Original token-provider, handler and server exceptions are not retained. */
2
- export class PlatformSocketError extends Error {
3
- /** Create a sanitized error with no credential-bearing cause or payload. */
4
- constructor(code, appId) {
5
- super(`Platform socket: ${code}`);
6
- this.name = "PlatformSocketError";
7
- this.code = code;
8
- this.appId = appId;
9
- }
10
- }
@@ -1,2 +0,0 @@
1
- /** Server subscription failures and client transport/processing failures. */
2
- export type PlatformSocketErrorCode = "invalid_room" | "invalid_cursor" | "access_denied" | "subscription_limit" | "resync_required" | "stream_unavailable" | "connection_denied" | "connection_failed" | "token_unavailable" | "protocol_error" | "handler_failed" | "client_closed";
@@ -1 +0,0 @@
1
- export {};
@@ -1,7 +0,0 @@
1
- /** Browser platform modules, separate from the runtime and server SDKs. */
2
- export { Base44PlatformClient } from "./client.js";
3
- export { PlatformSocketError } from "./errors.js";
4
- export type { PlatformSocketErrorCode } from "./errors.types.js";
5
- export type { PlatformClientOptions } from "./client.types.js";
6
- export type { BuilderModule, BuilderInitOptions, BuilderSession, PlatformSubscription, SubscriptionOptions } from "./modules/builder.types.js";
7
- export type { AppUpdate, ChatMessage, ToolCall, ToolDisplayProjection, ToolQuestionOption, ToolQuestion, ToolQuestionArguments, ToolSecretField, ToolSecretArguments, ToolPackageOperation, ToolPackageArguments, ToolPlanUpdate, ToolPlanArguments, ToolMediaArguments, ToolQuestionAnswer, ToolQuestionInput, ToolOutcome, QueueItem, QueueUpdate, TaskUpdate, ImageReady, Directive, PlatformEventMap, PlatformEvent, Joined } from "./modules/builder.events.types.js";
@@ -1,3 +0,0 @@
1
- /** Browser platform modules, separate from the runtime and server SDKs. */
2
- export { Base44PlatformClient } from "./client.js";
3
- export { PlatformSocketError } from "./errors.js";
@@ -1,11 +0,0 @@
1
- import type { Joined, PlatformEvent, PlatformEventMap } from "./builder.events.types.js";
2
- export declare const eventNames: readonly ["update_model", "directive", "queue_update", "task_update", "image_ready"];
3
- export declare const errorCodes: readonly ["invalid_room", "invalid_cursor", "access_denied", "subscription_limit", "resync_required", "stream_unavailable"];
4
- export declare const appPattern: RegExp;
5
- export declare const roomFor: (appId: string) => string;
6
- export declare function object(value: unknown): Record<string, unknown>;
7
- export declare function string(value: unknown): string;
8
- export declare function appFromRoom(value: unknown): string | undefined;
9
- export declare function eventApp(type: keyof PlatformEventMap, raw: unknown): string | undefined;
10
- export declare function decode(type: keyof PlatformEventMap, appId: string, raw: unknown): PlatformEvent;
11
- export declare function decodeJoined(raw: unknown): Joined;