Skip to content

Commit 53d4b45

Browse files
committed
Mark internal methods, fix App ID naming
1 parent ec757d9 commit 53d4b45

4 files changed

Lines changed: 5 additions & 2 deletions

File tree

src/modules/agents.types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export interface AgentMessageMetadata {
7878
export interface AgentConversation {
7979
/** Unique identifier for the conversation. */
8080
id: string;
81-
/** Application ID. */
81+
/** App ID. */
8282
app_id: string;
8383
/** Name of the agent in this conversation. */
8484
agent_name: string;
@@ -149,7 +149,7 @@ export interface AgentsModuleConfig {
149149
axios: AxiosInstance;
150150
/** Function to get WebSocket instance for real-time updates (lazy initialization) */
151151
getSocket: () => ReturnType<typeof RoomsSocket>;
152-
/** Application ID */
152+
/** App ID */
153153
appId: string;
154154
/** Server URL */
155155
serverUrl?: string;

src/modules/auth.types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ export interface AuthModule {
190190
*
191191
* Initiates OAuth/SSO login flow with providers like Google, Microsoft, etc. Requires a browser environment and can't be used in the backend.
192192
*
193+
* @internal
193194
* @param provider - Name of the supported authentication provider (e.g., 'google', 'microsoft').
194195
* @param fromUrl - URL to redirect to after successful authentication. Defaults to '/'.
195196
*

src/modules/entities.types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,7 @@ export interface EntityHandler {
296296
*
297297
* Receives notifications whenever any record is created, updated, or deleted.
298298
*
299+
* @internal
299300
* @param callback - Function called when an entity changes.
300301
* @returns Unsubscribe function to stop listening.
301302
*

src/modules/integrations.types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,7 @@ export type IntegrationsModule = {
380380
* Allows calling external APIs that workspace admins have configured
381381
* by importing OpenAPI specifications.
382382
*
383+
* @internal
383384
* @example
384385
* ```typescript
385386
* const response = await base44.integrations.custom.call(

0 commit comments

Comments
 (0)