modjules 0.1.1-nightly-5582848-20251223203636 → 0.1.1-nightly-06a0358-20251225203200

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +10 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1,6 +1,14 @@
1
- import { JulesClientImpl } from './client.js';
1
+ import { JulesClient } from './types.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
- export declare const jules: JulesClientImpl;
6
+ /**
7
+ * The main entry point for the Jules SDK for Node.js environments.
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "modjules",
3
- "version": "0.1.1-nightly-5582848-20251223203636",
3
+ "version": "0.1.1-nightly-06a0358-20251225203200",
4
4
  "workspaces": [
5
5
  ".",
6
6
  "examples/*"