biz9-logic 4.7.2 → 4.7.3

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 +16 -0
  3. package/package.json +1 -1
package/biz9_config CHANGED
@@ -1,4 +1,4 @@
1
- VERSION='4.7.2'
1
+ VERSION='4.7.3'
2
2
  TITLE='BiZ9-Logic';
3
3
  REPO='git@github.com:biz9framework/biz9-logic.git';
4
4
  BRANCH='main';
package/index.js CHANGED
@@ -608,24 +608,40 @@ class Blog_Post_Url {
608
608
  let action_url="blog_post/get/"+title_url;
609
609
  return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,params);
610
610
  };
611
+ static browse = (biz9_config,title_url,params) => {
612
+ let action_url="blog_post/browse/"+title_url;
613
+ return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,params);
614
+ };
611
615
  }
612
616
  class Product_Url {
613
617
  static get = (biz9_config,title_url,params) => {
614
618
  let action_url="product/get/"+title_url;
615
619
  return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,params);
616
620
  };
621
+ static browse = (biz9_config,title_url,params) => {
622
+ let action_url="product/browse/"+title_url;
623
+ return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,params);
624
+ };
617
625
  }
618
626
  class Service_Url {
619
627
  static get = (biz9_config,title_url,params) => {
620
628
  let action_url="service/get/"+title_url;
621
629
  return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,params);
622
630
  };
631
+ static browse = (biz9_config,title_url,params) => {
632
+ let action_url="service/browse/"+title_url;
633
+ return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,params);
634
+ };
623
635
  }
624
636
  class Gallery_Url {
625
637
  static get = (biz9_config,title_url,params) => {
626
638
  let action_url="gallery/get/"+title_url;
627
639
  return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,params);
628
640
  };
641
+ static browse = (biz9_config,title_url,params) => {
642
+ let action_url="gallery/browse/"+title_url;
643
+ return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,params);
644
+ };
629
645
  }
630
646
  class Category_Url {
631
647
  static get = (biz9_config,title_url,params) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz9-logic",
3
- "version": "4.7.2",
3
+ "version": "4.7.3",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"