@drxsuperapp/sdk 1.1.8 → 1.1.10
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/.openapi-generator/FILES +13 -0
- package/api.ts +553 -0
- package/deploy.log +47 -15
- package/dist/api.d.ts +469 -0
- package/dist/api.js +172 -0
- package/docs/ApiHealthCheckGet200Response.md +26 -0
- package/docs/ApiNewsIdGet200ResponseResponseObject.md +2 -0
- package/docs/ApiPadelMatchesGet200Response.md +48 -0
- package/docs/ApiPadelMatchesGet200ResponseInner.md +48 -0
- package/docs/ApiPadelMatchesGet200ResponseInnerPlayers.md +22 -0
- package/docs/ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner.md +26 -0
- package/docs/ApiPadelMatchesGet200ResponseInnerScoreInner.md +22 -0
- package/docs/ApiPadelMatchesGet200ResponsePlayers.md +22 -0
- package/docs/ApiPadelMatchesGet200ResponsePlayersTeam1Inner.md +26 -0
- package/docs/ApiPadelMatchesGet200ResponseScoreInner.md +22 -0
- package/docs/ApiPadelMatchesGet200ResponseSets.md +26 -0
- package/docs/ApiPadelMatchesGet200ResponseSetsSetsInner.md +22 -0
- package/docs/ApiPadelMatchesGet200ResponseSetsSetsInnerGamesInner.md +24 -0
- package/docs/ApiPadelMatchesGet200ResponseStats.md +32 -0
- package/docs/ApiPadelMatchesGet200ResponseStatsConnections.md +20 -0
- package/docs/ApiPadelMatchesGet200ResponseStatsMatchValue.md +22 -0
- package/docs/HealthCheckApi.md +51 -0
- package/docs/PadelApi.md +51 -0
- package/package.json +1 -1
package/docs/PadelApi.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# PadelApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *http://localhost*
|
|
4
|
+
|
|
5
|
+
|Method | HTTP request | Description|
|
|
6
|
+
|------------- | ------------- | -------------|
|
|
7
|
+
|[**apiPadelMatchesGet**](#apipadelmatchesget) | **GET** /api/padel/matches | |
|
|
8
|
+
|
|
9
|
+
# **apiPadelMatchesGet**
|
|
10
|
+
> ApiPadelMatchesGet200Response apiPadelMatchesGet()
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import {
|
|
17
|
+
PadelApi,
|
|
18
|
+
Configuration
|
|
19
|
+
} from './api';
|
|
20
|
+
|
|
21
|
+
const configuration = new Configuration();
|
|
22
|
+
const apiInstance = new PadelApi(configuration);
|
|
23
|
+
|
|
24
|
+
const { status, data } = await apiInstance.apiPadelMatchesGet();
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### Parameters
|
|
28
|
+
This endpoint does not have any parameters.
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Return type
|
|
32
|
+
|
|
33
|
+
**ApiPadelMatchesGet200Response**
|
|
34
|
+
|
|
35
|
+
### Authorization
|
|
36
|
+
|
|
37
|
+
No authorization required
|
|
38
|
+
|
|
39
|
+
### HTTP request headers
|
|
40
|
+
|
|
41
|
+
- **Content-Type**: Not defined
|
|
42
|
+
- **Accept**: application/json
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
### HTTP response details
|
|
46
|
+
| Status code | Description | Response headers |
|
|
47
|
+
|-------------|-------------|------------------|
|
|
48
|
+
|**200** | List of padel matches | - |
|
|
49
|
+
|
|
50
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
51
|
+
|