namirasoft-log 1.3.16 → 1.3.21

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 (125) hide show
  1. package/dist/NamirasoftLogServer.js.map +1 -1
  2. package/dist/NamirasoftLogServerAlarm.d.ts +8 -5
  3. package/dist/NamirasoftLogServerAlarm.js +6 -8
  4. package/dist/NamirasoftLogServerAlarm.js.map +1 -1
  5. package/dist/NamirasoftLogServerBase.js +1 -1
  6. package/dist/NamirasoftLogServerBase.js.map +1 -1
  7. package/dist/NamirasoftLogServerHealthz.js +1 -2
  8. package/dist/NamirasoftLogServerHealthz.js.map +1 -1
  9. package/dist/NamirasoftLogServerLog.d.ts +6 -3
  10. package/dist/NamirasoftLogServerLog.js +4 -5
  11. package/dist/NamirasoftLogServerLog.js.map +1 -1
  12. package/dist/NamirasoftLogServerLogGroup.d.ts +7 -4
  13. package/dist/NamirasoftLogServerLogGroup.js +9 -11
  14. package/dist/NamirasoftLogServerLogGroup.js.map +1 -1
  15. package/dist/StreamNamirasoftLog.d.ts +3 -3
  16. package/dist/StreamNamirasoftLog.js +6 -7
  17. package/dist/StreamNamirasoftLog.js.map +1 -1
  18. package/dist/command/AlarmCommand.js +4 -4
  19. package/dist/command/AlarmCommand.js.map +1 -1
  20. package/dist/command/AlarmCreateCommand.js +4 -49
  21. package/dist/command/AlarmCreateCommand.js.map +1 -1
  22. package/dist/command/{AlarmGetAllCommand.d.ts → AlarmDeleteCommand.d.ts} +1 -1
  23. package/dist/command/{AlarmAlarmCommand.js → AlarmDeleteCommand.js} +5 -5
  24. package/dist/command/AlarmDeleteCommand.js.map +1 -0
  25. package/dist/command/AlarmGetCommand.js.map +1 -1
  26. package/dist/command/{LogGetAllCommand.d.ts → AlarmListCommand.d.ts} +1 -1
  27. package/dist/command/{LogGetAllCommand.js → AlarmListCommand.js} +5 -5
  28. package/dist/command/{LogGetAllCommand.js.map → AlarmListCommand.js.map} +1 -1
  29. package/dist/command/AlarmUpdateCommand.js +4 -49
  30. package/dist/command/AlarmUpdateCommand.js.map +1 -1
  31. package/dist/command/HealthzCommand.js.map +1 -1
  32. package/dist/command/HealthzGetCommand.js.map +1 -1
  33. package/dist/command/LogCommand.js +2 -2
  34. package/dist/command/LogCommand.js.map +1 -1
  35. package/dist/command/LogCreateCommand.js +1 -10
  36. package/dist/command/LogCreateCommand.js.map +1 -1
  37. package/dist/command/LogGetCommand.js.map +1 -1
  38. package/dist/command/LogGroupCommand.js +2 -2
  39. package/dist/command/LogGroupCommand.js.map +1 -1
  40. package/dist/command/LogGroupCreateCommand.js +1 -1
  41. package/dist/command/LogGroupCreateCommand.js.map +1 -1
  42. package/dist/command/LogGroupDeleteCommand.js.map +1 -1
  43. package/dist/command/LogGroupGetCommand.js.map +1 -1
  44. package/dist/command/{LogGroupGetAllCommand.d.ts → LogGroupListCommand.d.ts} +1 -1
  45. package/dist/command/{LogGroupGetAllCommand.js → LogGroupListCommand.js} +5 -5
  46. package/dist/command/LogGroupListCommand.js.map +1 -0
  47. package/dist/command/LogGroupUpdateCommand.js +1 -1
  48. package/dist/command/LogGroupUpdateCommand.js.map +1 -1
  49. package/dist/command/{AlarmAlarmCommand.d.ts → LogListCommand.d.ts} +1 -1
  50. package/dist/command/{AlarmGetAllCommand.js → LogListCommand.js} +5 -5
  51. package/dist/command/LogListCommand.js.map +1 -0
  52. package/dist/index.d.ts +7 -11
  53. package/dist/index.js +7 -11
  54. package/dist/index.js.map +1 -1
  55. package/dist/row/AlarmInputRow.d.ts +4 -0
  56. package/dist/row/{AlarmRowInput.js → AlarmInputRow.js} +1 -1
  57. package/dist/row/AlarmInputRow.js.map +1 -0
  58. package/dist/row/AlarmRow.d.ts +6 -3
  59. package/dist/row/{LogRowInput.d.ts → LogCreateRow.d.ts} +1 -2
  60. package/dist/row/{LogRowOutput.js → LogCreateRow.js} +1 -1
  61. package/dist/row/LogCreateRow.js.map +1 -0
  62. package/dist/row/LogGroupInputRow.d.ts +4 -0
  63. package/dist/row/{AlarmRowOutput.js → LogGroupInputRow.js} +1 -1
  64. package/dist/row/LogGroupInputRow.js.map +1 -0
  65. package/dist/row/LogGroupRow.d.ts +6 -3
  66. package/dist/row/LogRow.d.ts +9 -3
  67. package/package.json +4 -3
  68. package/src/LogLevel.ts +1 -1
  69. package/src/NamirasoftLogServer.ts +0 -1
  70. package/src/NamirasoftLogServerAlarm.ts +9 -13
  71. package/src/NamirasoftLogServerBase.ts +1 -2
  72. package/src/NamirasoftLogServerHealthz.ts +1 -3
  73. package/src/NamirasoftLogServerLog.ts +6 -9
  74. package/src/NamirasoftLogServerLogGroup.ts +12 -16
  75. package/src/StreamNamirasoftLog.ts +8 -9
  76. package/src/command/AlarmCommand.ts +4 -5
  77. package/src/command/AlarmCreateCommand.ts +4 -50
  78. package/src/command/{AlarmAlarmCommand.ts → AlarmDeleteCommand.ts} +2 -3
  79. package/src/command/AlarmGetCommand.ts +0 -1
  80. package/src/command/{LogGetAllCommand.ts → AlarmListCommand.ts} +2 -3
  81. package/src/command/AlarmUpdateCommand.ts +4 -50
  82. package/src/command/HealthzCommand.ts +0 -1
  83. package/src/command/HealthzGetCommand.ts +0 -1
  84. package/src/command/LogCommand.ts +2 -3
  85. package/src/command/LogCreateCommand.ts +1 -11
  86. package/src/command/LogGetCommand.ts +0 -1
  87. package/src/command/LogGroupCommand.ts +2 -3
  88. package/src/command/LogGroupCreateCommand.ts +1 -2
  89. package/src/command/LogGroupDeleteCommand.ts +0 -1
  90. package/src/command/LogGroupGetCommand.ts +0 -1
  91. package/src/command/{LogGroupGetAllCommand.ts → LogGroupListCommand.ts} +2 -3
  92. package/src/command/LogGroupUpdateCommand.ts +1 -2
  93. package/src/command/{AlarmGetAllCommand.ts → LogListCommand.ts} +2 -3
  94. package/src/command/cli.ts +1 -1
  95. package/src/index.ts +8 -13
  96. package/src/row/{LogRowOutput.ts → AlarmInputRow.ts} +4 -4
  97. package/src/row/AlarmRow.ts +7 -5
  98. package/src/row/{LogRowInput.ts → LogCreateRow.ts} +2 -4
  99. package/src/row/{LogGroupRowInput.ts → LogGroupInputRow.ts} +3 -4
  100. package/src/row/LogGroupRow.ts +7 -5
  101. package/src/row/LogRow.ts +10 -5
  102. package/dist/command/AlarmAlarmCommand.js.map +0 -1
  103. package/dist/command/AlarmGetAllCommand.js.map +0 -1
  104. package/dist/command/LogGroupGetAllCommand.js.map +0 -1
  105. package/dist/enum/AlarmLevel.d.ts +0 -11
  106. package/dist/enum/AlarmLevel.js +0 -16
  107. package/dist/enum/AlarmLevel.js.map +0 -1
  108. package/dist/row/AlarmRowInput.d.ts +0 -10
  109. package/dist/row/AlarmRowInput.js.map +0 -1
  110. package/dist/row/AlarmRowOutput.d.ts +0 -4
  111. package/dist/row/AlarmRowOutput.js.map +0 -1
  112. package/dist/row/LogGroupRowInput.d.ts +0 -4
  113. package/dist/row/LogGroupRowInput.js +0 -3
  114. package/dist/row/LogGroupRowInput.js.map +0 -1
  115. package/dist/row/LogGroupRowOutput.d.ts +0 -4
  116. package/dist/row/LogGroupRowOutput.js +0 -3
  117. package/dist/row/LogGroupRowOutput.js.map +0 -1
  118. package/dist/row/LogRowInput.js +0 -3
  119. package/dist/row/LogRowInput.js.map +0 -1
  120. package/dist/row/LogRowOutput.d.ts +0 -3
  121. package/dist/row/LogRowOutput.js.map +0 -1
  122. package/src/enum/AlarmLevel.ts +0 -33
  123. package/src/row/AlarmRowInput.ts +0 -33
  124. package/src/row/AlarmRowOutput.ts +0 -26
  125. package/src/row/LogGroupRowOutput.ts +0 -26
