diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 141747a2..e3ffb415 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -5,6 +5,7 @@ on: jobs: build: runs-on: ubuntu-latest + environment: npm steps: - name: Checkout uses: actions/checkout@v2 diff --git a/package.json b/package.json index 8b0432b7..7085c548 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "bugs": { "url": "https://github.com/FilenCloudDienste/filen-sdk-ts/issues" }, - "homepage": "https://github.com/FilenCloudDienste/filen-sdk-ts#readme", + "homepage": "https://filen.io", "devDependencies": { "@babel/core": "^7.23.9", "@babel/preset-env": "^7.23.9", diff --git a/src/crypto/decrypt.ts b/src/crypto/decrypt.ts index d0312c48..b53425df 100644 --- a/src/crypto/decrypt.ts +++ b/src/crypto/decrypt.ts @@ -6,6 +6,14 @@ import nodeCrypto from "crypto" import type { FileMetadata, FolderMetadata } from "../types" import { convertTimestampToMs } from "../utils" +/** + * Decrypt + * @date 1/31/2024 - 6:36:57 PM + * + * @export + * @class Decrypt + * @typedef {Decrypt} + */ export default class Decrypt { private readonly config: CryptoConfig private readonly textEncoder = new TextEncoder()