opencode-gemini-cli-oauth 1.1.14 → 1.1.15

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 CHANGED
@@ -8,8 +8,11 @@
8
8
  *
9
9
  * Main entry point for the plugin
10
10
  */
11
- export { default } from './plugin.js';
12
- export { oauth } from './auth/oauth.js';
13
- export { accountManager } from './auth/account-manager.js';
14
- export { StorageManager } from './storage/storage.js';
11
+ /**
12
+ * @license
13
+ * Copyright 2025 Yusuf
14
+ * SPDX-License-Identifier: MIT
15
+ */
16
+ import loadPlugin from './plugin.js';
17
+ export default loadPlugin;
15
18
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;;;GAIG;AAGH,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAGtC,OAAO,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AACxC,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;;;GAIG;AAEH;;;;GAIG;AAEH,OAAO,UAAU,MAAM,aAAa,CAAC;AAGrC,eAAe,UAAU,CAAC"}
package/dist/index.js CHANGED
@@ -8,10 +8,12 @@
8
8
  *
9
9
  * Main entry point for the plugin
10
10
  */
11
- // Default export for OpenCode (Factory Function Pattern)
12
- export { default } from './plugin.js';
13
- // Export utilities for advanced usage
14
- export { oauth } from './auth/oauth.js';
15
- export { accountManager } from './auth/account-manager.js';
16
- export { StorageManager } from './storage/storage.js';
11
+ /**
12
+ * @license
13
+ * Copyright 2025 Yusuf
14
+ * SPDX-License-Identifier: MIT
15
+ */
16
+ import loadPlugin from './plugin.js';
17
+ // ONLY export the default loader
18
+ export default loadPlugin;
17
19
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;;;GAIG;AAEH,yDAAyD;AACzD,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAEtC,sCAAsC;AACtC,OAAO,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AACxC,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;;;GAIG;AAEH;;;;GAIG;AAEH,OAAO,UAAU,MAAM,aAAa,CAAC;AAErC,iCAAiC;AACjC,eAAe,UAAU,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-gemini-cli-oauth",
3
- "version": "1.1.14",
3
+ "version": "1.1.15",
4
4
  "description": "OpenCode plugin for Gemini CLI OAuth authentication - use Google account quota without API keys",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",