namirasoft-log 1.4.16 → 1.4.18
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.
|
@@ -4,7 +4,7 @@ exports.NamirasoftLogServerBase = void 0;
|
|
|
4
4
|
const namirasoft_account_1 = require("namirasoft-account");
|
|
5
5
|
class NamirasoftLogServerBase extends namirasoft_account_1.NSABaseServer {
|
|
6
6
|
constructor(base_url, manager, onError) {
|
|
7
|
-
super(base_url, `1.4.
|
|
7
|
+
super(base_url, `1.4.18`, manager, onError);
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
exports.NamirasoftLogServerBase = NamirasoftLogServerBase;
|
|
@@ -5,7 +5,7 @@ import { LogGroupRetentionUnit } from "../enum/LogGroupRetentionUnit";
|
|
|
5
5
|
export type LogGroupFullRow = {
|
|
6
6
|
id: string;
|
|
7
7
|
user_id: string;
|
|
8
|
-
workspace_id:
|
|
8
|
+
workspace_id: string;
|
|
9
9
|
name: string;
|
|
10
10
|
retention_unit: LogGroupRetentionUnit;
|
|
11
11
|
retention_value: number;
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"framework": "npm",
|
|
9
9
|
"application": "package",
|
|
10
10
|
"private": false,
|
|
11
|
-
"version": "1.4.
|
|
11
|
+
"version": "1.4.18",
|
|
12
12
|
"author": "Amir Abolhasani",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"main": "./dist/index.js",
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"build": ""
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"namirasoft-core": "^1.4.
|
|
20
|
+
"namirasoft-core": "^1.4.43",
|
|
21
21
|
"namirasoft-site": "^1.4.8",
|
|
22
22
|
"namirasoft-node-cli": "^1.4.5",
|
|
23
|
-
"namirasoft-account": "^1.4.
|
|
23
|
+
"namirasoft-account": "^1.4.49"
|
|
24
24
|
},
|
|
25
25
|
"bin": {
|
|
26
26
|
"ns-log": "./dist/command/cli.js"
|
|
@@ -25,6 +25,6 @@ export class NamirasoftLogServerBase extends NSABaseServer
|
|
|
25
25
|
{
|
|
26
26
|
constructor(base_url: string, manager: TokenManager, onError: (error: Error) => void)
|
|
27
27
|
{
|
|
28
|
-
super(base_url, `1.4.
|
|
28
|
+
super(base_url, `1.4.18`, manager, onError);
|
|
29
29
|
}
|
|
30
30
|
};
|