harperdb 4.6.18 → 4.6.20
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/README.md +1 -1
- package/bin/harperdb.js +25 -25
- package/bin/lite.js +22 -22
- package/launchServiceScripts/launchNatsIngestService.js +23 -23
- package/launchServiceScripts/launchNatsReplyService.js +23 -23
- package/launchServiceScripts/launchUpdateNodes4-0-0.js +23 -23
- package/npm-shrinkwrap.json +8 -8
- package/package.json +1 -1
- package/resources/analytics/read.d.ts +2 -1
- package/server/jobs/jobProcess.js +23 -23
- package/server/threads/threadServer.js +23 -23
- package/studio/build-local/asset-manifest.json +2 -2
- package/studio/build-local/index.html +1 -1
- package/studio/build-local/static/js/{main.bfdc024e.js → main.d7e525a4.js} +2 -2
- package/utility/scripts/restartHdb.js +23 -23
- /package/studio/build-local/static/js/{main.bfdc024e.js.LICENSE.txt → main.d7e525a4.js.LICENSE.txt} +0 -0
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "harperdb",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.20",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "harperdb",
|
|
9
|
-
"version": "4.6.
|
|
9
|
+
"version": "4.6.20",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "SEE LICENSE IN LICENSE",
|
|
12
12
|
"dependencies": {
|
|
@@ -3459,9 +3459,9 @@
|
|
|
3459
3459
|
}
|
|
3460
3460
|
},
|
|
3461
3461
|
"node_modules/bl": {
|
|
3462
|
-
"version": "6.1.
|
|
3463
|
-
"resolved": "https://registry.npmjs.org/bl/-/bl-6.1.
|
|
3464
|
-
"integrity": "sha512-
|
|
3462
|
+
"version": "6.1.5",
|
|
3463
|
+
"resolved": "https://registry.npmjs.org/bl/-/bl-6.1.5.tgz",
|
|
3464
|
+
"integrity": "sha512-XylDt2P3JBttAwLpORq/hOEX9eJzP0r6Voa46C/WVvad8D1J0jW5876txB8FnzKtbdnU6X4Y1vOEvC6PllJrDg==",
|
|
3465
3465
|
"license": "MIT",
|
|
3466
3466
|
"dependencies": {
|
|
3467
3467
|
"@types/readable-stream": "^4.0.0",
|
|
@@ -3538,9 +3538,9 @@
|
|
|
3538
3538
|
"license": "MIT"
|
|
3539
3539
|
},
|
|
3540
3540
|
"node_modules/bowser": {
|
|
3541
|
-
"version": "2.
|
|
3542
|
-
"resolved": "https://registry.npmjs.org/bowser/-/bowser-2.
|
|
3543
|
-
"integrity": "sha512-
|
|
3541
|
+
"version": "2.13.0",
|
|
3542
|
+
"resolved": "https://registry.npmjs.org/bowser/-/bowser-2.13.0.tgz",
|
|
3543
|
+
"integrity": "sha512-yHAbSRuT6LTeKi6k2aS40csueHqgAsFEgmrOsfRyFpJnFv5O2hl9FYmWEUZ97gZ/dG17U4IQQcTx4YAFYPuWRQ==",
|
|
3544
3544
|
"license": "MIT"
|
|
3545
3545
|
},
|
|
3546
3546
|
"node_modules/brace-expansion": {
|
package/package.json
CHANGED
|
@@ -13,10 +13,11 @@ export declare function get(metric: string, getAttributes?: string[], startTime?
|
|
|
13
13
|
type MetricType = 'builtin' | 'custom';
|
|
14
14
|
interface ListMetricsRequest {
|
|
15
15
|
metric_types: MetricType[];
|
|
16
|
+
custom_metrics_window?: number;
|
|
16
17
|
}
|
|
17
18
|
type ListMetricsResponse = string[];
|
|
18
19
|
export declare function listMetricsOp(req: ListMetricsRequest): Promise<ListMetricsResponse>;
|
|
19
|
-
export declare function listMetrics(metricTypes?: MetricType[]): Promise<string[]>;
|
|
20
|
+
export declare function listMetrics(metricTypes?: MetricType[], customWindow?: number): Promise<string[]>;
|
|
20
21
|
interface DescribeMetricRequest {
|
|
21
22
|
metric: string;
|
|
22
23
|
}
|