namirasoft-log 1.4.7 → 1.4.8
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/.ns-sdkg-file-keep +11 -11
- package/dist/NamirasoftLogServerBase.d.ts +2 -2
- package/dist/NamirasoftLogServerBase.js +1 -1
- package/dist/NamirasoftLogServerBase.js.map +1 -1
- package/dist/StreamFile.js +17 -7
- package/dist/StreamFile.js.map +1 -1
- package/dist/meta/LogGroupCategoryMetaTable.d.ts +4 -3
- package/dist/meta/LogGroupCategoryMetaTable.js +10 -9
- package/dist/meta/LogGroupCategoryMetaTable.js.map +1 -1
- package/dist/meta/LogGroupFieldMetaTable.d.ts +4 -3
- package/dist/meta/LogGroupFieldMetaTable.js +12 -11
- package/dist/meta/LogGroupFieldMetaTable.js.map +1 -1
- package/dist/meta/LogGroupMetaTable.d.ts +4 -3
- package/dist/meta/LogGroupMetaTable.js +12 -11
- package/dist/meta/LogGroupMetaTable.js.map +1 -1
- package/dist/meta/LogGroupTagMetaTable.d.ts +4 -3
- package/dist/meta/LogGroupTagMetaTable.js +12 -11
- package/dist/meta/LogGroupTagMetaTable.js.map +1 -1
- package/dist/meta/LogMetaTable.d.ts +4 -3
- package/dist/meta/LogMetaTable.js +12 -11
- package/dist/meta/LogMetaTable.js.map +1 -1
- package/dist/meta/MetaDatabase.d.ts +2 -1
- package/dist/meta/MetaDatabase.js +8 -6
- package/dist/meta/MetaDatabase.js.map +1 -1
- package/package.json +27 -27
- package/src/BaseFormatter.ts +36 -36
- package/src/FormatterFull.ts +19 -19
- package/src/FormatterShort.ts +12 -12
- package/src/IFormatter.ts +5 -5
- package/src/ILogger.ts +17 -17
- package/src/IStream.ts +4 -4
- package/src/Log.ts +13 -13
- package/src/LogLevel.ts +11 -11
- package/src/Logger.ts +126 -126
- package/src/NamirasoftLogServer.ts +50 -50
- package/src/NamirasoftLogServerBase.ts +29 -29
- package/src/NamirasoftLogServerLog.ts +56 -56
- package/src/NamirasoftLogServerLogGroup.ts +69 -69
- package/src/NamirasoftLogServerLogGroupCategory.ts +62 -62
- package/src/NamirasoftLogServerLogGroupField.ts +69 -69
- package/src/NamirasoftLogServerLogGroupTag.ts +69 -69
- package/src/StreamConsole.ts +37 -37
- package/src/StreamFile.ts +47 -47
- package/src/StreamNamirasoftLog.ts +30 -30
- package/src/command/LogCommand.ts +35 -35
- package/src/command/LogGroupCategoryListCommand.ts +44 -44
- package/src/command/LogGroupFieldListCommand.ts +44 -44
- package/src/command/LogGroupListCommand.ts +44 -44
- package/src/command/LogGroupTagListCommand.ts +44 -44
- package/src/command/LogListCommand.ts +44 -44
- package/src/command/cli.ts +44 -44
- package/src/meta/LogGroupCategoryMetaTable.ts +45 -44
- package/src/meta/LogGroupFieldMetaTable.ts +49 -48
- package/src/meta/LogGroupMetaTable.ts +49 -48
- package/src/meta/LogGroupTagMetaTable.ts +49 -48
- package/src/meta/LogMetaTable.ts +14 -13
- package/src/meta/MetaDatabase.ts +8 -6
- package/src/row/LogGroupCategoryRow.ts +28 -28
- package/src/row/LogGroupFieldRow.ts +30 -30
- package/src/row/LogGroupRow.ts +32 -32
- package/src/row/LogGroupTagRow.ts +30 -30
|
@@ -1,49 +1,50 @@
|
|
|
1
|
-
/****************************************************************/
|
|
2
|
-
/* */
|
|
3
|
-
/* This is an Auto-Generated File */
|
|
4
|
-
/* Made By */
|
|
5
|
-
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
-
/* */
|
|
7
|
-
/****************************************************************/
|
|
8
|
-
/****************************************************************/
|
|
9
|
-
/* */
|
|
10
|
-
/* Please do not make any change to this file */
|
|
11
|
-
/* If any changed is reqired, ns-sdkg command must be used */
|
|
12
|
-
/* */
|
|
13
|
-
/****************************************************************/
|
|
14
|
-
/****************************************************************/
|
|
15
|
-
/* */
|
|
16
|
-
/* Namira Software Corporation */
|
|
17
|
-
/* https://namirasoft.com */
|
|
18
|
-
/* */
|
|
19
|
-
/****************************************************************/
|
|
20
|
-
|
|
21
|
-
import { BaseMetaColumn,
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
1
|
+
/****************************************************************/
|
|
2
|
+
/* */
|
|
3
|
+
/* This is an Auto-Generated File */
|
|
4
|
+
/* Made By */
|
|
5
|
+
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
+
/* */
|
|
7
|
+
/****************************************************************/
|
|
8
|
+
/****************************************************************/
|
|
9
|
+
/* */
|
|
10
|
+
/* Please do not make any change to this file */
|
|
11
|
+
/* If any changed is reqired, ns-sdkg command must be used */
|
|
12
|
+
/* */
|
|
13
|
+
/****************************************************************/
|
|
14
|
+
/****************************************************************/
|
|
15
|
+
/* */
|
|
16
|
+
/* Namira Software Corporation */
|
|
17
|
+
/* https://namirasoft.com */
|
|
18
|
+
/* */
|
|
19
|
+
/****************************************************************/
|
|
20
|
+
|
|
21
|
+
import { BaseMetaColumn, BaseUUID } from "namirasoft-core";
|
|
22
|
+
import { NSBaseMetaDatabase, NSBaseMetaTable } from "namirasoft-site";
|
|
23
|
+
|
|
24
|
+
export class LogGroupMetaTable extends NSBaseMetaTable
|
|
25
|
+
{
|
|
26
|
+
public override columns: {
|
|
27
|
+
id: BaseMetaColumn;
|
|
28
|
+
user_id: BaseMetaColumn;
|
|
29
|
+
workspace_id: BaseMetaColumn;
|
|
30
|
+
name: BaseMetaColumn;
|
|
31
|
+
retention_unit: BaseMetaColumn;
|
|
32
|
+
retention_value: BaseMetaColumn;
|
|
33
|
+
created_at: BaseMetaColumn;
|
|
34
|
+
updated_at: BaseMetaColumn;
|
|
35
|
+
}
|
|
36
|
+
constructor(database: NSBaseMetaDatabase)
|
|
37
|
+
{
|
|
38
|
+
super(database, "log_group", "Log Group", new BaseUUID(""));
|
|
39
|
+
this.columns = {
|
|
40
|
+
id: new BaseMetaColumn(this, "id", "Id", "String", true),
|
|
41
|
+
user_id: new BaseMetaColumn(this, "user_id", "User Id", "String", true),
|
|
42
|
+
workspace_id: new BaseMetaColumn(this, "workspace_id", "Workspace Id", "String", true),
|
|
43
|
+
name: new BaseMetaColumn(this, "name", "Name", "String", true),
|
|
44
|
+
retention_unit: new BaseMetaColumn(this, "retention_unit", "Retention Unit", "Enum", true),
|
|
45
|
+
retention_value: new BaseMetaColumn(this, "retention_value", "Retention Value", "Integer", true),
|
|
46
|
+
created_at: new BaseMetaColumn(this, "created_at", "Created At", "DateTime", true),
|
|
47
|
+
updated_at: new BaseMetaColumn(this, "updated_at", "Updated At", "DateTime", true),
|
|
48
|
+
};
|
|
49
|
+
}
|
|
49
50
|
};
|
|
@@ -1,49 +1,50 @@
|
|
|
1
|
-
/****************************************************************/
|
|
2
|
-
/* */
|
|
3
|
-
/* This is an Auto-Generated File */
|
|
4
|
-
/* Made By */
|
|
5
|
-
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
-
/* */
|
|
7
|
-
/****************************************************************/
|
|
8
|
-
/****************************************************************/
|
|
9
|
-
/* */
|
|
10
|
-
/* Please do not make any change to this file */
|
|
11
|
-
/* If any changed is reqired, ns-sdkg command must be used */
|
|
12
|
-
/* */
|
|
13
|
-
/****************************************************************/
|
|
14
|
-
/****************************************************************/
|
|
15
|
-
/* */
|
|
16
|
-
/* Namira Software Corporation */
|
|
17
|
-
/* https://namirasoft.com */
|
|
18
|
-
/* */
|
|
19
|
-
/****************************************************************/
|
|
20
|
-
|
|
21
|
-
import { BaseMetaColumn,
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
1
|
+
/****************************************************************/
|
|
2
|
+
/* */
|
|
3
|
+
/* This is an Auto-Generated File */
|
|
4
|
+
/* Made By */
|
|
5
|
+
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
+
/* */
|
|
7
|
+
/****************************************************************/
|
|
8
|
+
/****************************************************************/
|
|
9
|
+
/* */
|
|
10
|
+
/* Please do not make any change to this file */
|
|
11
|
+
/* If any changed is reqired, ns-sdkg command must be used */
|
|
12
|
+
/* */
|
|
13
|
+
/****************************************************************/
|
|
14
|
+
/****************************************************************/
|
|
15
|
+
/* */
|
|
16
|
+
/* Namira Software Corporation */
|
|
17
|
+
/* https://namirasoft.com */
|
|
18
|
+
/* */
|
|
19
|
+
/****************************************************************/
|
|
20
|
+
|
|
21
|
+
import { BaseMetaColumn, BaseUUID } from "namirasoft-core";
|
|
22
|
+
import { NSBaseMetaDatabase, NSBaseMetaTable } from "namirasoft-site";
|
|
23
|
+
|
|
24
|
+
export class LogGroupTagMetaTable extends NSBaseMetaTable
|
|
25
|
+
{
|
|
26
|
+
public override columns: {
|
|
27
|
+
id: BaseMetaColumn;
|
|
28
|
+
user_id: BaseMetaColumn;
|
|
29
|
+
entity_id: BaseMetaColumn;
|
|
30
|
+
name: BaseMetaColumn;
|
|
31
|
+
value: BaseMetaColumn;
|
|
32
|
+
description: BaseMetaColumn;
|
|
33
|
+
created_at: BaseMetaColumn;
|
|
34
|
+
updated_at: BaseMetaColumn;
|
|
35
|
+
}
|
|
36
|
+
constructor(database: NSBaseMetaDatabase)
|
|
37
|
+
{
|
|
38
|
+
super(database, "log_group_tag", "Log Group Tag", new BaseUUID(""));
|
|
39
|
+
this.columns = {
|
|
40
|
+
id: new BaseMetaColumn(this, "id", "Id", "Integer", true),
|
|
41
|
+
user_id: new BaseMetaColumn(this, "user_id", "User Id", "String", true),
|
|
42
|
+
entity_id: new BaseMetaColumn(this, "entity_id", "Entity Id", "String", true),
|
|
43
|
+
name: new BaseMetaColumn(this, "name", "Name", "String", true),
|
|
44
|
+
value: new BaseMetaColumn(this, "value", "Value", "String", true),
|
|
45
|
+
description: new BaseMetaColumn(this, "description", "Description", "String", false),
|
|
46
|
+
created_at: new BaseMetaColumn(this, "created_at", "Created At", "DateTime", true),
|
|
47
|
+
updated_at: new BaseMetaColumn(this, "updated_at", "Updated At", "DateTime", true),
|
|
48
|
+
};
|
|
49
|
+
}
|
|
49
50
|
};
|
package/src/meta/LogMetaTable.ts
CHANGED
|
@@ -18,11 +18,12 @@
|
|
|
18
18
|
/* */
|
|
19
19
|
/****************************************************************/
|
|
20
20
|
|
|
21
|
-
import { BaseMetaColumn,
|
|
21
|
+
import { BaseMetaColumn, BaseUUID } from "namirasoft-core";
|
|
22
|
+
import { NSBaseMetaDatabase, NSBaseMetaTable } from "namirasoft-site";
|
|
22
23
|
|
|
23
|
-
export class LogMetaTable extends
|
|
24
|
+
export class LogMetaTable extends NSBaseMetaTable
|
|
24
25
|
{
|
|
25
|
-
public columns
|
|
26
|
+
public override columns: {
|
|
26
27
|
id: BaseMetaColumn;
|
|
27
28
|
user_id: BaseMetaColumn;
|
|
28
29
|
log_group_id: BaseMetaColumn;
|
|
@@ -32,18 +33,18 @@ export class LogMetaTable extends BaseMetaTable
|
|
|
32
33
|
message: BaseMetaColumn;
|
|
33
34
|
created_at: BaseMetaColumn;
|
|
34
35
|
}
|
|
35
|
-
constructor()
|
|
36
|
+
constructor(database: NSBaseMetaDatabase)
|
|
36
37
|
{
|
|
37
|
-
super("log", "Log");
|
|
38
|
+
super(database, "log", "Log", new BaseUUID(""));
|
|
38
39
|
this.columns = {
|
|
39
|
-
id: new BaseMetaColumn("id", "Id", "String", true),
|
|
40
|
-
user_id: new BaseMetaColumn("user_id", "User Id", "String", true),
|
|
41
|
-
log_group_id: new BaseMetaColumn("log_group_id", "Log Group Id", "String", true),
|
|
42
|
-
product_id: new BaseMetaColumn("product_id", "Product Id", "String", false),
|
|
43
|
-
workspace_id: new BaseMetaColumn("workspace_id", "Workspace Id", "String", false),
|
|
44
|
-
level: new BaseMetaColumn("level", "Level", "String", true),
|
|
45
|
-
message: new BaseMetaColumn("message", "Message", "String", true),
|
|
46
|
-
created_at: new BaseMetaColumn("created_at", "Created At", "DateTime", true),
|
|
40
|
+
id: new BaseMetaColumn(this, "id", "Id", "String", true),
|
|
41
|
+
user_id: new BaseMetaColumn(this, "user_id", "User Id", "String", true),
|
|
42
|
+
log_group_id: new BaseMetaColumn(this, "log_group_id", "Log Group Id", "String", true),
|
|
43
|
+
product_id: new BaseMetaColumn(this, "product_id", "Product Id", "String", false),
|
|
44
|
+
workspace_id: new BaseMetaColumn(this, "workspace_id", "Workspace Id", "String", false),
|
|
45
|
+
level: new BaseMetaColumn(this, "level", "Level", "String", true),
|
|
46
|
+
message: new BaseMetaColumn(this, "message", "Message", "String", true),
|
|
47
|
+
created_at: new BaseMetaColumn(this, "created_at", "Created At", "DateTime", true),
|
|
47
48
|
};
|
|
48
49
|
}
|
|
49
50
|
};
|
package/src/meta/MetaDatabase.ts
CHANGED
|
@@ -18,13 +18,14 @@
|
|
|
18
18
|
/* */
|
|
19
19
|
/****************************************************************/
|
|
20
20
|
|
|
21
|
+
import { NSBaseMetaDatabase } from "namirasoft-site";
|
|
21
22
|
import { LogGroupCategoryMetaTable } from "./LogGroupCategoryMetaTable";
|
|
22
23
|
import { LogGroupFieldMetaTable } from "./LogGroupFieldMetaTable";
|
|
23
24
|
import { LogGroupMetaTable } from "./LogGroupMetaTable";
|
|
24
25
|
import { LogGroupTagMetaTable } from "./LogGroupTagMetaTable";
|
|
25
26
|
import { LogMetaTable } from "./LogMetaTable";
|
|
26
27
|
|
|
27
|
-
export class MetaDatabase
|
|
28
|
+
export class MetaDatabase extends NSBaseMetaDatabase
|
|
28
29
|
{
|
|
29
30
|
public static main: MetaDatabase = new MetaDatabase();
|
|
30
31
|
public log_group: LogGroupMetaTable;
|
|
@@ -34,10 +35,11 @@ export class MetaDatabase
|
|
|
34
35
|
public log: LogMetaTable;
|
|
35
36
|
constructor()
|
|
36
37
|
{
|
|
37
|
-
|
|
38
|
-
this.
|
|
39
|
-
this.
|
|
40
|
-
this.
|
|
41
|
-
this.
|
|
38
|
+
super({ id: "log", name: "Log", description: "Log Database", headline: "Log Database", link: "log", logo: "log.png" });
|
|
39
|
+
this.log_group = new LogGroupMetaTable(this);
|
|
40
|
+
this.log_group_category = new LogGroupCategoryMetaTable(this);
|
|
41
|
+
this.log_group_field = new LogGroupFieldMetaTable(this);
|
|
42
|
+
this.log_group_tag = new LogGroupTagMetaTable(this);
|
|
43
|
+
this.log = new LogMetaTable(this);
|
|
42
44
|
}
|
|
43
45
|
};
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
/****************************************************************/
|
|
2
|
-
/* */
|
|
3
|
-
/* This is an Auto-Generated File */
|
|
4
|
-
/* Made By */
|
|
5
|
-
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
-
/* */
|
|
7
|
-
/****************************************************************/
|
|
8
|
-
/****************************************************************/
|
|
9
|
-
/* */
|
|
10
|
-
/* Please do not make any change to this file */
|
|
11
|
-
/* If any changed is reqired, ns-sdkg command must be used */
|
|
12
|
-
/* */
|
|
13
|
-
/****************************************************************/
|
|
14
|
-
/****************************************************************/
|
|
15
|
-
/* */
|
|
16
|
-
/* Namira Software Corporation */
|
|
17
|
-
/* https://namirasoft.com */
|
|
18
|
-
/* */
|
|
19
|
-
/****************************************************************/
|
|
20
|
-
|
|
21
|
-
export type LogGroupCategoryRow =
|
|
22
|
-
{
|
|
23
|
-
id: number;
|
|
24
|
-
user_id: string;
|
|
25
|
-
entity_id: string;
|
|
26
|
-
category_id: string;
|
|
27
|
-
created_at: Date;
|
|
28
|
-
updated_at: Date;
|
|
1
|
+
/****************************************************************/
|
|
2
|
+
/* */
|
|
3
|
+
/* This is an Auto-Generated File */
|
|
4
|
+
/* Made By */
|
|
5
|
+
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
+
/* */
|
|
7
|
+
/****************************************************************/
|
|
8
|
+
/****************************************************************/
|
|
9
|
+
/* */
|
|
10
|
+
/* Please do not make any change to this file */
|
|
11
|
+
/* If any changed is reqired, ns-sdkg command must be used */
|
|
12
|
+
/* */
|
|
13
|
+
/****************************************************************/
|
|
14
|
+
/****************************************************************/
|
|
15
|
+
/* */
|
|
16
|
+
/* Namira Software Corporation */
|
|
17
|
+
/* https://namirasoft.com */
|
|
18
|
+
/* */
|
|
19
|
+
/****************************************************************/
|
|
20
|
+
|
|
21
|
+
export type LogGroupCategoryRow =
|
|
22
|
+
{
|
|
23
|
+
id: number;
|
|
24
|
+
user_id: string;
|
|
25
|
+
entity_id: string;
|
|
26
|
+
category_id: string;
|
|
27
|
+
created_at: Date;
|
|
28
|
+
updated_at: Date;
|
|
29
29
|
}
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
/****************************************************************/
|
|
2
|
-
/* */
|
|
3
|
-
/* This is an Auto-Generated File */
|
|
4
|
-
/* Made By */
|
|
5
|
-
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
-
/* */
|
|
7
|
-
/****************************************************************/
|
|
8
|
-
/****************************************************************/
|
|
9
|
-
/* */
|
|
10
|
-
/* Please do not make any change to this file */
|
|
11
|
-
/* If any changed is reqired, ns-sdkg command must be used */
|
|
12
|
-
/* */
|
|
13
|
-
/****************************************************************/
|
|
14
|
-
/****************************************************************/
|
|
15
|
-
/* */
|
|
16
|
-
/* Namira Software Corporation */
|
|
17
|
-
/* https://namirasoft.com */
|
|
18
|
-
/* */
|
|
19
|
-
/****************************************************************/
|
|
20
|
-
|
|
21
|
-
export type LogGroupFieldRow =
|
|
22
|
-
{
|
|
23
|
-
id: number;
|
|
24
|
-
user_id: string;
|
|
25
|
-
entity_id: string;
|
|
26
|
-
field_id: string;
|
|
27
|
-
value: string;
|
|
28
|
-
description: (string | null);
|
|
29
|
-
created_at: Date;
|
|
30
|
-
updated_at: Date;
|
|
1
|
+
/****************************************************************/
|
|
2
|
+
/* */
|
|
3
|
+
/* This is an Auto-Generated File */
|
|
4
|
+
/* Made By */
|
|
5
|
+
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
+
/* */
|
|
7
|
+
/****************************************************************/
|
|
8
|
+
/****************************************************************/
|
|
9
|
+
/* */
|
|
10
|
+
/* Please do not make any change to this file */
|
|
11
|
+
/* If any changed is reqired, ns-sdkg command must be used */
|
|
12
|
+
/* */
|
|
13
|
+
/****************************************************************/
|
|
14
|
+
/****************************************************************/
|
|
15
|
+
/* */
|
|
16
|
+
/* Namira Software Corporation */
|
|
17
|
+
/* https://namirasoft.com */
|
|
18
|
+
/* */
|
|
19
|
+
/****************************************************************/
|
|
20
|
+
|
|
21
|
+
export type LogGroupFieldRow =
|
|
22
|
+
{
|
|
23
|
+
id: number;
|
|
24
|
+
user_id: string;
|
|
25
|
+
entity_id: string;
|
|
26
|
+
field_id: string;
|
|
27
|
+
value: string;
|
|
28
|
+
description: (string | null);
|
|
29
|
+
created_at: Date;
|
|
30
|
+
updated_at: Date;
|
|
31
31
|
}
|
package/src/row/LogGroupRow.ts
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
/****************************************************************/
|
|
2
|
-
/* */
|
|
3
|
-
/* This is an Auto-Generated File */
|
|
4
|
-
/* Made By */
|
|
5
|
-
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
-
/* */
|
|
7
|
-
/****************************************************************/
|
|
8
|
-
/****************************************************************/
|
|
9
|
-
/* */
|
|
10
|
-
/* Please do not make any change to this file */
|
|
11
|
-
/* If any changed is reqired, ns-sdkg command must be used */
|
|
12
|
-
/* */
|
|
13
|
-
/****************************************************************/
|
|
14
|
-
/****************************************************************/
|
|
15
|
-
/* */
|
|
16
|
-
/* Namira Software Corporation */
|
|
17
|
-
/* https://namirasoft.com */
|
|
18
|
-
/* */
|
|
19
|
-
/****************************************************************/
|
|
20
|
-
|
|
21
|
-
import { LogGroupRetentionUnit } from "../enum/LogGroupRetentionUnit";
|
|
22
|
-
|
|
23
|
-
export type LogGroupRow =
|
|
24
|
-
{
|
|
25
|
-
id: string;
|
|
26
|
-
user_id: string;
|
|
27
|
-
workspace_id: string;
|
|
28
|
-
name: string;
|
|
29
|
-
retention_unit: LogGroupRetentionUnit;
|
|
30
|
-
retention_value: number;
|
|
31
|
-
created_at: Date;
|
|
32
|
-
updated_at: Date;
|
|
1
|
+
/****************************************************************/
|
|
2
|
+
/* */
|
|
3
|
+
/* This is an Auto-Generated File */
|
|
4
|
+
/* Made By */
|
|
5
|
+
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
+
/* */
|
|
7
|
+
/****************************************************************/
|
|
8
|
+
/****************************************************************/
|
|
9
|
+
/* */
|
|
10
|
+
/* Please do not make any change to this file */
|
|
11
|
+
/* If any changed is reqired, ns-sdkg command must be used */
|
|
12
|
+
/* */
|
|
13
|
+
/****************************************************************/
|
|
14
|
+
/****************************************************************/
|
|
15
|
+
/* */
|
|
16
|
+
/* Namira Software Corporation */
|
|
17
|
+
/* https://namirasoft.com */
|
|
18
|
+
/* */
|
|
19
|
+
/****************************************************************/
|
|
20
|
+
|
|
21
|
+
import { LogGroupRetentionUnit } from "../enum/LogGroupRetentionUnit";
|
|
22
|
+
|
|
23
|
+
export type LogGroupRow =
|
|
24
|
+
{
|
|
25
|
+
id: string;
|
|
26
|
+
user_id: string;
|
|
27
|
+
workspace_id: string;
|
|
28
|
+
name: string;
|
|
29
|
+
retention_unit: LogGroupRetentionUnit;
|
|
30
|
+
retention_value: number;
|
|
31
|
+
created_at: Date;
|
|
32
|
+
updated_at: Date;
|
|
33
33
|
}
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
/****************************************************************/
|
|
2
|
-
/* */
|
|
3
|
-
/* This is an Auto-Generated File */
|
|
4
|
-
/* Made By */
|
|
5
|
-
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
-
/* */
|
|
7
|
-
/****************************************************************/
|
|
8
|
-
/****************************************************************/
|
|
9
|
-
/* */
|
|
10
|
-
/* Please do not make any change to this file */
|
|
11
|
-
/* If any changed is reqired, ns-sdkg command must be used */
|
|
12
|
-
/* */
|
|
13
|
-
/****************************************************************/
|
|
14
|
-
/****************************************************************/
|
|
15
|
-
/* */
|
|
16
|
-
/* Namira Software Corporation */
|
|
17
|
-
/* https://namirasoft.com */
|
|
18
|
-
/* */
|
|
19
|
-
/****************************************************************/
|
|
20
|
-
|
|
21
|
-
export type LogGroupTagRow =
|
|
22
|
-
{
|
|
23
|
-
id: number;
|
|
24
|
-
user_id: string;
|
|
25
|
-
entity_id: string;
|
|
26
|
-
name: string;
|
|
27
|
-
value: string;
|
|
28
|
-
description: (string | null);
|
|
29
|
-
created_at: Date;
|
|
30
|
-
updated_at: Date;
|
|
1
|
+
/****************************************************************/
|
|
2
|
+
/* */
|
|
3
|
+
/* This is an Auto-Generated File */
|
|
4
|
+
/* Made By */
|
|
5
|
+
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
+
/* */
|
|
7
|
+
/****************************************************************/
|
|
8
|
+
/****************************************************************/
|
|
9
|
+
/* */
|
|
10
|
+
/* Please do not make any change to this file */
|
|
11
|
+
/* If any changed is reqired, ns-sdkg command must be used */
|
|
12
|
+
/* */
|
|
13
|
+
/****************************************************************/
|
|
14
|
+
/****************************************************************/
|
|
15
|
+
/* */
|
|
16
|
+
/* Namira Software Corporation */
|
|
17
|
+
/* https://namirasoft.com */
|
|
18
|
+
/* */
|
|
19
|
+
/****************************************************************/
|
|
20
|
+
|
|
21
|
+
export type LogGroupTagRow =
|
|
22
|
+
{
|
|
23
|
+
id: number;
|
|
24
|
+
user_id: string;
|
|
25
|
+
entity_id: string;
|
|
26
|
+
name: string;
|
|
27
|
+
value: string;
|
|
28
|
+
description: (string | null);
|
|
29
|
+
created_at: Date;
|
|
30
|
+
updated_at: Date;
|
|
31
31
|
}
|