@drxsuperapp/sdk 1.1.19 → 1.1.21
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/deploy.log +42 -35
- package/package.json +1 -1
- package/workflow.sh +1 -1
- package/docs/ApiExamplesGet200ResponseInner.md +0 -28
- package/docs/ApiExamplesIdPutRequest.md +0 -22
- package/docs/ApiExamplesPostRequest.md +0 -22
- package/docs/ApiHealthCheckGet200Response.md +0 -26
- package/docs/ApiNewsGet200Response.md +0 -26
- package/docs/ApiNewsGet200ResponseResponseObject.md +0 -28
- package/docs/ApiNewsGet200ResponseResponseObjectItemsInner.md +0 -30
- package/docs/ApiNewsIdGet200Response.md +0 -26
- package/docs/ApiNewsIdGet200ResponseResponseObject.md +0 -44
- package/docs/ApiNewsIdGet200ResponseResponseObjectLeaguesInner.md +0 -20
- package/docs/ApiNewsIdGet200ResponseResponseObjectLeaguesInnerLeague.md +0 -24
- package/docs/ApiPadelMatchesGet200Response.md +0 -48
- package/docs/ApiPadelMatchesGet200ResponseInner.md +0 -48
- package/docs/ApiPadelMatchesGet200ResponseInnerPlayers.md +0 -22
- package/docs/ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner.md +0 -26
- package/docs/ApiPadelMatchesGet200ResponseInnerScoreInner.md +0 -22
- package/docs/ApiPadelMatchesGet200ResponseInnerSets.md +0 -26
- package/docs/ApiPadelMatchesGet200ResponseInnerSetsSetsInner.md +0 -22
- package/docs/ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner.md +0 -24
- package/docs/ApiPadelMatchesGet200ResponseInnerStats.md +0 -32
- package/docs/ApiPadelMatchesGet200ResponseInnerStatsConnections.md +0 -20
- package/docs/ApiPadelMatchesGet200ResponseInnerStatsMatchValue.md +0 -22
- package/docs/ApiPadelMatchesGet200ResponsePlayers.md +0 -22
- package/docs/ApiPadelMatchesGet200ResponsePlayersTeam1Inner.md +0 -26
- package/docs/ApiPadelMatchesGet200ResponseScoreInner.md +0 -22
- package/docs/ApiPadelMatchesGet200ResponseSets.md +0 -26
- package/docs/ApiPadelMatchesGet200ResponseSetsSetsInner.md +0 -22
- package/docs/ApiPadelMatchesGet200ResponseSetsSetsInnerGamesInner.md +0 -24
- package/docs/ApiPadelMatchesGet200ResponseStats.md +0 -32
- package/docs/ApiPadelMatchesGet200ResponseStatsConnections.md +0 -20
- package/docs/ApiPadelMatchesGet200ResponseStatsMatchValue.md +0 -22
- package/docs/ExampleApi.md +0 -270
- package/docs/HealthCheckApi.md +0 -51
- package/docs/NewsApi.md +0 -119
- package/docs/PadelApi.md +0 -51
package/docs/NewsApi.md
DELETED
|
@@ -1,119 +0,0 @@
|
|
|
1
|
-
# NewsApi
|
|
2
|
-
|
|
3
|
-
All URIs are relative to *http://localhost*
|
|
4
|
-
|
|
5
|
-
|Method | HTTP request | Description|
|
|
6
|
-
|------------- | ------------- | -------------|
|
|
7
|
-
|[**apiNewsGet**](#apinewsget) | **GET** /api/news | |
|
|
8
|
-
|[**apiNewsIdGet**](#apinewsidget) | **GET** /api/news/{id} | |
|
|
9
|
-
|
|
10
|
-
# **apiNewsGet**
|
|
11
|
-
> ApiNewsGet200Response apiNewsGet()
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
### Example
|
|
15
|
-
|
|
16
|
-
```typescript
|
|
17
|
-
import {
|
|
18
|
-
NewsApi,
|
|
19
|
-
Configuration
|
|
20
|
-
} from './api';
|
|
21
|
-
|
|
22
|
-
const configuration = new Configuration();
|
|
23
|
-
const apiInstance = new NewsApi(configuration);
|
|
24
|
-
|
|
25
|
-
let page: string; // (optional) (default to undefined)
|
|
26
|
-
let perPage: string; // (optional) (default to undefined)
|
|
27
|
-
let leagueDescription: string; // (optional) (default to undefined)
|
|
28
|
-
let searchTerm: string; // (optional) (default to undefined)
|
|
29
|
-
|
|
30
|
-
const { status, data } = await apiInstance.apiNewsGet(
|
|
31
|
-
page,
|
|
32
|
-
perPage,
|
|
33
|
-
leagueDescription,
|
|
34
|
-
searchTerm
|
|
35
|
-
);
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
### Parameters
|
|
39
|
-
|
|
40
|
-
|Name | Type | Description | Notes|
|
|
41
|
-
|------------- | ------------- | ------------- | -------------|
|
|
42
|
-
| **page** | [**string**] | | (optional) defaults to undefined|
|
|
43
|
-
| **perPage** | [**string**] | | (optional) defaults to undefined|
|
|
44
|
-
| **leagueDescription** | [**string**] | | (optional) defaults to undefined|
|
|
45
|
-
| **searchTerm** | [**string**] | | (optional) defaults to undefined|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
### Return type
|
|
49
|
-
|
|
50
|
-
**ApiNewsGet200Response**
|
|
51
|
-
|
|
52
|
-
### Authorization
|
|
53
|
-
|
|
54
|
-
No authorization required
|
|
55
|
-
|
|
56
|
-
### HTTP request headers
|
|
57
|
-
|
|
58
|
-
- **Content-Type**: Not defined
|
|
59
|
-
- **Accept**: application/json
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
### HTTP response details
|
|
63
|
-
| Status code | Description | Response headers |
|
|
64
|
-
|-------------|-------------|------------------|
|
|
65
|
-
|**200** | success | - |
|
|
66
|
-
|
|
67
|
-
[[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)
|
|
68
|
-
|
|
69
|
-
# **apiNewsIdGet**
|
|
70
|
-
> ApiNewsIdGet200Response apiNewsIdGet()
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
### Example
|
|
74
|
-
|
|
75
|
-
```typescript
|
|
76
|
-
import {
|
|
77
|
-
NewsApi,
|
|
78
|
-
Configuration
|
|
79
|
-
} from './api';
|
|
80
|
-
|
|
81
|
-
const configuration = new Configuration();
|
|
82
|
-
const apiInstance = new NewsApi(configuration);
|
|
83
|
-
|
|
84
|
-
let id: string; // (default to undefined)
|
|
85
|
-
|
|
86
|
-
const { status, data } = await apiInstance.apiNewsIdGet(
|
|
87
|
-
id
|
|
88
|
-
);
|
|
89
|
-
```
|
|
90
|
-
|
|
91
|
-
### Parameters
|
|
92
|
-
|
|
93
|
-
|Name | Type | Description | Notes|
|
|
94
|
-
|------------- | ------------- | ------------- | -------------|
|
|
95
|
-
| **id** | [**string**] | | defaults to undefined|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
### Return type
|
|
99
|
-
|
|
100
|
-
**ApiNewsIdGet200Response**
|
|
101
|
-
|
|
102
|
-
### Authorization
|
|
103
|
-
|
|
104
|
-
No authorization required
|
|
105
|
-
|
|
106
|
-
### HTTP request headers
|
|
107
|
-
|
|
108
|
-
- **Content-Type**: Not defined
|
|
109
|
-
- **Accept**: application/json
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
### HTTP response details
|
|
113
|
-
| Status code | Description | Response headers |
|
|
114
|
-
|-------------|-------------|------------------|
|
|
115
|
-
|**200** | success | - |
|
|
116
|
-
|**404** | News item not found | - |
|
|
117
|
-
|
|
118
|
-
[[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)
|
|
119
|
-
|
package/docs/PadelApi.md
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
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 | List padel matches|
|
|
8
|
-
|
|
9
|
-
# **apiPadelMatchesGet**
|
|
10
|
-
> Array<ApiPadelMatchesGet200ResponseInner> 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
|
-
**Array<ApiPadelMatchesGet200ResponseInner>**
|
|
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 new | - |
|
|
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
|
-
|