@clinebot/shared 0.0.16 → 0.0.20
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.browser.d.ts +3 -2
- package/dist/index.browser.js +11 -11
- package/dist/index.d.ts +3 -2
- package/dist/index.js +20 -20
- package/package.json +1 -1
- package/src/index.browser.ts +46 -2
- package/src/index.ts +46 -2
package/package.json
CHANGED
package/src/index.browser.ts
CHANGED
|
@@ -46,8 +46,52 @@ export {
|
|
|
46
46
|
normalizeUserInput,
|
|
47
47
|
xmlTagsRemoval,
|
|
48
48
|
} from "./prompt/format";
|
|
49
|
-
export
|
|
50
|
-
export
|
|
49
|
+
export { REMOTE_URI_SCHEME } from "./remote-config/constants";
|
|
50
|
+
export type {
|
|
51
|
+
AnthropicModel,
|
|
52
|
+
AnthropicSettings,
|
|
53
|
+
APIKeySettings,
|
|
54
|
+
AwsBedrockCustomModel,
|
|
55
|
+
AwsBedrockModel,
|
|
56
|
+
AwsBedrockSettings,
|
|
57
|
+
EnterpriseTelemetry,
|
|
58
|
+
GlobalInstructionsFile,
|
|
59
|
+
LiteLLMModel,
|
|
60
|
+
LiteLLMSettings,
|
|
61
|
+
MCPServer,
|
|
62
|
+
OpenAiCompatible,
|
|
63
|
+
OpenAiCompatibleModel,
|
|
64
|
+
PromptUploading,
|
|
65
|
+
ProviderSettings,
|
|
66
|
+
RemoteConfig,
|
|
67
|
+
RemoteMCPServer,
|
|
68
|
+
S3AccessKeySettings,
|
|
69
|
+
VertexModel,
|
|
70
|
+
VertexSettings,
|
|
71
|
+
} from "./remote-config/schema";
|
|
72
|
+
export {
|
|
73
|
+
AllowedMCPServerSchema,
|
|
74
|
+
AnthropicModelSchema,
|
|
75
|
+
AnthropicSchema,
|
|
76
|
+
APIKeySchema,
|
|
77
|
+
AwsBedrockCustomModelSchema,
|
|
78
|
+
AwsBedrockModelSchema,
|
|
79
|
+
AwsBedrockSettingsSchema,
|
|
80
|
+
ClineModelSchema,
|
|
81
|
+
ClineSettingsSchema,
|
|
82
|
+
EnterpriseTelemetrySchema,
|
|
83
|
+
GlobalInstructionsFileSchema,
|
|
84
|
+
LiteLLMModelSchema,
|
|
85
|
+
LiteLLMSchema,
|
|
86
|
+
OpenAiCompatibleModelSchema,
|
|
87
|
+
OpenAiCompatibleSchema,
|
|
88
|
+
PromptUploadingSchema,
|
|
89
|
+
RemoteConfigSchema,
|
|
90
|
+
RemoteMCPServerSchema,
|
|
91
|
+
S3AccessKeySettingsSchema,
|
|
92
|
+
VertexModelSchema,
|
|
93
|
+
VertexSettingsSchema,
|
|
94
|
+
} from "./remote-config/schema";
|
|
51
95
|
export { CLINE_DEFAULT_RPC_ADDRESS, CLINE_DEFAULT_RPC_PORT } from "./rpc";
|
|
52
96
|
export type {
|
|
53
97
|
RpcAddProviderActionRequest,
|
package/src/index.ts
CHANGED
|
@@ -46,8 +46,52 @@ export {
|
|
|
46
46
|
normalizeUserInput,
|
|
47
47
|
xmlTagsRemoval,
|
|
48
48
|
} from "./prompt/format";
|
|
49
|
-
export
|
|
50
|
-
export
|
|
49
|
+
export { REMOTE_URI_SCHEME } from "./remote-config/constants";
|
|
50
|
+
export type {
|
|
51
|
+
AnthropicModel,
|
|
52
|
+
AnthropicSettings,
|
|
53
|
+
APIKeySettings,
|
|
54
|
+
AwsBedrockCustomModel,
|
|
55
|
+
AwsBedrockModel,
|
|
56
|
+
AwsBedrockSettings,
|
|
57
|
+
EnterpriseTelemetry,
|
|
58
|
+
GlobalInstructionsFile,
|
|
59
|
+
LiteLLMModel,
|
|
60
|
+
LiteLLMSettings,
|
|
61
|
+
MCPServer,
|
|
62
|
+
OpenAiCompatible,
|
|
63
|
+
OpenAiCompatibleModel,
|
|
64
|
+
PromptUploading,
|
|
65
|
+
ProviderSettings,
|
|
66
|
+
RemoteConfig,
|
|
67
|
+
RemoteMCPServer,
|
|
68
|
+
S3AccessKeySettings,
|
|
69
|
+
VertexModel,
|
|
70
|
+
VertexSettings,
|
|
71
|
+
} from "./remote-config/schema";
|
|
72
|
+
export {
|
|
73
|
+
AllowedMCPServerSchema,
|
|
74
|
+
AnthropicModelSchema,
|
|
75
|
+
AnthropicSchema,
|
|
76
|
+
APIKeySchema,
|
|
77
|
+
AwsBedrockCustomModelSchema,
|
|
78
|
+
AwsBedrockModelSchema,
|
|
79
|
+
AwsBedrockSettingsSchema,
|
|
80
|
+
ClineModelSchema,
|
|
81
|
+
ClineSettingsSchema,
|
|
82
|
+
EnterpriseTelemetrySchema,
|
|
83
|
+
GlobalInstructionsFileSchema,
|
|
84
|
+
LiteLLMModelSchema,
|
|
85
|
+
LiteLLMSchema,
|
|
86
|
+
OpenAiCompatibleModelSchema,
|
|
87
|
+
OpenAiCompatibleSchema,
|
|
88
|
+
PromptUploadingSchema,
|
|
89
|
+
RemoteConfigSchema,
|
|
90
|
+
RemoteMCPServerSchema,
|
|
91
|
+
S3AccessKeySettingsSchema,
|
|
92
|
+
VertexModelSchema,
|
|
93
|
+
VertexSettingsSchema,
|
|
94
|
+
} from "./remote-config/schema";
|
|
51
95
|
export { CLINE_DEFAULT_RPC_ADDRESS, CLINE_DEFAULT_RPC_PORT } from "./rpc";
|
|
52
96
|
export type {
|
|
53
97
|
RpcAddProviderActionRequest,
|