casualos 3.3.7-alpha.9964003772 → 3.3.7
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/cli.js +5 -5
- package/package.json +4 -4
package/dist/cli.js
CHANGED
|
@@ -101058,7 +101058,7 @@ var import_semantic_conventions = __toESM(require_src3());
|
|
|
101058
101058
|
function traced(tracerName, options = {}) {
|
|
101059
101059
|
const tracer = trace.getTracer(
|
|
101060
101060
|
tracerName,
|
|
101061
|
-
false ? void 0 : "v3.3.7
|
|
101061
|
+
false ? void 0 : "v3.3.7"
|
|
101062
101062
|
);
|
|
101063
101063
|
return function(target, propertyKey, descriptor) {
|
|
101064
101064
|
const originalMethod = descriptor.value;
|
|
@@ -111561,7 +111561,7 @@ var RecordsServer = class {
|
|
|
111561
111561
|
this._loomController = loomController;
|
|
111562
111562
|
this._tracer = trace.getTracer(
|
|
111563
111563
|
"RecordsServer",
|
|
111564
|
-
false ? void 0 : "v3.3.7
|
|
111564
|
+
false ? void 0 : "v3.3.7"
|
|
111565
111565
|
);
|
|
111566
111566
|
this._procedures = this._createProcedures();
|
|
111567
111567
|
this._setupRoutes();
|
|
@@ -113395,8 +113395,8 @@ var RecordsServer = class {
|
|
|
113395
113395
|
return {
|
|
113396
113396
|
success: true,
|
|
113397
113397
|
...metadata,
|
|
113398
|
-
version: true ? "v3.3.7
|
|
113399
|
-
versionHash: true ? "
|
|
113398
|
+
version: true ? "v3.3.7" : void 0,
|
|
113399
|
+
versionHash: true ? "c1b149e9618090d123e096558c8152fc46e8db15" : void 0
|
|
113400
113400
|
};
|
|
113401
113401
|
})
|
|
113402
113402
|
};
|
|
@@ -125165,7 +125165,7 @@ var config = new Conf({
|
|
|
125165
125165
|
projectName: "casualos-cli"
|
|
125166
125166
|
});
|
|
125167
125167
|
var program2 = new Command();
|
|
125168
|
-
program2.name("casualos").description("A CLI for CasualOS").version("v3.3.7
|
|
125168
|
+
program2.name("casualos").description("A CLI for CasualOS").version("v3.3.7").option(
|
|
125169
125169
|
"-e, --endpoint <url>",
|
|
125170
125170
|
"The endpoint to use for queries. Can be used to override the current endpoint."
|
|
125171
125171
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "casualos",
|
|
3
|
-
"version": "3.3.7
|
|
3
|
+
"version": "3.3.7",
|
|
4
4
|
"description": "Command line interface for CasualOS.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@casual-simulation/aux-common": "^3.3.7
|
|
39
|
-
"@casual-simulation/aux-records": "^3.3.7
|
|
38
|
+
"@casual-simulation/aux-common": "^3.3.7",
|
|
39
|
+
"@casual-simulation/aux-records": "^3.3.7",
|
|
40
40
|
"axios": "1.6.2",
|
|
41
41
|
"commander": "12.0.0",
|
|
42
42
|
"conf": "12.0.0",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"**/*.d.ts",
|
|
55
55
|
"**/*.def"
|
|
56
56
|
],
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "c1b149e9618090d123e096558c8152fc46e8db15"
|
|
58
58
|
}
|