@arkstack/filesystem 0.17.15 → 0.17.17

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.
@@ -1,5 +1,4 @@
1
1
  import { Command } from "@h3ravel/musket";
2
-
3
2
  //#region src/commands/StorageLinkCommand.d.ts
4
3
  declare class StorageLinkCommand extends Command {
5
4
  protected signature: string;
package/dist/index.d.ts CHANGED
@@ -2,7 +2,6 @@ import { DriveDirectory, DriveFile, DriveManager } from "flydrive";
2
2
  import { Readable } from "node:stream";
3
3
  import { DriverContract, ObjectMetaData, ObjectVisibility, SignedURLOptions, WriteOptions } from "flydrive/types";
4
4
  import { GCSDriverOptions } from "flydrive/drivers/gcs/types";
5
-
6
5
  //#region src/types.d.ts
7
6
  interface FileLike {
8
7
  originalname: string;
@@ -47,7 +46,7 @@ type CustomDiskConfig = keyof CustomDiskDriverRegistry extends never ? {
47
46
  [key: string]: any;
48
47
  } : { [K in keyof CustomDiskDriverRegistry]: CustomDiskDriverRegistry[K] & {
49
48
  driver: K;
50
- } }[keyof CustomDiskDriverRegistry];
49
+ }; }[keyof CustomDiskDriverRegistry];
51
50
  type DiskConfig = LocalDriverConfig & {
52
51
  driver: 'local' | 'public';
53
52
  } | FtpDriverConfig & {
@@ -305,9 +304,7 @@ declare class Storage<D extends keyof KnownDisks | keyof CustomDiskDriverRegistr
305
304
  *
306
305
  * @param param0
307
306
  */
308
- static link({
309
- force
310
- }?: {
307
+ static link({ force }?: {
311
308
  force?: boolean;
312
309
  }): void;
313
310
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arkstack/filesystem",
3
- "version": "0.17.15",
3
+ "version": "0.17.17",
4
4
  "type": "module",
5
5
  "description": "Filesystem module for Arkstack, providing shared file storage and filesystem utitlities for the framework.",
6
6
  "homepage": "https://arkstack.toneflix.net",
@@ -32,17 +32,17 @@
32
32
  "./package.json": "./package.json"
33
33
  },
34
34
  "peerDependencies": {
35
- "@h3ravel/musket": "^2.2.2"
35
+ "@h3ravel/musket": "^2.2.13"
36
36
  },
37
37
  "dependencies": {
38
- "@h3ravel/shared": "^2.2.4",
38
+ "@h3ravel/shared": "^2.2.7",
39
39
  "@google-cloud/storage": "^7.21.0",
40
40
  "@aws-sdk/client-s3": "^3.1011.0",
41
41
  "@aws-sdk/s3-request-presigner": "^3.1011.0",
42
42
  "flydrive": "^2.0.0",
43
43
  "ssh2-sftp-client": "^12.1.0",
44
- "@arkstack/common": "^0.17.15",
45
- "@arkstack/contract": "^0.17.15"
44
+ "@arkstack/common": "^0.17.17",
45
+ "@arkstack/contract": "^0.17.17"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/ssh2-sftp-client": "^9.0.6"