cline 1.0.4-nightly.21 → 1.0.5-nightly.22

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.0",
5
+ "version": "3.36.1",
6
6
  "icon": "assets/icons/icon.png",
7
7
  "engines": {
8
8
  "vscode": "^1.84.0"
@@ -466,6 +466,7 @@
466
466
  "jschardet": "^3.1.4",
467
467
  "jwt-decode": "^4.0.0",
468
468
  "mammoth": "^1.11.0",
469
+ "nanoid": "^5.1.6",
469
470
  "nice-grpc": "^2.1.12",
470
471
  "node-machine-id": "^1.1.12",
471
472
  "ollama": "^0.5.13",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cline",
3
- "version": "1.0.4-nightly.21",
3
+ "version": "1.0.5-nightly.22",
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,6 +96,7 @@ 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;
99
100
  }
100
101
 
101
102
  // Shared response message for model information
@@ -312,7 +313,7 @@ message ApiConfiguration {
312
313
  // Request for updating API configuration (new - uses separate options and secrets)
313
314
  message UpdateApiConfigurationRequestNew {
314
315
  Metadata metadata = 1;
315
- ApiConfiguration api_configuration = 2;
316
+ ApiConfiguration updates = 2;
316
317
 
317
318
  // Required field mask specifying which fields to update.
318
319
  // Field paths use dot notation with camelCase field names:
@@ -320,7 +321,7 @@ message UpdateApiConfigurationRequestNew {
320
321
  // - "options.openAiHeaders" (for options fields)
321
322
  // - "secrets.apiKey" (for secrets fields)
322
323
  // - "secrets.openRouterApiKey" (for secrets fields)
323
- google.protobuf.FieldMask update_mask = 3;
324
+ repeated string update_mask = 3;
324
325
  }
325
326
 
326
327
  // Request for partially updating API configuration using FieldMask
@@ -23,6 +23,7 @@ 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);
26
27
  rpc setWelcomeViewCompleted(BooleanRequest) returns (Empty);
27
28
  rpc updateInfoBannerVersion(Int64Request) returns (Empty);
28
29
  rpc updateModelBannerVersion(Int64Request) returns (Empty);
@@ -379,3 +380,10 @@ message ProcessInfo {
379
380
  optional string version = 2;
380
381
  optional int64 uptime_ms = 3;
381
382
  }
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,6 +77,7 @@ enum ClineSayToolType {
77
77
  LIST_CODE_DEFINITION_NAMES = 5;
78
78
  SEARCH_FILES = 6;
79
79
  WEB_FETCH = 7;
80
+ FILE_DELETED = 8;
80
81
  }
81
82
 
82
83
  // Enum for browser actions
Binary file
package/foo.tmp DELETED
@@ -1,20 +0,0 @@
1
-
2
- npm notice name: cline
3
- npm notice version: 1.0.4-nightly.21
4
- npm notice filename: cline-1.0.4-nightly.21.tgz
5
- npm notice package size: 171.4 MB
6
- npm notice unpacked size: 394.9 MB
7
- npm notice shasum: 04631e8dd3a5ef39e55983691c6b8fcc83b25760
8
- npm notice integrity: sha512-pz+zhy0V8ray5[...]WzZKTi0ZIGTnA==
9
- npm notice bundled deps: 85
10
- npm notice bundled files: 0
11
- npm notice own files: 1569
12
- npm notice total files: 1569
13
- npm notice
14
- npm notice Publishing to https://registry.npmjs.org/ with tag nightly and defaul
15
- t access
16
- npm error code FETCH_ERROR
17
- npm error errno FETCH_ERROR
18
- npm error network timeout at: https://registry.npmjs.org/cline
19
- npm error A complete log of this run can be found in: /Users/lung/.npm/_logs/202
20
- 5-11-06T05_29_08_911Z-debug-0.log