@immich/cli 2.2.75 → 2.2.78

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 (3) hide show
  1. package/.nvmrc +1 -1
  2. package/dist/index.js +7 -3
  3. package/package.json +4 -4
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- 22.17.1
1
+ 22.18.0
package/dist/index.js CHANGED
@@ -3414,6 +3414,7 @@ var Permission;
3414
3414
  Permission2["ServerApkLinks"] = "server.apkLinks";
3415
3415
  Permission2["ServerStorage"] = "server.storage";
3416
3416
  Permission2["ServerStatistics"] = "server.statistics";
3417
+ Permission2["ServerVersionCheck"] = "server.versionCheck";
3417
3418
  Permission2["ServerLicenseRead"] = "serverLicense.read";
3418
3419
  Permission2["ServerLicenseUpdate"] = "serverLicense.update";
3419
3420
  Permission2["ServerLicenseDelete"] = "serverLicense.delete";
@@ -3462,6 +3463,7 @@ var Permission;
3462
3463
  Permission2["AdminUserRead"] = "adminUser.read";
3463
3464
  Permission2["AdminUserUpdate"] = "adminUser.update";
3464
3465
  Permission2["AdminUserDelete"] = "adminUser.delete";
3466
+ Permission2["AdminAuthUnlinkAll"] = "adminAuth.unlinkAll";
3465
3467
  })(Permission || (Permission = {}));
3466
3468
  var AssetMediaStatus;
3467
3469
  (function(AssetMediaStatus2) {
@@ -3578,9 +3580,11 @@ var SyncEntityType;
3578
3580
  SyncEntityType2["AlbumUserV1"] = "AlbumUserV1";
3579
3581
  SyncEntityType2["AlbumUserBackfillV1"] = "AlbumUserBackfillV1";
3580
3582
  SyncEntityType2["AlbumUserDeleteV1"] = "AlbumUserDeleteV1";
3581
- SyncEntityType2["AlbumAssetV1"] = "AlbumAssetV1";
3583
+ SyncEntityType2["AlbumAssetCreateV1"] = "AlbumAssetCreateV1";
3584
+ SyncEntityType2["AlbumAssetUpdateV1"] = "AlbumAssetUpdateV1";
3582
3585
  SyncEntityType2["AlbumAssetBackfillV1"] = "AlbumAssetBackfillV1";
3583
- SyncEntityType2["AlbumAssetExifV1"] = "AlbumAssetExifV1";
3586
+ SyncEntityType2["AlbumAssetExifCreateV1"] = "AlbumAssetExifCreateV1";
3587
+ SyncEntityType2["AlbumAssetExifUpdateV1"] = "AlbumAssetExifUpdateV1";
3584
3588
  SyncEntityType2["AlbumAssetExifBackfillV1"] = "AlbumAssetExifBackfillV1";
3585
3589
  SyncEntityType2["AlbumToAssetV1"] = "AlbumToAssetV1";
3586
3590
  SyncEntityType2["AlbumToAssetDeleteV1"] = "AlbumToAssetDeleteV1";
@@ -20011,7 +20015,7 @@ const serverInfo = async (options2) => {
20011
20015
  console.log(` Videos: ${stats.videos}`);
20012
20016
  console.log(` Total: ${stats.total}`);
20013
20017
  };
20014
- const version = "2.2.75";
20018
+ const version = "2.2.78";
20015
20019
  const defaultConfigDirectory = path$1.join(os.homedir(), ".config/immich/");
20016
20020
  const program = new Command().name("immich").version(version).description("Command line interface for Immich").addOption(
20017
20021
  new Option("-d, --config-directory <directory>", "Configuration directory where auth.yml will be stored").env("IMMICH_CONFIG_DIR").default(defaultConfigDirectory)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@immich/cli",
3
- "version": "2.2.75",
3
+ "version": "2.2.78",
4
4
  "description": "Command Line Interface (CLI) for Immich",
5
5
  "type": "module",
6
6
  "exports": "./dist/index.js",
@@ -21,7 +21,7 @@
21
21
  "@types/lodash-es": "^4.17.12",
22
22
  "@types/micromatch": "^4.0.9",
23
23
  "@types/mock-fs": "^4.13.1",
24
- "@types/node": "^22.16.5",
24
+ "@types/node": "^22.17.0",
25
25
  "@vitest/coverage-v8": "^3.0.0",
26
26
  "byte-size": "^9.0.0",
27
27
  "cli-progress": "^3.12.0",
@@ -29,7 +29,7 @@
29
29
  "eslint": "^9.14.0",
30
30
  "eslint-config-prettier": "^10.1.8",
31
31
  "eslint-plugin-prettier": "^5.1.3",
32
- "eslint-plugin-unicorn": "^59.0.0",
32
+ "eslint-plugin-unicorn": "^60.0.0",
33
33
  "globals": "^16.0.0",
34
34
  "mock-fs": "^5.2.0",
35
35
  "prettier": "^3.2.5",
@@ -69,6 +69,6 @@
69
69
  "micromatch": "^4.0.8"
70
70
  },
71
71
  "volta": {
72
- "node": "22.17.1"
72
+ "node": "22.18.0"
73
73
  }
74
74
  }