cline 1.0.5-nightly.22 → 1.0.5

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.
@@ -2,7 +2,7 @@
2
2
  "name": "claude-dev",
3
3
  "displayName": "Cline",
4
4
  "description": "Autonomous coding agent right in your IDE, capable of creating/editing files, running commands, using the browser, and more with your permission every step of the way.",
5
- "version": "3.36.1",
5
+ "version": "3.36.0",
6
6
  "icon": "assets/icons/icon.png",
7
7
  "engines": {
8
8
  "vscode": "^1.84.0"
@@ -466,7 +466,6 @@
466
466
  "jschardet": "^3.1.4",
467
467
  "jwt-decode": "^4.0.0",
468
468
  "mammoth": "^1.11.0",
469
- "nanoid": "^5.1.6",
470
469
  "nice-grpc": "^2.1.12",
471
470
  "node-machine-id": "^1.1.12",
472
471
  "ollama": "^0.5.13",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cline",
3
- "version": "1.0.5-nightly.22",
3
+ "version": "1.0.5",
4
4
  "description": "Autonomous coding agent CLI - capable of creating/editing files, running commands, using the browser, and more",
5
5
  "main": "cline-core.js",
6
6
  "bin": {
@@ -96,7 +96,6 @@ message OpenRouterModelInfo {
96
96
  optional ThinkingConfig thinking_config = 10;
97
97
  optional bool supports_global_endpoint = 11;
98
98
  repeated ModelTier tiers = 12;
99
- optional string name = 13;
100
99
  }
101
100
 
102
101
  // Shared response message for model information
@@ -313,7 +312,7 @@ message ApiConfiguration {
313
312
  // Request for updating API configuration (new - uses separate options and secrets)
314
313
  message UpdateApiConfigurationRequestNew {
315
314
  Metadata metadata = 1;
316
- ApiConfiguration updates = 2;
315
+ ApiConfiguration api_configuration = 2;
317
316
 
318
317
  // Required field mask specifying which fields to update.
319
318
  // Field paths use dot notation with camelCase field names:
@@ -321,7 +320,7 @@ message UpdateApiConfigurationRequestNew {
321
320
  // - "options.openAiHeaders" (for options fields)
322
321
  // - "secrets.apiKey" (for secrets fields)
323
322
  // - "secrets.openRouterApiKey" (for secrets fields)
324
- repeated string update_mask = 3;
323
+ google.protobuf.FieldMask update_mask = 3;
325
324
  }
326
325
 
327
326
  // Request for partially updating API configuration using FieldMask
@@ -23,7 +23,6 @@ service StateService {
23
23
  rpc updateSettingsCli(UpdateSettingsRequestCli) returns (Empty);
24
24
  rpc updateTaskSettings(UpdateTaskSettingsRequest) returns (Empty);
25
25
  rpc updateTelemetrySetting(TelemetrySettingRequest) returns (Empty);
26
- rpc captureOnboardingProgress(OnboardingProgressRequest) returns (Empty);
27
26
  rpc setWelcomeViewCompleted(BooleanRequest) returns (Empty);
28
27
  rpc updateInfoBannerVersion(Int64Request) returns (Empty);
29
28
  rpc updateModelBannerVersion(Int64Request) returns (Empty);
@@ -380,10 +379,3 @@ message ProcessInfo {
380
379
  optional string version = 2;
381
380
  optional int64 uptime_ms = 3;
382
381
  }
383
-
384
- message OnboardingProgressRequest {
385
- int32 step = 1;
386
- optional string action = 2;
387
- optional bool completed = 3;
388
- optional string model_selected = 4;
389
- }
@@ -77,7 +77,6 @@ enum ClineSayToolType {
77
77
  LIST_CODE_DEFINITION_NAMES = 5;
78
78
  SEARCH_FILES = 6;
79
79
  WEB_FETCH = 7;
80
- FILE_DELETED = 8;
81
80
  }
82
81
 
83
82
  // Enum for browser actions
Binary file