biz9-logic 4.9.68 → 4.9.70

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/biz9_config CHANGED
@@ -1,4 +1,4 @@
1
- VERSION='9.3.8'
1
+ VERSION='9.4.0'
2
2
  TITLE='BiZ9-Logic';
3
3
  REPO='git@github.com:biz9framework/biz9-logic.git';
4
4
  BRANCH='main';
package/index.js CHANGED
@@ -469,7 +469,9 @@ class Type {
469
469
  case DataType.APP:
470
470
  case DataType.BLANK:
471
471
  case DataType.BLOG_POST:
472
+ case DataType.CART:
472
473
  case DataType.CART_ITEM:
474
+ case DataType.CART_SUB_ITEM:
473
475
  case DataType.CATEGORY:
474
476
  case DataType.CUSTOM_FIELD:
475
477
  case DataType.CONTENT:
@@ -479,9 +481,7 @@ class Type {
479
481
  case DataType.GALLERY:
480
482
  case DataType.ITEM_MAP:
481
483
  case DataType.ITEM:
482
- case DataType.CART:
483
- case DataType.CART_ITEM:
484
- case DataType.CART_SUB_ITEM:
484
+ case DataType.LINK:
485
485
  case DataType.ORDER:
486
486
  case DataType.ORDER_ITEM:
487
487
  case DataType.ORDER_SUB_ITEM:
@@ -1352,8 +1352,7 @@ class Field_Logic {
1352
1352
 
1353
1353
  }
1354
1354
  class DataType {
1355
-
1356
- static APP='app_biz';
1355
+ static APP='app_biz';
1357
1356
  static BLANK='blank_biz';
1358
1357
  static BLOG_POST='blog_post_biz';
1359
1358
  static CART_ITEM="cart_item_biz";
@@ -1369,6 +1368,7 @@ static APP='app_biz';
1369
1368
  static GALLERY='gallery_biz';
1370
1369
  static IMAGE='image_biz';
1371
1370
  static ITEM='item_biz';
1371
+ static LINK='link_biz';
1372
1372
  static ORDER="order_biz";
1373
1373
  static ORDER_ITEM="order_item_biz";
1374
1374
  static ORDER_SUB_ITEM="order_sub_item_biz";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz9-logic",
3
- "version": "4.9.68",
3
+ "version": "4.9.70",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
package/test.js CHANGED
@@ -46,7 +46,8 @@ describe("connect", () => {
46
46
  item.user = user;
47
47
  item_list.push(item);
48
48
  }
49
- Log.w('aaaaa',Type.get_app_link_list());
49
+ //Log.w('aaaaa',Type.get_app_link_list());
50
+ Log.w('Link Title',Type.get_title(DataType.LINK));
50
51
  //Log.w('item_list',item_list);
51
52
  //Log.w('bind_obj_list',App_Logic.bind_item_parent_user_list(item_list));
52
53