1
0
Fork 0
mirror of synced 2025-04-18 16:41:02 +00:00

repair composer.json

This commit is contained in:
Sergey Chazov 2021-09-09 15:27:29 +03:00 committed by Neur0toxine
parent 1140d78196
commit 1b6dc11933
2 changed files with 1 additions and 25 deletions

View file

@ -15,7 +15,7 @@
],
"require": {
"ext-json": "*",
"ext-tokenizer": "*"
"ext-tokenizer": "*",
"ext-mbstring": "*",
"ext-xmlwriter": "*"
},

View file

@ -3072,28 +3072,4 @@ class ApiClient
$request
);
}
/**
* @param array $request
* @return \RetailCrm\Response\ApiResponse
*/
public function loyaltyOrderApply(array $request): ApiResponse
{
return $this->client->makeRequest(
"/api/v5/orders/loyalty/apply",
Client::METHOD_POST,
$request
);
}
/**
* @return \RetailCrm\Response\ApiResponse
*/
public function getCredentials(): ApiResponse
{
return $this->client->makeRequest(
"/api/credentials",
Client::METHOD_GET
);
}
}