modjules 0.1.1-nightly-f426e61-20251221203540 → 0.1.1-nightly-5582848-20251223203636
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 +2 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { JulesClientImpl } from './client.js';
|
|
2
2
|
export * from './errors.js';
|
|
3
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';
|
|
4
4
|
export { SessionCursor } from './sessions.js';
|
|
5
5
|
export type { ListSessionsOptions, ListSessionsResponse } from './sessions.js';
|
|
6
|
-
|
|
7
|
-
* The default Jules client instance for Node.js.
|
|
8
|
-
* Uses file system storage for caching and standard Node.js APIs.
|
|
9
|
-
*/
|
|
10
|
-
export declare const jules: JulesClient;
|
|
6
|
+
export declare const jules: JulesClientImpl;
|