biz9-logic 3.2.22 → 3.5.6

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 (3) hide show
  1. package/biz9_config +1 -1
  2. package/index.js +6 -0
  3. package/package.json +1 -1
package/biz9_config CHANGED
@@ -1,4 +1,4 @@
1
- VERSION='3.4.9'
1
+ VERSION='3.5.6'
2
2
  TITLE='BiZ9-Logic';
3
3
  REPO='git@github.com:biz9framework/biz9-logic.git';
4
4
  BRANCH='main';
package/index.js CHANGED
@@ -7,6 +7,11 @@ Description: BiZ9 Framework: Logic-JS
7
7
  const { get_new_item_main,get_data_config_main,get_cloud_url_main,get_biz_item_main,get_cloud_filter_obj_main,get_title_url_main } = require('./main');
8
8
  const {Log,Test,Str} = require('biz9-utility');
9
9
 
10
+ class Message {
11
+ static SUCCESS="Update Success";
12
+ static LOGIN_GOOD="Login Success";
13
+ static LOGIN_BAD="Login Incorrect";
14
+ }
10
15
  class DataType {
11
16
  static get_title = (data_type) => {
12
17
  if(!data_type){
@@ -220,6 +225,7 @@ class CMS {
220
225
  module.exports = {
221
226
  DataType,
222
227
  DataItem,
228
+ Message,
223
229
  Url,
224
230
  BiZ_Url,
225
231
  Obj,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz9-logic",
3
- "version": "3.2.22",
3
+ "version": "3.5.6",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"