starta.apiclient 1.37.3632 → 1.37.3633

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.
@@ -100,7 +100,7 @@ export default class Organizations {
100
100
  comment: string;
101
101
  type: 'system';
102
102
  }): Promise<import("../../types").StartaResponse>;
103
- setMarketplaceCriteriaValue(organizationLogin: string, criteria: string, { approved }: {
103
+ setMarketplaceCriteriaManualCheckValue(organizationLogin: string, criteria: string, { approved }: {
104
104
  approved: any;
105
105
  }): Promise<import("../../types").StartaResponse>;
106
106
  get orders(): Orders;
@@ -215,9 +215,9 @@ class Organizations {
215
215
  body: { amount, comment, type },
216
216
  });
217
217
  }
218
- setMarketplaceCriteriaValue(organizationLogin, criteria, { approved }) {
218
+ setMarketplaceCriteriaManualCheckValue(organizationLogin, criteria, { approved }) {
219
219
  return this._requestRunner.performRequest({
220
- url: `accounts/${organizationLogin}/marketplaceCriterias/${criteria}`,
220
+ url: `accounts/${organizationLogin}/marketplaceCriterias/${criteria}/manualCheck`,
221
221
  method: 'PUT',
222
222
  body: { approved },
223
223
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "starta.apiclient",
3
- "version": "1.37.3632",
3
+ "version": "1.37.3633",
4
4
  "main": "./lib/index.js",
5
5
  "description": "Wrapper for starta.one api",
6
6
  "author": "Collaboracia OÜ",