@cpzxrobot/sdk 1.1.91 → 1.1.93

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