opencode-windsurf-codeium 0.1.2 → 0.1.4
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 -9
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -12
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -18,13 +18,6 @@
|
|
|
18
18
|
* - Windsurf must be installed and running
|
|
19
19
|
* - User must be logged into Windsurf
|
|
20
20
|
*/
|
|
21
|
-
export { createWindsurfPlugin, WindsurfPlugin, CodeiumPlugin } from './src/plugin.js';
|
|
22
|
-
export {
|
|
23
|
-
export type { WindsurfCredentials } from './src/plugin/auth.js';
|
|
24
|
-
export { streamChat, streamChatGenerator } from './src/plugin/grpc-client.js';
|
|
25
|
-
export type { ChatMessage, StreamChatOptions } from './src/plugin/grpc-client.js';
|
|
26
|
-
export { modelNameToEnum, enumToModelName, getSupportedModels, isModelSupported, getDefaultModel, getDefaultModelEnum, getCanonicalModels, } from './src/plugin/models.js';
|
|
27
|
-
export { PLUGIN_ID, GRPC_SERVICES, GRPC_METHODS, } from './src/constants.js';
|
|
28
|
-
export { ModelEnum, ChatMessageSource } from './src/plugin/types.js';
|
|
29
|
-
export type { ModelEnumValue, ChatMessageSourceValue } from './src/plugin/types.js';
|
|
21
|
+
export { createWindsurfPlugin, WindsurfPlugin, CodeiumPlugin, } from './src/plugin.js';
|
|
22
|
+
export { WindsurfPlugin as default } from './src/plugin.js';
|
|
30
23
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAEH,OAAO,EACL,oBAAoB,EACpB,cAAc,EACd,aAAa,GACd,MAAM,iBAAiB,CAAC;AAGzB,OAAO,EAAE,cAAc,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -18,16 +18,7 @@
|
|
|
18
18
|
* - Windsurf must be installed and running
|
|
19
19
|
* - User must be logged into Windsurf
|
|
20
20
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
export { getCredentials, getCSRFToken, getPort, getApiKey, getWindsurfVersion, isWindsurfRunning, isWindsurfInstalled, validateCredentials, WindsurfError, WindsurfErrorCode, } from './src/plugin/auth.js';
|
|
25
|
-
// gRPC client
|
|
26
|
-
export { streamChat, streamChatGenerator } from './src/plugin/grpc-client.js';
|
|
27
|
-
// Model utilities
|
|
28
|
-
export { modelNameToEnum, enumToModelName, getSupportedModels, isModelSupported, getDefaultModel, getDefaultModelEnum, getCanonicalModels, } from './src/plugin/models.js';
|
|
29
|
-
// Constants
|
|
30
|
-
export { PLUGIN_ID, GRPC_SERVICES, GRPC_METHODS, } from './src/constants.js';
|
|
31
|
-
// Types
|
|
32
|
-
export { ModelEnum, ChatMessageSource } from './src/plugin/types.js';
|
|
21
|
+
export { createWindsurfPlugin, WindsurfPlugin, CodeiumPlugin, } from './src/plugin.js';
|
|
22
|
+
// Default export for OpenCode plugin loader compatibility
|
|
23
|
+
export { WindsurfPlugin as default } from './src/plugin.js';
|
|
33
24
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAEH,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAEH,OAAO,EACL,oBAAoB,EACpB,cAAc,EACd,aAAa,GACd,MAAM,iBAAiB,CAAC;AAEzB,0DAA0D;AAC1D,OAAO,EAAE,cAAc,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
|
package/package.json
CHANGED