@olane/o-storage 0.7.12-alpha.51 → 0.7.12-alpha.53

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,7 +1,7 @@
1
1
  import { StorageProviderTool } from './storage-provider.tool.js';
2
2
  import { DEFAULT_CONFIG_PATH, oAddress } from '@olane/o-core';
3
- import fs from 'fs/promises';
4
- import path from 'path';
3
+ import * as fs from 'fs/promises';
4
+ import * as path from 'path';
5
5
  import { STORAGE_PARAMS } from '../methods/storage.methods.js';
6
6
  export class DiskStorageProvider extends StorageProviderTool {
7
7
  constructor(config) {
@@ -1,5 +1,5 @@
1
1
  import { oAddress } from '@olane/o-core';
2
- import fs from 'fs/promises';
2
+ import * as fs from 'fs/promises';
3
3
  import { STORAGE_PARAMS } from '../methods/storage.methods.js';
4
4
  import { DiskStorageProvider } from './disk-storage-provider.tool.js';
5
5
  export class SecureStorageProvider extends DiskStorageProvider {
@@ -4,7 +4,7 @@ import { oLeaderNode } from '@olane/o-leader';
4
4
  import { IntelligenceTool } from '@olane/o-intelligence';
5
5
  import { StorageTool } from '../src/index.js';
6
6
  import { bigfile } from './data/bigfile.js';
7
- import dotenv from 'dotenv';
7
+ import * as dotenv from 'dotenv';
8
8
  import { oLaneTool } from '@olane/o-lane';
9
9
  dotenv.config();
10
10
  const leader = new oLeaderNode({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olane/o-storage",
3
- "version": "0.7.12-alpha.51",
3
+ "version": "0.7.12-alpha.53",
4
4
  "type": "module",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",
@@ -54,14 +54,14 @@
54
54
  "typescript": "5.4.5"
55
55
  },
56
56
  "dependencies": {
57
- "@olane/o-config": "0.7.12-alpha.51",
58
- "@olane/o-core": "0.7.12-alpha.51",
59
- "@olane/o-lane": "0.7.12-alpha.51",
60
- "@olane/o-node": "0.7.12-alpha.51",
61
- "@olane/o-protocol": "0.7.12-alpha.51",
62
- "@olane/o-tool": "0.7.12-alpha.51",
57
+ "@olane/o-config": "0.7.12-alpha.53",
58
+ "@olane/o-core": "0.7.12-alpha.53",
59
+ "@olane/o-lane": "0.7.12-alpha.53",
60
+ "@olane/o-node": "0.7.12-alpha.53",
61
+ "@olane/o-protocol": "0.7.12-alpha.53",
62
+ "@olane/o-tool": "0.7.12-alpha.53",
63
63
  "debug": "^4.4.1",
64
64
  "dotenv": "^16.5.0"
65
65
  },
66
- "gitHead": "b877e1e95a2bf32845ec30072eb72422fd25aba7"
66
+ "gitHead": "f6cd4162b80dd265aba3a8bf322a009fa0ff81e4"
67
67
  }