arky-sdk 0.3.13 → 0.3.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.
package/dist/index.d.cts CHANGED
@@ -48,7 +48,6 @@ declare function createArkySDK(config: HttpClientConfig & {
48
48
  getUserLocation(options?: RequestOptions): Promise<any>;
49
49
  getMe(options?: RequestOptions): Promise<any>;
50
50
  searchUsers(params: GetUsersParams, options?: RequestOptions): Promise<any>;
51
- getUsers(params: GetUsersParams, options?: RequestOptions): Promise<any>;
52
51
  setUserRole(params: SetRoleParams, options?: RequestOptions): Promise<any>;
53
52
  loginUser(params: LoginUserParams, options?: RequestOptions): Promise<any>;
54
53
  registerUser(params: RegisterUserParams, options?: RequestOptions): Promise<any>;
package/dist/index.d.ts CHANGED
@@ -48,7 +48,6 @@ declare function createArkySDK(config: HttpClientConfig & {
48
48
  getUserLocation(options?: RequestOptions): Promise<any>;
49
49
  getMe(options?: RequestOptions): Promise<any>;
50
50
  searchUsers(params: GetUsersParams, options?: RequestOptions): Promise<any>;
51
- getUsers(params: GetUsersParams, options?: RequestOptions): Promise<any>;
52
51
  setUserRole(params: SetRoleParams, options?: RequestOptions): Promise<any>;
53
52
  loginUser(params: LoginUserParams, options?: RequestOptions): Promise<any>;
54
53
  registerUser(params: RegisterUserParams, options?: RequestOptions): Promise<any>;
package/dist/index.js CHANGED
@@ -202,10 +202,6 @@ var createUserApi = (apiConfig) => {
202
202
  }
203
203
  });
204
204
  },
205
- // Alias for backwards compatibility
206
- async getUsers(params, options) {
207
- return this.searchUsers(params, options);
208
- },
209
205
  async setUserRole(params, options) {
210
206
  return apiConfig.httpClient.put("/v1/users/set-role", params, options);
211
207
  },