@futdevpro/fsm-dynamo 1.5.65 → 1.5.66

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.
@@ -29,7 +29,7 @@ export declare class Dynamo_Log {
29
29
  static highlightedLog(message: any, ...optionalParams: any[]): void;
30
30
  static test(message: any, ...optionalParams: any[]): void;
31
31
  /**
32
- * @deprecated use Dynamo_Log.success instead
32
+ * @deprecated use Dynamo_Log.test instead
33
33
  */
34
34
  static testLog(message: any, ...optionalParams: any[]): void;
35
35
  static testError(message: any, ...optionalParams: any[]): void;
@@ -81,35 +81,35 @@ class Dynamo_Log {
81
81
  }
82
82
  }
83
83
  static highlightedLog(message, ...optionalParams) {
84
- console.log('\n\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n');
84
+ console.log('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
85
85
  console.log(message, ...optionalParams);
86
- console.log('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n');
86
+ console.log('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
87
87
  }
88
88
  static test(message, ...optionalParams) {
89
- console.log('\n\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n');
89
+ console.log('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
90
90
  console.log(message, ...optionalParams);
91
- console.log('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n');
91
+ console.log('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
92
92
  }
93
93
  /**
94
- * @deprecated use Dynamo_Log.success instead
94
+ * @deprecated use Dynamo_Log.test instead
95
95
  */
96
96
  static testLog(message, ...optionalParams) {
97
97
  this.test(message, ...optionalParams);
98
98
  }
99
99
  static testError(message, ...optionalParams) {
100
- this.error('\n\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n');
100
+ this.error('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
101
101
  this.error(message, ...optionalParams);
102
- this.error('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n');
102
+ this.error('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
103
103
  }
104
104
  static testWarn(message, ...optionalParams) {
105
- this.warn('\n\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n');
105
+ this.warn('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
106
106
  this.warn(message, ...optionalParams);
107
- this.warn('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n');
107
+ this.warn('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
108
108
  }
109
109
  static testSuccess(message, ...optionalParams) {
110
- this.success('\n\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n');
110
+ this.success('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
111
111
  this.success(message, ...optionalParams);
112
- this.success('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n');
112
+ this.success('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
113
113
  }
114
114
  static removeLogStyles(message) {
115
115
  for (let styleKey of Object(log_style_enum_1.Dynamo_LogStyle)) {
@@ -362,8 +362,8 @@
362
362
  "affectsGlobalScope": false
363
363
  },
364
364
  "../src/_utils/log.util.ts": {
365
- "version": "4c0d88063ef9debfc380983c80c176f04d2528bc09783e1f2058eaf6a31baa87",
366
- "signature": "a140a9693798029fa331916af06e4f13c696322b09d9fdd3d7c3a2933b595128",
365
+ "version": "809f74c31d1bd8f3d1d5915932c7a79ec65e36d344181dd6795845780b17024c",
366
+ "signature": "b06852c14f0ea2f182bd81d2bc82d178d7b7cdf4de8c5ffc6c57d31274b2b0a6",
367
367
  "affectsGlobalScope": false
368
368
  },
369
369
  "../src/_models/control-models/error.control-model.ts": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@futdevpro/fsm-dynamo",
3
- "version": "01.05.65",
3
+ "version": "01.05.66",
4
4
  "description": "Dynamic NodeTS (NodeJS-Typescript), MongoDB Backend System Framework by Future Development Ltd.",
5
5
  "scripts": {
6
6
  "start": "npm run test-live",
@@ -87,39 +87,39 @@ export class Dynamo_Log {
87
87
  }
88
88
  }
89
89
  static highlightedLog(message: any, ...optionalParams: any[]): void {
90
- console.log('\n\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n');
90
+ console.log('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
91
91
  console.log(message, ...optionalParams);
92
- console.log('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n');
92
+ console.log('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
93
93
  }
94
94
 
95
95
  static test(message: any, ...optionalParams: any[]): void {
96
- console.log('\n\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n');
96
+ console.log('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
97
97
  console.log(message, ...optionalParams);
98
- console.log('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n');
98
+ console.log('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
99
99
  }
100
100
  /**
101
- * @deprecated use Dynamo_Log.success instead
101
+ * @deprecated use Dynamo_Log.test instead
102
102
  */
103
103
  static testLog(message: any, ...optionalParams: any[]): void {
104
104
  this.test(message, ...optionalParams);
105
105
  }
106
106
 
107
107
  static testError(message: any, ...optionalParams: any[]): void {
108
- this.error('\n\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n');
108
+ this.error('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
109
109
  this.error(message, ...optionalParams);
110
- this.error('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n');
110
+ this.error('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
111
111
  }
112
112
 
113
113
  static testWarn(message: any, ...optionalParams: any[]): void {
114
- this.warn('\n\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n');
114
+ this.warn('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
115
115
  this.warn(message, ...optionalParams);
116
- this.warn('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n');
116
+ this.warn('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
117
117
  }
118
118
 
119
119
  static testSuccess(message: any, ...optionalParams: any[]): void {
120
- this.success('\n\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n');
120
+ this.success('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
121
121
  this.success(message, ...optionalParams);
122
- this.success('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n');
122
+ this.success('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
123
123
  }
124
124
 
125
125
  static removeLogStyles(message: any): string {