biz9-logic 4.9.124 → 4.9.132

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 +4 -2
  3. package/package.json +1 -1
package/biz9_config CHANGED
@@ -1,4 +1,4 @@
1
- VERSION='9.9.6'
1
+ VERSION='10.0.4'
2
2
  TITLE='BiZ9-Logic';
3
3
  REPO='git@github.com:biz9framework/biz9-logic.git';
4
4
  BRANCH='main'
package/index.js CHANGED
@@ -278,8 +278,10 @@ class Type {
278
278
  static USER_ROLE_USER='user';
279
279
  static USER_ROLE_GUEST='guest';
280
280
  //data_source
281
- static DATA_SOURCE_CACHE="cache";
281
+ static DATA_SOURCE_CLIENT_CACHE="client_cache";
282
+ static DATA_SOURCE_SERVER_CACHE="server_cache";
282
283
  static DATA_SOURCE_DATABASE="database";
284
+ static DATA_SOURCE_CLIENT="client";
283
285
  static DATA_SOURCE_SERVER="server";
284
286
  static DATA_SOURCE_NOT_FOUND="not_found";
285
287
  //env
@@ -1112,7 +1114,7 @@ class Event_Logic {
1112
1114
  };
1113
1115
  }
1114
1116
  class Field_Logic {
1115
- static get_item_max_group_id = (value_id,item) => {
1117
+ static get_list_item_max_group_id = (value_id,item) => {
1116
1118
  let max_group_id = 0;
1117
1119
  let full_prop_str = "";
1118
1120
  for(const prop in item){
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz9-logic",
3
- "version": "4.9.124",
3
+ "version": "4.9.132",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"