biz9-logic 4.8.66 → 4.8.67

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 +8 -8
  3. package/package.json +1 -1
package/biz9_config CHANGED
@@ -1,4 +1,4 @@
1
- VERSION='5.4.6'
1
+ VERSION='5.4.7'
2
2
  TITLE='BiZ9-Logic';
3
3
  REPO='git@github.com:biz9framework/biz9-logic.git';
4
4
  BRANCH='main';
package/index.js CHANGED
@@ -1108,26 +1108,26 @@ class Team_Url {
1108
1108
  };
1109
1109
  }
1110
1110
  class Url{
1111
- static copy_item = (biz9_config,data_type,id) => {
1111
+ static copy = (biz9_config,data_type,id) => {
1112
1112
  let action_url = "main/crud/copy/"+data_type + "/" + id;
1113
1113
  return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,null);
1114
1114
  };
1115
- static delete_item = (biz9_config,data_type,id) => {
1115
+ static delete = (biz9_config,data_type,id) => {
1116
1116
  let action_url = "main/crud/delete/"+data_type + "/" + id;
1117
1117
  return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,null);
1118
1118
  };
1119
- static delete_item_check_protection = (biz9_config,data_type,id) => {
1119
+ static delete_check_protection = (biz9_config,data_type,id) => {
1120
1120
  let action_url = "main/crud/delete_item_check_protection/"+data_type + "/" + id;
1121
1121
  return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,null);
1122
1122
  };
1123
- static delete_list = (biz9_config,data_type) => {
1123
+ static delete_search = (biz9_config,data_type) => {
1124
1124
  let action_url = "main/crud/delete_list/"+data_type;
1125
1125
  return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,null);
1126
1126
  };
1127
- static get = (biz9_config,action_url,params) => {
1127
+ static url = (biz9_config,action_url,params) => {
1128
1128
  return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,params);
1129
1129
  }
1130
- static get_item = (biz9_config,data_type,key) => {
1130
+ static get = (biz9_config,data_type,key) => {
1131
1131
  let action_url= "main/crud/get/"+data_type + "/" + key;
1132
1132
  return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,null);
1133
1133
  };
@@ -1143,11 +1143,11 @@ class Url{
1143
1143
  let action_url = "main/crud/update/"+data_type + "/" + id;
1144
1144
  return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,null);
1145
1145
  };
1146
- static update_item = (biz9_config,data_type,id) => {
1146
+ static update = (biz9_config,data_type,id) => {
1147
1147
  let action_url = "main/crud/update/"+data_type + "/" + id;
1148
1148
  return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,null);
1149
1149
  };
1150
- static update_item_delete_cache = (biz9_config,data_type,id) => {
1150
+ static update_delete_cache = (biz9_config,data_type,id) => {
1151
1151
  let action_url = "main/crud/update_item_delete_cache/"+data_type + "/" + id;
1152
1152
  return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,null);
1153
1153
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz9-logic",
3
- "version": "4.8.66",
3
+ "version": "4.8.67",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"