@@ -1,11 +0,0 @@
1
- export declare enum AlarmLevel {
2
- Trace = "Trace",
3
- Verbose = "Verbose",
4
- Debug = "Debug",
5
- Info = "Info",
6
- Success = "Success",
7
- Warning = "Warning",
8
- Error = "Error",
9
- Critical = "Critical",
10
- Fatal = "Fatal"
11
- }
@@ -1,16 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AlarmLevel = void 0;
4
- var AlarmLevel;
5
- (function (AlarmLevel) {
6
- AlarmLevel["Trace"] = "Trace";
7
- AlarmLevel["Verbose"] = "Verbose";
8
- AlarmLevel["Debug"] = "Debug";
9
- AlarmLevel["Info"] = "Info";
10
- AlarmLevel["Success"] = "Success";
11
- AlarmLevel["Warning"] = "Warning";
12
- AlarmLevel["Error"] = "Error";
13
- AlarmLevel["Critical"] = "Critical";
14
- AlarmLevel["Fatal"] = "Fatal";
15
- })(AlarmLevel || (exports.AlarmLevel = AlarmLevel = {}));
16
- //# sourceMappingURL=AlarmLevel.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"AlarmLevel.js","sourceRoot":"","sources":["../../src/enum/AlarmLevel.ts"],"names":[],"mappings":";;;AAqBA,IAAY,UAWX;AAXD,WAAY,UAAU;IAElB,6BAAe,CAAA;IACf,iCAAmB,CAAA;IACnB,6BAAe,CAAA;IACf,2BAAa,CAAA;IACb,iCAAmB,CAAA;IACnB,iCAAmB,CAAA;IACnB,6BAAe,CAAA;IACf,mCAAqB,CAAA;IACrB,6BAAe,CAAA;AACnB,CAAC,EAXW,UAAU,0BAAV,UAAU,QAWrB"}
@@ -1,10 +0,0 @@
1
- import { AlarmLevel } from "../enum/AlarmLevel";
2
- export type AlarmRowInput = {
3
- log_group_id: (string | null);
4
- product_id: (string | null);
5
- project_id: (string | null);
6
- level: (AlarmLevel | null);
7
- message: (string | null);
8
- stack: (string | null);
9
- notification_sender_topic_id: string;
10
- };
@@ -1 +0,0 @@
1
- {"version":3,"file":"AlarmRowInput.js","sourceRoot":"","sources":["../../src/row/AlarmRowInput.ts"],"names":[],"mappings":""}
@@ -1,4 +0,0 @@
1
- export type AlarmRowOutput = {
2
- id: number;
3
- user_id: string;
4
- };
@@ -1 +0,0 @@
1
- {"version":3,"file":"AlarmRowOutput.js","sourceRoot":"","sources":["../../src/row/AlarmRowOutput.ts"],"names":[],"mappings":""}
@@ -1,4 +0,0 @@
1
- export type LogGroupRowInput = {
2
- project_id: string;
3
- name: string;
4
- };
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=LogGroupRowInput.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"LogGroupRowInput.js","sourceRoot":"","sources":["../../src/row/LogGroupRowInput.ts"],"names":[],"mappings":""}
@@ -1,4 +0,0 @@
1
- export type LogGroupRowOutput = {
2
- id: string;
3
- user_id: string;
4
- };
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=LogGroupRowOutput.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"LogGroupRowOutput.js","sourceRoot":"","sources":["../../src/row/LogGroupRowOutput.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=LogRowInput.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"LogRowInput.js","sourceRoot":"","sources":["../../src/row/LogRowInput.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- export type LogRowOutput = {
2
- user_id: (string | null);
3
- };
@@ -1 +0,0 @@
1
- {"version":3,"file":"LogRowOutput.js","sourceRoot":"","sources":["../../src/row/LogRowOutput.ts"],"names":[],"mappings":""}
@@ -1,33 +0,0 @@
1
-
2
- /****************************************************************/
3
- /* */
4
- /* This is an Auto-Generated File */
5
- /* Made By */
6
- /* Namirasoft SDK Generator NPM Package */
7
- /* */
8
- /****************************************************************/
9
- /****************************************************************/
10
- /* */
11
- /* Please do not make any change to this file */
12
- /* If any changed is reqired, ns-sdkg command must be used */
13
- /* */
14
- /****************************************************************/
15
- /****************************************************************/
16
- /* */
17
- /* Namira Software Corporation */
18
- /* https://namirasoft.com */
19
- /* */
20
- /****************************************************************/
21
-
22
- export enum AlarmLevel
23
- {
24
- Trace = "Trace",
25
- Verbose = "Verbose",
26
- Debug = "Debug",
27
- Info = "Info",
28
- Success = "Success",
29
- Warning = "Warning",
30
- Error = "Error",
31
- Critical = "Critical",
32
- Fatal = "Fatal",
33
- }
@@ -1,33 +0,0 @@
1
-
2
- /****************************************************************/
3
- /* */
4
- /* This is an Auto-Generated File */
5
- /* Made By */
6
- /* Namirasoft SDK Generator NPM Package */
7
- /* */
8
- /****************************************************************/
9
- /****************************************************************/
10
- /* */
11
- /* Please do not make any change to this file */
12
- /* If any changed is reqired, ns-sdkg command must be used */
13
- /* */
14
- /****************************************************************/
15
- /****************************************************************/
16
- /* */
17
- /* Namira Software Corporation */
18
- /* https://namirasoft.com */
19
- /* */
20
- /****************************************************************/
21
-
22
- import { AlarmLevel } from "../enum/AlarmLevel";
23
-
24
- export type AlarmRowInput =
25
- {
26
- log_group_id: (string | null);
27
- product_id: (string | null);
28
- project_id: (string | null);
29
- level: (AlarmLevel | null);
30
- message: (string | null);
31
- stack: (string | null);
32
- notification_sender_topic_id: string;
33
- }
@@ -1,26 +0,0 @@
1
-
2
- /****************************************************************/
3
- /* */
4
- /* This is an Auto-Generated File */
5
- /* Made By */
6
- /* Namirasoft SDK Generator NPM Package */
7
- /* */
8
- /****************************************************************/
9
- /****************************************************************/
10
- /* */
11
- /* Please do not make any change to this file */
12
- /* If any changed is reqired, ns-sdkg command must be used */
13
- /* */
14
- /****************************************************************/
15
- /****************************************************************/
16
- /* */
17
- /* Namira Software Corporation */
18
- /* https://namirasoft.com */
19
- /* */
20
- /****************************************************************/
21
-
22
- export type AlarmRowOutput =
23
- {
24
- id: number;
25
- user_id: string;
26
- }
@@ -1,26 +0,0 @@
1
-
2
- /****************************************************************/
3
- /* */
4
- /* This is an Auto-Generated File */
5
- /* Made By */
6
- /* Namirasoft SDK Generator NPM Package */
7
- /* */
8
- /****************************************************************/
9
- /****************************************************************/
10
- /* */
11
- /* Please do not make any change to this file */
12
- /* If any changed is reqired, ns-sdkg command must be used */
13
- /* */
14
- /****************************************************************/
15
- /****************************************************************/
16
- /* */
17
- /* Namira Software Corporation */
18
- /* https://namirasoft.com */
19
- /* */
20
- /****************************************************************/
21
-
22
- export type LogGroupRowOutput =
23
- {
24
- id: string;
25
- user_id: string;
26
- }