neozip-cli 0.75.2-beta → 0.80.0

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 (31) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/DOCUMENTATION.md +9 -1
  3. package/README.md +22 -10
  4. package/dist/src/commands/mintTimestampProof.js +335 -0
  5. package/dist/src/commands/verifyEmail.js +146 -0
  6. package/dist/src/config/ConfigSetup.js +50 -20
  7. package/dist/src/config/ConfigStore.js +36 -3
  8. package/dist/src/index.js +1 -1
  9. package/dist/src/neolist.js +18 -10
  10. package/dist/src/neounzip.js +305 -60
  11. package/dist/src/neozip/blockchain.js +5 -5
  12. package/dist/src/neozip/createZip.js +207 -41
  13. package/dist/src/neozip/upgradeZip.js +182 -0
  14. package/dist/src/neozip.js +143 -8
  15. package/env.example +10 -0
  16. package/package.json +87 -81
  17. package/dist/neozipkit-bundles/blockchain.js +0 -13725
  18. package/dist/neozipkit-bundles/browser.js +0 -6186
  19. package/dist/neozipkit-bundles/core.js +0 -3839
  20. package/dist/neozipkit-bundles/node.js +0 -17730
  21. package/dist/neozipkit-wrappers/blockchain/core/contracts.js +0 -16
  22. package/dist/neozipkit-wrappers/blockchain/index.js +0 -2
  23. package/dist/neozipkit-wrappers/core/ZipDecompress.js +0 -2
  24. package/dist/neozipkit-wrappers/core/components/HashCalculator.js +0 -2
  25. package/dist/neozipkit-wrappers/core/components/Logger.js +0 -2
  26. package/dist/neozipkit-wrappers/core/constants/Errors.js +0 -2
  27. package/dist/neozipkit-wrappers/core/constants/Headers.js +0 -2
  28. package/dist/neozipkit-wrappers/core/encryption/ZipCrypto.js +0 -7
  29. package/dist/neozipkit-wrappers/core/index.js +0 -3
  30. package/dist/neozipkit-wrappers/index.js +0 -13
  31. package/dist/neozipkit-wrappers/node/index.js +0 -2
@@ -1,16 +0,0 @@
1
- const blockchain = require('../../../neozipkit-bundles/blockchain.js');
2
- // Export contracts-specific functions and constants
3
- module.exports = {
4
- CONTRACT_CONFIGS: blockchain.CONTRACT_CONFIGS,
5
- NZIP_CONTRACT_ABI: blockchain.NZIP_CONTRACT_ABI,
6
- NZIP_CONTRACT_ABI_WEB3: blockchain.NZIP_CONTRACT_ABI_WEB3,
7
- CURRENT_DEPLOYMENT: blockchain.CURRENT_DEPLOYMENT,
8
- DEFAULT_NETWORK: blockchain.DEFAULT_NETWORK,
9
- getContractConfig: blockchain.getContractConfig,
10
- getChainIdByName: blockchain.getChainIdByName,
11
- getSupportedNetworkNames: blockchain.getSupportedNetworkNames,
12
- getSupportedNetworks: blockchain.getSupportedNetworks,
13
- isNetworkSupported: blockchain.isNetworkSupported,
14
- getNetworkByName: blockchain.getNetworkByName,
15
- ContractConfig: blockchain.ContractConfig
16
- };
@@ -1,2 +0,0 @@
1
- // Blockchain neozipkit wrapper - re-exports from blockchain bundle
2
- module.exports = require('../../neozipkit-bundles/blockchain.js');
@@ -1,2 +0,0 @@
1
- const core = require('../../neozipkit-bundles/core.js');
2
- module.exports = core.ZipDecompress || core.default?.ZipDecompress || core;
@@ -1,2 +0,0 @@
1
- const core = require('../../../neozipkit-bundles/core.js');
2
- module.exports = core.HashCalculator || core.default?.HashCalculator || core;
@@ -1,2 +0,0 @@
1
- const core = require('../../../neozipkit-bundles/core.js');
2
- module.exports = { Logger: core.Logger, configureLoggerFromEnvironment: core.configureLoggerFromEnvironment };
@@ -1,2 +0,0 @@
1
- const core = require('../../../neozipkit-bundles/core.js');
2
- module.exports = core.Errors || core.default?.Errors || {};
@@ -1,2 +0,0 @@
1
- const core = require('../../../neozipkit-bundles/core.js');
2
- module.exports = core;
@@ -1,7 +0,0 @@
1
- const core = require('../../../neozipkit-bundles/core.js');
2
- module.exports = {
3
- ZipCrypto: core.ZipCrypto,
4
- crc32: core.crc32,
5
- crc32update: core.crc32update,
6
- sha256: core.sha256
7
- };
@@ -1,3 +0,0 @@
1
- // Core module wrapper
2
- const core = require('../../neozipkit-bundles/core.js');
3
- module.exports = core;
@@ -1,13 +0,0 @@
1
- // Main neozipkit wrapper - re-exports from core and blockchain bundles
2
- const core = require('../neozipkit-bundles/core.js');
3
- const blockchain = require('../neozipkit-bundles/blockchain.js');
4
- const node = require('../neozipkit-bundles/node.js');
5
-
6
- // Merge all exports
7
- module.exports = {
8
- ...core,
9
- ...blockchain,
10
- ...node,
11
- // Ensure default export is available
12
- default: core.default || core
13
- };
@@ -1,2 +0,0 @@
1
- // Node.js neozipkit wrapper - re-exports from node bundle
2
- module.exports = require('../../neozipkit-bundles/node.js');