@cpzxrobot/sdk 1.1.90 → 1.1.91

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.
@@ -115,4 +115,10 @@ export class CompanyGateway extends Object {
115
115
  }
116
116
  }
117
117
  }
118
+
119
+ async search(args: any) {
120
+ var axios = await this.context.ready;
121
+ return axios.get(`/api/v2/company/query`, args);
122
+ }
123
+
118
124
  }
@@ -110,5 +110,9 @@ class CompanyGateway extends Object {
110
110
  }
111
111
  };
112
112
  }
113
+ async search(args) {
114
+ var axios = await this.context.ready;
115
+ return axios.get(`/api/v2/company/query`, args);
116
+ }
113
117
  }
114
118
  exports.CompanyGateway = CompanyGateway;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cpzxrobot/sdk",
3
- "version": "1.1.90",
3
+ "version": "1.1.91",
4
4
  "description": "提供给上海正芯数智APP第三方H5应用使用的SDK",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {