@base44-preview/sdk 0.8.18-pr.79.302a71f → 0.8.18-pr.79.6d33542
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.
|
@@ -72,7 +72,7 @@ export interface AgentMessageMetadata {
|
|
|
72
72
|
export interface AgentConversation {
|
|
73
73
|
/** Unique identifier for the conversation. */
|
|
74
74
|
id: string;
|
|
75
|
-
/**
|
|
75
|
+
/** App ID. */
|
|
76
76
|
app_id: string;
|
|
77
77
|
/** Name of the agent in this conversation. */
|
|
78
78
|
agent_name: string;
|
|
@@ -140,7 +140,7 @@ export interface AgentsModuleConfig {
|
|
|
140
140
|
axios: AxiosInstance;
|
|
141
141
|
/** Function to get WebSocket instance for real-time updates (lazy initialization) */
|
|
142
142
|
getSocket: () => ReturnType<typeof RoomsSocket>;
|
|
143
|
-
/**
|
|
143
|
+
/** App ID */
|
|
144
144
|
appId: string;
|
|
145
145
|
/** Server URL */
|
|
146
146
|
serverUrl?: string;
|
|
@@ -176,6 +176,7 @@ export interface AuthModule {
|
|
|
176
176
|
*
|
|
177
177
|
* Initiates OAuth/SSO login flow with providers like Google, Microsoft, etc. Requires a browser environment and can't be used in the backend.
|
|
178
178
|
*
|
|
179
|
+
* @internal
|
|
179
180
|
* @param provider - Name of the supported authentication provider (e.g., 'google', 'microsoft').
|
|
180
181
|
* @param fromUrl - URL to redirect to after successful authentication. Defaults to '/'.
|
|
181
182
|
*
|
|
@@ -272,6 +272,7 @@ export interface EntityHandler {
|
|
|
272
272
|
*
|
|
273
273
|
* Receives notifications whenever any record is created, updated, or deleted.
|
|
274
274
|
*
|
|
275
|
+
* @internal
|
|
275
276
|
* @param callback - Function called when an entity changes.
|
|
276
277
|
* @returns Unsubscribe function to stop listening.
|
|
277
278
|
*
|
|
@@ -348,6 +348,7 @@ export type IntegrationsModule = {
|
|
|
348
348
|
* Allows calling external APIs that workspace admins have configured
|
|
349
349
|
* by importing OpenAPI specifications.
|
|
350
350
|
*
|
|
351
|
+
* @internal
|
|
351
352
|
* @example
|
|
352
353
|
* ```typescript
|
|
353
354
|
* const response = await base44.integrations.custom.call(
|