@base44-preview/sdk 0.8.17-pr.76.a16c363 → 0.8.17-pr.76.c5f9ff2
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/dist/client.types.d.ts
CHANGED
|
@@ -83,7 +83,10 @@ export interface Base44Client {
|
|
|
83
83
|
agents: AgentsModule;
|
|
84
84
|
/** {@link AppLogsModule | App logs module} for tracking app usage. */
|
|
85
85
|
appLogs: AppLogsModule;
|
|
86
|
-
/**
|
|
86
|
+
/**
|
|
87
|
+
* {@link AnalyticsModule | Analytics module} for tracking app usage.
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
87
90
|
analytics: AnalyticsModule;
|
|
88
91
|
/** Cleanup function to disconnect WebSocket connections. Call when you're done with the client. */
|
|
89
92
|
cleanup: () => void;
|
|
@@ -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 realtime 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;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Parameters for calling a custom integration endpoint.
|
|
3
|
+
* @internal
|
|
3
4
|
*/
|
|
4
5
|
export interface CustomIntegrationCallParams {
|
|
5
6
|
/**
|
|
@@ -22,6 +23,7 @@ export interface CustomIntegrationCallParams {
|
|
|
22
23
|
}
|
|
23
24
|
/**
|
|
24
25
|
* Response from a custom integration call.
|
|
26
|
+
* @internal
|
|
25
27
|
*/
|
|
26
28
|
export interface CustomIntegrationCallResponse {
|
|
27
29
|
/**
|
|
@@ -85,6 +87,7 @@ export interface CustomIntegrationCallResponse {
|
|
|
85
87
|
* }
|
|
86
88
|
* );
|
|
87
89
|
* ```
|
|
90
|
+
* @internal
|
|
88
91
|
*/
|
|
89
92
|
export interface CustomIntegrationsModule {
|
|
90
93
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@base44-preview/sdk",
|
|
3
|
-
"version": "0.8.17-pr.76.
|
|
3
|
+
"version": "0.8.17-pr.76.c5f9ff2",
|
|
4
4
|
"description": "JavaScript SDK for Base44 API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"docs": "typedoc",
|
|
20
20
|
"prepublishOnly": "npm run build",
|
|
21
21
|
"create-docs": "npm run create-docs:generate && npm run create-docs:process",
|
|
22
|
+
"create-docs-local": "npm run create-docs && npm run copy-docs-local",
|
|
22
23
|
"push-docs": "node scripts/mintlify-post-processing/push-to-docs-repo.js",
|
|
23
24
|
"copy-docs-local": "node scripts/mintlify-post-processing/copy-to-local-docs.js",
|
|
24
25
|
"create-docs:generate": "typedoc",
|