uloop-cli 0.67.2 → 0.67.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.
@@ -5824,7 +5824,7 @@ var import_path3 = require("path");
5824
5824
 
5825
5825
  // src/default-tools.json
5826
5826
  var default_tools_default = {
5827
- version: "0.67.2",
5827
+ version: "0.67.4",
5828
5828
  tools: [
5829
5829
  {
5830
5830
  name: "compile",
@@ -5968,6 +5968,11 @@ var default_tools_default = {
5968
5968
  type: "boolean",
5969
5969
  description: "Include path information"
5970
5970
  },
5971
+ UseComponentsLut: {
5972
+ type: "string",
5973
+ description: "Use LUT for components (auto|true|false)",
5974
+ default: "auto"
5975
+ },
5971
5976
  UseSelection: {
5972
5977
  type: "boolean",
5973
5978
  description: "Use selected GameObject(s) as root(s). When true, RootPath is ignored.",
@@ -5998,9 +6003,63 @@ var default_tools_default = {
5998
6003
  description: "Maximum number of results",
5999
6004
  default: 50
6000
6005
  },
6006
+ IncludeDescription: {
6007
+ type: "boolean",
6008
+ description: "Include detailed descriptions in results",
6009
+ default: true
6010
+ },
6011
+ IncludeMetadata: {
6012
+ type: "boolean",
6013
+ description: "Include file metadata (size, modified date)"
6014
+ },
6015
+ SearchFlags: {
6016
+ type: "string",
6017
+ description: "Search flags (Default, Synchronous, WantsMore, Packages, Sorted)",
6018
+ enum: [
6019
+ "Default",
6020
+ "Synchronous",
6021
+ "WantsMore",
6022
+ "Packages",
6023
+ "Sorted"
6024
+ ],
6025
+ default: "Default"
6026
+ },
6001
6027
  SaveToFile: {
6002
6028
  type: "boolean",
6003
6029
  description: "Save results to file"
6030
+ },
6031
+ OutputFormat: {
6032
+ type: "string",
6033
+ description: "Output file format when SaveToFile is enabled",
6034
+ enum: [
6035
+ "JSON",
6036
+ "CSV",
6037
+ "TSV"
6038
+ ],
6039
+ default: "JSON"
6040
+ },
6041
+ AutoSaveThreshold: {
6042
+ type: "integer",
6043
+ description: "Threshold for automatic file saving (0 to disable)",
6044
+ default: 100
6045
+ },
6046
+ FileExtensions: {
6047
+ type: "array",
6048
+ description: "Filter results by file extension (e.g., cs, prefab, mat)",
6049
+ items: {
6050
+ type: "string"
6051
+ }
6052
+ },
6053
+ AssetTypes: {
6054
+ type: "array",
6055
+ description: "Filter results by asset type (e.g., Texture2D, GameObject, MonoScript)",
6056
+ items: {
6057
+ type: "string"
6058
+ }
6059
+ },
6060
+ PathFilter: {
6061
+ type: "string",
6062
+ description: "Filter results by path pattern (supports wildcards)"
6004
6063
  }
6005
6064
  }
6006
6065
  }
@@ -6072,9 +6131,10 @@ var default_tools_default = {
6072
6131
  "Exact",
6073
6132
  "Path",
6074
6133
  "Regex",
6075
- "Contains"
6134
+ "Contains",
6135
+ "Selected"
6076
6136
  ],
6077
- default: "Contains"
6137
+ default: "Exact"
6078
6138
  },
6079
6139
  RequiredComponents: {
6080
6140
  type: "array",
@@ -6088,7 +6148,7 @@ var default_tools_default = {
6088
6148
  description: "Tag filter"
6089
6149
  },
6090
6150
  Layer: {
6091
- type: "string",
6151
+ type: "integer",
6092
6152
  description: "Layer filter"
6093
6153
  },
6094
6154
  MaxResults: {
@@ -6099,6 +6159,10 @@ var default_tools_default = {
6099
6159
  IncludeInactive: {
6100
6160
  type: "boolean",
6101
6161
  description: "Include inactive GameObjects"
6162
+ },
6163
+ IncludeInheritedProperties: {
6164
+ type: "boolean",
6165
+ description: "Include inherited properties"
6102
6166
  }
6103
6167
  }
6104
6168
  }
@@ -6142,6 +6206,10 @@ var default_tools_default = {
6142
6206
  type: "string",
6143
6207
  description: "C# code to execute"
6144
6208
  },
6209
+ Parameters: {
6210
+ type: "object",
6211
+ description: "Runtime parameters for execution"
6212
+ },
6145
6213
  CompileOnly: {
6146
6214
  type: "boolean",
6147
6215
  description: "Compile only without execution"
@@ -6272,7 +6340,7 @@ function getCachedServerVersion() {
6272
6340
  }
6273
6341
 
6274
6342
  // src/version.ts
6275
- var VERSION = "0.67.2";
6343
+ var VERSION = "0.67.4";
6276
6344
 
6277
6345
  // src/spinner.ts
6278
6346
  var SPINNER_FRAMES = ["\u280B", "\u2819", "\u2839", "\u2838", "\u283C", "\u2834", "\u2826", "\u2827", "\u2807", "\u280F"];