modjules 0.1.1-nightly-e59c8ec-20251219203337 → 0.1.1-nightly-7bf5e4b-20251220203416
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/index.d.ts +9 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
import { JulesClient } from './types.js';
|
|
2
|
-
export declare const jules: JulesClient;
|
|
3
2
|
export * from './errors.js';
|
|
4
3
|
export type { Activity, ActivityAgentMessaged, ActivityPlanApproved, ActivityPlanGenerated, ActivityProgressUpdated, ActivitySessionCompleted, ActivitySessionFailed, ActivityUserMessaged, Artifact, AutomatedSession, BashArtifact, ChangeSet, GitHubRepo, GitPatch, JulesClient, JulesOptions, MediaArtifact, Outcome, Plan, PlanStep, PullRequest, SessionClient, SessionConfig, SessionOutput, SessionResource, SessionState, Source, SourceContext, SourceInput, SourceManager, } from './types.js';
|
|
5
4
|
export { SessionCursor } from './sessions.js';
|
|
6
5
|
export type { ListSessionsOptions, ListSessionsResponse } from './sessions.js';
|
|
6
|
+
/**
|
|
7
|
+
* The main entry point for the Jules SDK.
|
|
8
|
+
* This is a pre-initialized client that can be used immediately with default settings.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* import { jules } from 'modjules';
|
|
12
|
+
* const session = await jules.session({ ... });
|
|
13
|
+
*/
|
|
14
|
+
export declare const jules: JulesClient;
|