spindb 0.32.2 → 0.34.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.
- package/LICENSE +8 -0
- package/README.md +112 -855
- package/cli/commands/connect.ts +99 -0
- package/cli/commands/create.ts +5 -1
- package/cli/commands/engines.ts +78 -1
- package/cli/commands/menu/backup-handlers.ts +9 -0
- package/cli/commands/menu/container-handlers.ts +41 -12
- package/cli/commands/menu/engine-handlers.ts +4 -0
- package/cli/commands/menu/index.ts +72 -1
- package/cli/commands/menu/settings-handlers.ts +3 -0
- package/cli/commands/menu/shell-handlers.ts +592 -12
- package/cli/commands/ports.ts +211 -0
- package/cli/constants.ts +7 -3
- package/cli/helpers.ts +73 -0
- package/cli/index.ts +2 -0
- package/cli/ui/prompts.ts +4 -2
- package/config/backup-formats.ts +14 -0
- package/config/engine-defaults.ts +13 -0
- package/config/engines.json +17 -0
- package/core/config-manager.ts +18 -0
- package/core/dblab-utils.ts +113 -0
- package/core/dependency-manager.ts +6 -0
- package/core/docker-exporter.ts +13 -0
- package/core/pgweb-utils.ts +62 -0
- package/engines/base-engine.ts +9 -0
- package/engines/cockroachdb/index.ts +3 -0
- package/engines/ferretdb/index.ts +46 -27
- package/engines/index.ts +4 -0
- package/engines/influxdb/README.md +180 -0
- package/engines/influxdb/api-client.ts +64 -0
- package/engines/influxdb/backup.ts +160 -0
- package/engines/influxdb/binary-manager.ts +110 -0
- package/engines/influxdb/binary-urls.ts +69 -0
- package/engines/influxdb/hostdb-releases.ts +23 -0
- package/engines/influxdb/index.ts +1227 -0
- package/engines/influxdb/restore.ts +417 -0
- package/engines/influxdb/version-maps.ts +75 -0
- package/engines/influxdb/version-validator.ts +128 -0
- package/engines/postgresql/index.ts +3 -0
- package/package.json +2 -1
- package/types/index.ts +17 -0
package/LICENSE
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
<https://polyformproject.org/licenses/noncommercial/1.0.0>
|
|
4
4
|
|
|
5
|
+
## Commercial Licensing
|
|
6
|
+
|
|
7
|
+
This software is free for noncommercial use under the terms below.
|
|
8
|
+
Commercial use — including use in or for a commercial product,
|
|
9
|
+
service, or internal business operation — requires a separate
|
|
10
|
+
commercial license. To inquire about commercial licensing, contact
|
|
11
|
+
the licensor at **bob@bbass.co**.
|
|
12
|
+
|
|
5
13
|
## Acceptance
|
|
6
14
|
|
|
7
15
|
In order to get any license under these terms, you must agree
|