Skip to content
#

SDK

The term SDK stands for software development kit. It is a collection of tools that allow developers to build software for specific platforms. An SDK can consist of (but is not limited to) a compiler, debugger, libraries, documentation, and code samples.

Here are 759 public repositories matching this topic...

janephp
Korbeil
Korbeil commented Feb 11, 2021

Is your feature request related to a problem? Please describe.
Not really, it's more a better UX when writting your OpenAPI file

Describe the solution you'd like
Like for Object properties, we should be able to give parameters names as key (to avoid duplication)

Additional context
Here is an example before / after this feature:

get:
  summary: Get an Order
  descri
curquiza
curquiza commented Nov 8, 2021

In tests, when an ApiException exception is tested, often the message of the exception is also checked.

$this->expectException(ApiException::class);
$this->expectExceptionMessage('internal error');

This is something we don't want to do. We only want to check the code of the error in the tests, not the message itself that can often break on the MeiliSearch side.

FYI, Me

Wikipedia
Wikipedia