@drxsuperapp/sdk 1.1.14 → 1.1.16
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 +10 -10
- package/api.ts +96 -92
- package/deploy.log +105 -356
- package/dist/api.d.ts +97 -93
- package/dist/api.js +4 -0
- package/docs/ApiPadelMatchesGet200ResponseInner.md +8 -8
- package/docs/ApiPadelMatchesGet200ResponseInnerSets.md +26 -0
- package/docs/ApiPadelMatchesGet200ResponseInnerSetsSetsInner.md +22 -0
- package/docs/ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner.md +24 -0
- package/docs/ApiPadelMatchesGet200ResponseInnerStats.md +32 -0
- package/docs/ApiPadelMatchesGet200ResponseInnerStatsConnections.md +20 -0
- package/docs/ApiPadelMatchesGet200ResponseInnerStatsMatchValue.md +22 -0
- package/docs/PadelApi.md +4 -4
- package/package.json +1 -1
- package/workflow.sh +1 -1
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# ApiPadelMatchesGet200ResponseInnerStatsMatchValue
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**team_1** | **string** | | [default to undefined]
|
|
9
|
+
**team_2** | **string** | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { ApiPadelMatchesGet200ResponseInnerStatsMatchValue } from './api';
|
|
15
|
+
|
|
16
|
+
const instance: ApiPadelMatchesGet200ResponseInnerStatsMatchValue = {
|
|
17
|
+
team_1,
|
|
18
|
+
team_2,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/PadelApi.md
CHANGED
|
@@ -4,10 +4,10 @@ All URIs are relative to *http://localhost*
|
|
|
4
4
|
|
|
5
5
|
|Method | HTTP request | Description|
|
|
6
6
|
|------------- | ------------- | -------------|
|
|
7
|
-
|[**apiPadelMatchesGet**](#apipadelmatchesget) | **GET** /api/padel/matches | |
|
|
7
|
+
|[**apiPadelMatchesGet**](#apipadelmatchesget) | **GET** /api/padel/matches | List padel matches|
|
|
8
8
|
|
|
9
9
|
# **apiPadelMatchesGet**
|
|
10
|
-
>
|
|
10
|
+
> Array<ApiPadelMatchesGet200ResponseInner> apiPadelMatchesGet()
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
### Example
|
|
@@ -30,7 +30,7 @@ This endpoint does not have any parameters.
|
|
|
30
30
|
|
|
31
31
|
### Return type
|
|
32
32
|
|
|
33
|
-
**
|
|
33
|
+
**Array<ApiPadelMatchesGet200ResponseInner>**
|
|
34
34
|
|
|
35
35
|
### Authorization
|
|
36
36
|
|
|
@@ -45,7 +45,7 @@ No authorization required
|
|
|
45
45
|
### HTTP response details
|
|
46
46
|
| Status code | Description | Response headers |
|
|
47
47
|
|-------------|-------------|------------------|
|
|
48
|
-
|**200** | List of padel matches | - |
|
|
48
|
+
|**200** | List of padel matches new | - |
|
|
49
49
|
|
|
50
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
51
|
|
package/package.json
CHANGED
package/workflow.sh
CHANGED
|
@@ -33,7 +33,7 @@ fi
|
|
|
33
33
|
[ -f .gitignore ] && cp .gitignore .gitignore.backup
|
|
34
34
|
|
|
35
35
|
openapi-generator-cli generate \
|
|
36
|
-
-i https://
|
|
36
|
+
-i https://api-dev.drxapps.com/swagger.json \
|
|
37
37
|
-g typescript-axios \
|
|
38
38
|
-o ./ \
|
|
39
39
|
--auth "Authorization:Basic%20Z2FtYnVsbHM6OGQxbUZKcWJmZTVybVJ6" >> "$LOGFILE" 2>&1
|