biz9-logic 3.0.13 → 3.0.14

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 +7 -7
  3. package/package.json +1 -1
package/biz9_config CHANGED
@@ -1,4 +1,4 @@
1
- VERSION='3.1.3'
1
+ VERSION='3.1.4'
2
2
  TITLE='BiZ9-Logic';
3
3
  REPO='git@github.com:biz9framework/biz9-logic.git';
4
4
  BRANCH='main';
package/index.js CHANGED
@@ -64,31 +64,31 @@ class Url {
64
64
  static get = (biz9_config,action_url,params)=>{
65
65
  return get_cloud_url_main(biz9_config.APP_TITLE_ID,biz9_config.URL,action_url,params);
66
66
  }
67
- static get_action_connect = (biz9_config) => {
67
+ static get_connect = (biz9_config) => {
68
68
  let action_url= "main/test/connect/";
69
69
  return get_cloud_url_main(biz9_config.APP_TITLE_ID,biz9_config.URL,action_url,null);
70
70
  };
71
- static get_action_update_item = (biz9_config,data_type,id) => {
71
+ static get_update_item = (biz9_config,data_type,id) => {
72
72
  let action_url= "main/crud/update/"+data_type + "/" + id;
73
73
  return get_cloud_url_main(biz9_config.APP_TITLE_ID,biz9_config.URL,action_url,null);
74
74
  };
75
- static get_action_get_item = (biz9_config,data_type,id) => {
75
+ static get_get_item = (biz9_config,data_type,id) => {
76
76
  let action_url= "main/crud/get/"+data_type + "/" + id;
77
77
  return get_cloud_url_main(biz9_config.APP_TITLE_ID,biz9_config.URL,action_url,null);
78
78
  };
79
- static get_action_delete_item = (biz9_config,data_type,id) => {
79
+ static get_delete_item = (biz9_config,data_type,id) => {
80
80
  let action_url= "main/crud/delete/"+data_type + "/" + id;
81
81
  return get_cloud_url_main(biz9_config.APP_TITLE_ID,biz9_config.URL,action_url,null);
82
82
  };
83
- static get_action_get_list = (biz9_config,data_type) => {
83
+ static get_get_list = (biz9_config,data_type) => {
84
84
  let action_url= "main/crud/get_list/"+data_type;
85
85
  return get_cloud_url_main(biz9_config.APP_TITLE_ID,biz9_config.URL,action_url,null);
86
86
  };
87
- static get_action_delete_list = (biz9_config,data_type) => {
87
+ static get_delete_list = (biz9_config,data_type) => {
88
88
  let action_url= "main/crud/delete_list/"+data_type;
89
89
  return get_cloud_url_main(biz9_config.APP_TITLE_ID,biz9_config.URL,action_url,null);
90
90
  };
91
- static get_action_update_list = (biz9_config,data_type) => {
91
+ static get_update_list = (biz9_config,data_type) => {
92
92
  let action_url= "main/crud/update_list/"+data_type;
93
93
  return get_cloud_url_main(biz9_config.APP_TITLE_ID,biz9_config.URL,action_url,null);
94
94
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz9-logic",
3
- "version": "3.0.13",
3
+ "version": "3.0.14",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"