casualos 3.10.1 → 3.10.2-alpha.20729512076

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.
Files changed (2) hide show
  1. package/dist/cli.js +11 -11
  2. package/package.json +67 -68
package/dist/cli.js CHANGED
@@ -146480,7 +146480,7 @@ function getProcedureMetadata(procedures) {
146480
146480
  function getSchemaMetadata(schema) {
146481
146481
  if (schema instanceof $ZodPipe) {
146482
146482
  return getSchemaMetadata(schema._zod.def.out);
146483
- } else if (schema instanceof $ZodString) {
146483
+ } else if (schema instanceof $ZodString || schema instanceof $ZodBigInt) {
146484
146484
  return { type: "string", description: getDescription(schema) };
146485
146485
  } else if (schema instanceof $ZodBoolean) {
146486
146486
  return { type: "boolean", description: getDescription(schema) };
@@ -147981,7 +147981,7 @@ var trace = TraceAPI.getInstance();
147981
147981
  function hashLowEntropyPasswordWithSalt2(password, salt) {
147982
147982
  const tracer = trace.getTracer(
147983
147983
  "InstrumentedHashHelpers",
147984
- false ? void 0 : "v3.10.1"
147984
+ false ? void 0 : "v3.10.2-alpha.20729512076"
147985
147985
  );
147986
147986
  return tracer.startActiveSpan(
147987
147987
  "hashLowEntropyPasswordWithSalt",
@@ -147999,7 +147999,7 @@ function hashLowEntropyPasswordWithSalt2(password, salt) {
147999
147999
  function hashHighEntropyPasswordWithSalt2(password, salt) {
148000
148000
  const tracer = trace.getTracer(
148001
148001
  "InstrumentedHashHelpers",
148002
- false ? void 0 : "v3.10.1"
148002
+ false ? void 0 : "v3.10.2-alpha.20729512076"
148003
148003
  );
148004
148004
  return tracer.startActiveSpan(
148005
148005
  "hashHighEntropyPasswordWithSalt",
@@ -148017,7 +148017,7 @@ function hashHighEntropyPasswordWithSalt2(password, salt) {
148017
148017
  function verifyPasswordAgainstHashes2(password, salt, hashes) {
148018
148018
  const tracer = trace.getTracer(
148019
148019
  "InstrumentedHashHelpers",
148020
- false ? void 0 : "v3.10.1"
148020
+ false ? void 0 : "v3.10.2-alpha.20729512076"
148021
148021
  );
148022
148022
  return tracer.startActiveSpan(
148023
148023
  "verifyPasswordAgainstHashes",
@@ -155547,7 +155547,7 @@ var import_semantic_conventions = __toESM(require_src3());
155547
155547
  function traced(tracerName, options = {}, metricOptions = {}) {
155548
155548
  const tracer = trace.getTracer(
155549
155549
  tracerName,
155550
- false ? void 0 : "v3.10.1"
155550
+ false ? void 0 : "v3.10.2-alpha.20729512076"
155551
155551
  );
155552
155552
  return function(target, propertyKey, descriptor) {
155553
155553
  const originalMethod = descriptor.value;
@@ -155629,7 +155629,7 @@ function getHistogram(meter) {
155629
155629
  }
155630
155630
  return metrics.getMeter(
155631
155631
  meter.meter,
155632
- false ? void 0 : "v3.10.1"
155632
+ false ? void 0 : "v3.10.2-alpha.20729512076"
155633
155633
  ).createHistogram(meter.name, meter.options);
155634
155634
  }
155635
155635
  function getCounter(meter) {
@@ -155638,7 +155638,7 @@ function getCounter(meter) {
155638
155638
  }
155639
155639
  return metrics.getMeter(
155640
155640
  meter.meter,
155641
- false ? void 0 : "v3.10.1"
155641
+ false ? void 0 : "v3.10.2-alpha.20729512076"
155642
155642
  ).createCounter(meter.name, meter.options);
155643
155643
  }
155644
155644
  function traceHttpResponse(options = {}) {
@@ -167398,7 +167398,7 @@ var RecordsServer = class {
167398
167398
  this._viewTemplateRenderer = viewTemplateRenderer;
167399
167399
  this._tracer = trace.getTracer(
167400
167400
  "RecordsServer",
167401
- false ? void 0 : "v3.10.1"
167401
+ false ? void 0 : "v3.10.2-alpha.20729512076"
167402
167402
  );
167403
167403
  this._purchasableItems = purchasableItemsController;
167404
167404
  this._procedures = this._createProcedures();
@@ -171278,8 +171278,8 @@ var RecordsServer = class {
171278
171278
  return {
171279
171279
  success: true,
171280
171280
  ...metadata,
171281
- version: true ? "v3.10.1" : void 0,
171282
- versionHash: true ? "13be68fe3f545db9070276b8f8d8639853985927" : void 0
171281
+ version: true ? "v3.10.2-alpha.20729512076" : void 0,
171282
+ versionHash: true ? "cd6977965122eb8a779f0a26499e48851cd04167" : void 0
171283
171283
  };
171284
171284
  }),
171285
171285
  getPurchasableItem: procedure().origins(true).http("GET", "/api/v2/records/purchasableItems").inputs(
@@ -222820,7 +222820,7 @@ var config2 = new Conf({
222820
222820
  projectName: "casualos-cli"
222821
222821
  });
222822
222822
  var program2 = new Command();
222823
- program2.name("casualos").description("A CLI for CasualOS").version("v3.10.1").option(
222823
+ program2.name("casualos").description("A CLI for CasualOS").version("v3.10.2-alpha.20729512076").option(
222824
222824
  "-e, --endpoint <url>",
222825
222825
  "The endpoint to use for queries. Can be used to override the current endpoint."
222826
222826
  );
package/package.json CHANGED
@@ -1,69 +1,68 @@
1
1
  {
2
- "name": "casualos",
3
- "version": "3.10.1",
4
- "description": "Command line interface for CasualOS.",
5
- "main": "./dist/index.js",
6
- "types": "index.d.ts",
7
- "module": "./dist/index.js",
8
- "bin": {
9
- "casualos": "./dist/cli.js"
10
- },
11
- "scripts": {
12
- "start": "node ./dist/cli.js",
13
- "dev": "npm run build && npm start",
14
- "build": "node ./script/build-cli.mjs",
15
- "test": "jest",
16
- "test:watch": "jest --watchAll"
17
- },
18
- "repository": {
19
- "type": "git",
20
- "url": "git+https://github.com/casual-simulation/casualos.git"
21
- },
22
- "keywords": [
23
- "aux",
24
- "so4",
25
- "realtime",
26
- "crdt"
27
- ],
28
- "author": "Casual Simulation, Inc.",
29
- "license": "AGPL-3.0-only",
30
- "bugs": {
31
- "url": "https://github.com/casual-simulation/casualos/issues"
32
- },
33
- "homepage": "https://github.com/casual-simulation/casualos#readme",
34
- "publishConfig": {
35
- "access": "public"
36
- },
37
- "dependencies": {
38
- "@casual-simulation/aux-common": "^3.10.0",
39
- "@casual-simulation/aux-records": "^3.10.0",
40
- "@casual-simulation/aux-runtime": "^3.10.0",
41
- "@octokit/app": "^15.1.0",
42
- "@octokit/auth-oauth-device": "^7.1.1",
43
- "@octokit/core": "^6.1.2",
44
- "axios": "1.7.7",
45
- "commander": "12.0.0",
46
- "conf": "12.0.0",
47
- "esbuild": "0.25.11",
48
- "octokit": "^4.0.2",
49
- "open": "10.1.0",
50
- "prompts": "2.4.2",
51
- "simple-git": "^3.24.0",
52
- "tweetnacl": "1.0.3",
53
- "uuid": "10.0.0",
54
- "zod": "4.1.12"
55
- },
56
- "devDependencies": {
57
- "@types/prompts": "^2.4.9"
58
- },
59
- "files": [
60
- "/README.md",
61
- "/LICENSE.txt",
62
- "**/*.js",
63
- "**/*.js.map",
64
- "**/*.d.ts",
65
- "**/*.def",
66
- "templates/**"
67
- ],
68
- "gitHead": "13be68fe3f545db9070276b8f8d8639853985927"
69
- }
2
+ "name": "casualos",
3
+ "version": "3.10.2-alpha.20729512076",
4
+ "description": "Command line interface for CasualOS.",
5
+ "main": "./dist/index.js",
6
+ "types": "index.d.ts",
7
+ "module": "./dist/index.js",
8
+ "bin": {
9
+ "casualos": "./dist/cli.js"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/casual-simulation/casualos.git"
14
+ },
15
+ "keywords": [
16
+ "aux",
17
+ "so4",
18
+ "realtime",
19
+ "crdt"
20
+ ],
21
+ "author": "Casual Simulation, Inc.",
22
+ "license": "AGPL-3.0-only",
23
+ "bugs": {
24
+ "url": "https://github.com/casual-simulation/casualos/issues"
25
+ },
26
+ "homepage": "https://github.com/casual-simulation/casualos#readme",
27
+ "publishConfig": {
28
+ "access": "public"
29
+ },
30
+ "dependencies": {
31
+ "@casual-simulation/aux-common": "^3.10.0",
32
+ "@casual-simulation/aux-records": "^3.10.0",
33
+ "@casual-simulation/aux-runtime": "^3.10.0",
34
+ "@octokit/app": "^15.1.0",
35
+ "@octokit/auth-oauth-device": "^7.1.1",
36
+ "@octokit/core": "^6.1.2",
37
+ "axios": "1.7.7",
38
+ "commander": "12.0.0",
39
+ "conf": "12.0.0",
40
+ "esbuild": "0.25.11",
41
+ "octokit": "^4.0.2",
42
+ "open": "10.1.0",
43
+ "prompts": "2.4.2",
44
+ "simple-git": "^3.24.0",
45
+ "tweetnacl": "1.0.3",
46
+ "uuid": "10.0.0",
47
+ "zod": "4.1.12"
48
+ },
49
+ "devDependencies": {
50
+ "@types/prompts": "^2.4.9"
51
+ },
52
+ "files": [
53
+ "/README.md",
54
+ "/LICENSE.txt",
55
+ "**/*.js",
56
+ "**/*.js.map",
57
+ "**/*.d.ts",
58
+ "**/*.def",
59
+ "templates/**"
60
+ ],
61
+ "scripts": {
62
+ "start": "node ./dist/cli.js",
63
+ "dev": "npm run build && npm start",
64
+ "build": "node ./script/build-cli.mjs",
65
+ "test": "jest",
66
+ "test:watch": "jest --watchAll"
67
+ }
68
+ }