modjules 0.1.1-nightly-7bf5e4b-20251220203416 → 0.1.1-nightly-f426e61-20251221203324

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 +2 -6
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -4,11 +4,7 @@ export type { Activity, ActivityAgentMessaged, ActivityPlanApproved, ActivityPla
4
4
  export { SessionCursor } from './sessions.js';
5
5
  export type { ListSessionsOptions, ListSessionsResponse } from './sessions.js';
6
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({ ... });
7
+ * The default Jules client instance for Node.js.
8
+ * Uses file system storage for caching and standard Node.js APIs.
13
9
  */
14
10
  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-7bf5e4b-20251220203416",
3
+ "version": "0.1.1-nightly-f426e61-20251221203324",
4
4
  "workspaces": [
5
5
  ".",
6
6
  "examples/*"