@drxsuperapp/sdk 1.1.271 → 1.1.273
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/apis/AuthenticationApi.ts +3 -3
- package/deploy.log +7 -8
- package/dist/apis/AuthenticationApi.d.ts +2 -2
- package/dist/apis/AuthenticationApi.js +1 -1
- package/dist/models/ApiEsportMatchesGetFilterParameter.js +4 -4
- package/models/ApiEsportMatchesGetFilterParameter.ts +4 -4
- package/package.json +1 -1
|
@@ -115,7 +115,7 @@ export class AuthenticationApi extends runtime.BaseAPI {
|
|
|
115
115
|
* Change user password (requires authentication)
|
|
116
116
|
* Change Password
|
|
117
117
|
*/
|
|
118
|
-
async apiAuthChangePasswordPostRaw(requestParameters: ApiAuthChangePasswordPostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<
|
|
118
|
+
async apiAuthChangePasswordPostRaw(requestParameters: ApiAuthChangePasswordPostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiUserGet200Response>> {
|
|
119
119
|
const queryParameters: any = {};
|
|
120
120
|
|
|
121
121
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
@@ -142,14 +142,14 @@ export class AuthenticationApi extends runtime.BaseAPI {
|
|
|
142
142
|
body: ApiAuthChangePasswordPostRequestToJSON(requestParameters['apiAuthChangePasswordPostRequest']),
|
|
143
143
|
}, initOverrides);
|
|
144
144
|
|
|
145
|
-
return new runtime.JSONApiResponse(response, (jsonValue) =>
|
|
145
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => ApiUserGet200ResponseFromJSON(jsonValue));
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
/**
|
|
149
149
|
* Change user password (requires authentication)
|
|
150
150
|
* Change Password
|
|
151
151
|
*/
|
|
152
|
-
async apiAuthChangePasswordPost(requestParameters: ApiAuthChangePasswordPostOperationRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<
|
|
152
|
+
async apiAuthChangePasswordPost(requestParameters: ApiAuthChangePasswordPostOperationRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiUserGet200Response> {
|
|
153
153
|
const response = await this.apiAuthChangePasswordPostRaw(requestParameters, initOverrides);
|
|
154
154
|
return await response.value();
|
|
155
155
|
}
|
package/deploy.log
CHANGED
|
@@ -559,21 +559,20 @@
|
|
|
559
559
|
# https://opencollective.com/openapi_generator/donate #
|
|
560
560
|
################################################################################
|
|
561
561
|
✅ SDK generated
|
|
562
|
-
[master
|
|
563
|
-
|
|
564
|
-
create mode 100644 models/ApiAuthChangePasswordPostRequest.ts
|
|
562
|
+
[master 831b9e6] VPS: Generated API SDK
|
|
563
|
+
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
565
564
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
566
|
-
|
|
565
|
+
5c39186..831b9e6 master -> master
|
|
567
566
|
✅ Changes committed and pushed
|
|
568
|
-
v1.1.
|
|
567
|
+
v1.1.273
|
|
569
568
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
570
|
-
|
|
569
|
+
831b9e6..fb69a1f master -> master
|
|
571
570
|
✅ Version bumped
|
|
572
571
|
|
|
573
|
-
> @drxsuperapp/sdk@1.1.
|
|
572
|
+
> @drxsuperapp/sdk@1.1.273 prepublishOnly
|
|
574
573
|
> npm run build
|
|
575
574
|
|
|
576
575
|
|
|
577
|
-
> @drxsuperapp/sdk@1.1.
|
|
576
|
+
> @drxsuperapp/sdk@1.1.273 build
|
|
578
577
|
> tsc
|
|
579
578
|
|
|
@@ -46,12 +46,12 @@ export declare class AuthenticationApi extends runtime.BaseAPI {
|
|
|
46
46
|
* Change user password (requires authentication)
|
|
47
47
|
* Change Password
|
|
48
48
|
*/
|
|
49
|
-
apiAuthChangePasswordPostRaw(requestParameters: ApiAuthChangePasswordPostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<
|
|
49
|
+
apiAuthChangePasswordPostRaw(requestParameters: ApiAuthChangePasswordPostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiUserGet200Response>>;
|
|
50
50
|
/**
|
|
51
51
|
* Change user password (requires authentication)
|
|
52
52
|
* Change Password
|
|
53
53
|
*/
|
|
54
|
-
apiAuthChangePasswordPost(requestParameters?: ApiAuthChangePasswordPostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<
|
|
54
|
+
apiAuthChangePasswordPost(requestParameters?: ApiAuthChangePasswordPostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiUserGet200Response>;
|
|
55
55
|
/**
|
|
56
56
|
* Change password using reset token
|
|
57
57
|
* Forgot Password 3. Change Password
|
|
@@ -42,7 +42,7 @@ export class AuthenticationApi extends runtime.BaseAPI {
|
|
|
42
42
|
query: queryParameters,
|
|
43
43
|
body: ApiAuthChangePasswordPostRequestToJSON(requestParameters['apiAuthChangePasswordPostRequest']),
|
|
44
44
|
}, initOverrides);
|
|
45
|
-
return new runtime.JSONApiResponse(response, (jsonValue) =>
|
|
45
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => ApiUserGet200ResponseFromJSON(jsonValue));
|
|
46
46
|
}
|
|
47
47
|
/**
|
|
48
48
|
* Change user password (requires authentication)
|
|
@@ -30,8 +30,8 @@ export function ApiEsportMatchesGetFilterParameterFromJSONTyped(json, ignoreDisc
|
|
|
30
30
|
return {
|
|
31
31
|
'id': json['id'] == null ? undefined : ApiPadelMatchesGetFilterParameterIdFromJSON(json['id']),
|
|
32
32
|
'status': json['status'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['status']),
|
|
33
|
-
'videogameId': json['
|
|
34
|
-
'beginAt': json['
|
|
33
|
+
'videogameId': json['videogameId'] == null ? undefined : ApiPadelMatchesGetFilterParameterIdFromJSON(json['videogameId']),
|
|
34
|
+
'beginAt': json['beginAt'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['beginAt']),
|
|
35
35
|
};
|
|
36
36
|
}
|
|
37
37
|
export function ApiEsportMatchesGetFilterParameterToJSON(json) {
|
|
@@ -44,7 +44,7 @@ export function ApiEsportMatchesGetFilterParameterToJSONTyped(value, ignoreDiscr
|
|
|
44
44
|
return {
|
|
45
45
|
'id': ApiPadelMatchesGetFilterParameterIdToJSON(value['id']),
|
|
46
46
|
'status': ApiPadelMatchesGetFilterParameterNameToJSON(value['status']),
|
|
47
|
-
'
|
|
48
|
-
'
|
|
47
|
+
'videogameId': ApiPadelMatchesGetFilterParameterIdToJSON(value['videogameId']),
|
|
48
|
+
'beginAt': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['beginAt']),
|
|
49
49
|
};
|
|
50
50
|
}
|
|
@@ -86,8 +86,8 @@ export function ApiEsportMatchesGetFilterParameterFromJSONTyped(json: any, ignor
|
|
|
86
86
|
|
|
87
87
|
'id': json['id'] == null ? undefined : ApiPadelMatchesGetFilterParameterIdFromJSON(json['id']),
|
|
88
88
|
'status': json['status'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['status']),
|
|
89
|
-
'videogameId': json['
|
|
90
|
-
'beginAt': json['
|
|
89
|
+
'videogameId': json['videogameId'] == null ? undefined : ApiPadelMatchesGetFilterParameterIdFromJSON(json['videogameId']),
|
|
90
|
+
'beginAt': json['beginAt'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['beginAt']),
|
|
91
91
|
};
|
|
92
92
|
}
|
|
93
93
|
|
|
@@ -104,8 +104,8 @@ export function ApiEsportMatchesGetFilterParameterToJSONTyped(value?: ApiEsportM
|
|
|
104
104
|
|
|
105
105
|
'id': ApiPadelMatchesGetFilterParameterIdToJSON(value['id']),
|
|
106
106
|
'status': ApiPadelMatchesGetFilterParameterNameToJSON(value['status']),
|
|
107
|
-
'
|
|
108
|
-
'
|
|
107
|
+
'videogameId': ApiPadelMatchesGetFilterParameterIdToJSON(value['videogameId']),
|
|
108
|
+
'beginAt': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['beginAt']),
|
|
109
109
|
};
|
|
110
110
|
}
|
|
111
111
|
|