@drxsuperapp/sdk 1.1.492 → 1.1.493
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.
|
@@ -19,6 +19,7 @@ import type {
|
|
|
19
19
|
ApiNotificationMyNotificationsGet200Response,
|
|
20
20
|
ApiNotificationTopicPostRequest,
|
|
21
21
|
ApiNotificationUserPost200Response,
|
|
22
|
+
ApiNotificationUserPost200ResponseResponseObject,
|
|
22
23
|
ApiNotificationUserPostRequest,
|
|
23
24
|
} from '../models/index';
|
|
24
25
|
import {
|
|
@@ -30,6 +31,8 @@ import {
|
|
|
30
31
|
ApiNotificationTopicPostRequestToJSON,
|
|
31
32
|
ApiNotificationUserPost200ResponseFromJSON,
|
|
32
33
|
ApiNotificationUserPost200ResponseToJSON,
|
|
34
|
+
ApiNotificationUserPost200ResponseResponseObjectFromJSON,
|
|
35
|
+
ApiNotificationUserPost200ResponseResponseObjectToJSON,
|
|
33
36
|
ApiNotificationUserPostRequestFromJSON,
|
|
34
37
|
ApiNotificationUserPostRequestToJSON,
|
|
35
38
|
} from '../models/index';
|
|
@@ -62,7 +65,7 @@ export class NotificationManagementApi extends runtime.BaseAPI {
|
|
|
62
65
|
* Broadcast Notification
|
|
63
66
|
* Broadcast Notification
|
|
64
67
|
*/
|
|
65
|
-
async apiAdminNotificationBroadcastPostRaw(requestParameters: ApiAdminNotificationBroadcastPostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<
|
|
68
|
+
async apiAdminNotificationBroadcastPostRaw(requestParameters: ApiAdminNotificationBroadcastPostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiNotificationUserPost200ResponseResponseObject>> {
|
|
66
69
|
const queryParameters: any = {};
|
|
67
70
|
|
|
68
71
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
@@ -89,14 +92,14 @@ export class NotificationManagementApi extends runtime.BaseAPI {
|
|
|
89
92
|
body: ApiAdminNotificationBroadcastPostRequestToJSON(requestParameters['apiAdminNotificationBroadcastPostRequest']),
|
|
90
93
|
}, initOverrides);
|
|
91
94
|
|
|
92
|
-
return new runtime.JSONApiResponse(response, (jsonValue) =>
|
|
95
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => ApiNotificationUserPost200ResponseResponseObjectFromJSON(jsonValue));
|
|
93
96
|
}
|
|
94
97
|
|
|
95
98
|
/**
|
|
96
99
|
* Broadcast Notification
|
|
97
100
|
* Broadcast Notification
|
|
98
101
|
*/
|
|
99
|
-
async apiAdminNotificationBroadcastPost(requestParameters: ApiAdminNotificationBroadcastPostOperationRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<
|
|
102
|
+
async apiAdminNotificationBroadcastPost(requestParameters: ApiAdminNotificationBroadcastPostOperationRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiNotificationUserPost200ResponseResponseObject> {
|
|
100
103
|
const response = await this.apiAdminNotificationBroadcastPostRaw(requestParameters, initOverrides);
|
|
101
104
|
return await response.value();
|
|
102
105
|
}
|
package/deploy.log
CHANGED
|
@@ -892,25 +892,20 @@
|
|
|
892
892
|
# https://opencollective.com/openapi_generator/donate #
|
|
893
893
|
################################################################################
|
|
894
894
|
✅ SDK generated
|
|
895
|
-
[master
|
|
896
|
-
|
|
897
|
-
create mode 100644 apis/SocialBindApi.ts
|
|
898
|
-
create mode 100644 models/ApiBindDiscordGet200Response.ts
|
|
899
|
-
create mode 100644 models/ApiBindDiscordGet200ResponseResponseObject.ts
|
|
900
|
-
create mode 100644 models/ApiBindDiscordPreconnectGet200Response.ts
|
|
901
|
-
create mode 100644 models/ApiBindDiscordPreconnectGet200ResponseResponseObject.ts
|
|
895
|
+
[master 4090b7e] VPS: Generated API SDK
|
|
896
|
+
1 file changed, 6 insertions(+), 3 deletions(-)
|
|
902
897
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
903
|
-
|
|
898
|
+
6c8c0bd..4090b7e master -> master
|
|
904
899
|
✅ Changes committed and pushed
|
|
905
|
-
v1.1.
|
|
900
|
+
v1.1.493
|
|
906
901
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
907
|
-
|
|
902
|
+
4090b7e..c109337 master -> master
|
|
908
903
|
✅ Version bumped
|
|
909
904
|
|
|
910
|
-
> @drxsuperapp/sdk@1.1.
|
|
905
|
+
> @drxsuperapp/sdk@1.1.493 prepublishOnly
|
|
911
906
|
> npm run build
|
|
912
907
|
|
|
913
908
|
|
|
914
|
-
> @drxsuperapp/sdk@1.1.
|
|
909
|
+
> @drxsuperapp/sdk@1.1.493 build
|
|
915
910
|
> tsc
|
|
916
911
|
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import type { ApiAdminNotificationBroadcastPostRequest, ApiNotificationMyNotificationsGet200Response, ApiNotificationTopicPostRequest, ApiNotificationUserPost200Response, ApiNotificationUserPostRequest } from '../models/index';
|
|
13
|
+
import type { ApiAdminNotificationBroadcastPostRequest, ApiNotificationMyNotificationsGet200Response, ApiNotificationTopicPostRequest, ApiNotificationUserPost200Response, ApiNotificationUserPost200ResponseResponseObject, ApiNotificationUserPostRequest } from '../models/index';
|
|
14
14
|
export interface ApiAdminNotificationBroadcastPostOperationRequest {
|
|
15
15
|
apiAdminNotificationBroadcastPostRequest?: ApiAdminNotificationBroadcastPostRequest;
|
|
16
16
|
}
|
|
@@ -34,12 +34,12 @@ export declare class NotificationManagementApi extends runtime.BaseAPI {
|
|
|
34
34
|
* Broadcast Notification
|
|
35
35
|
* Broadcast Notification
|
|
36
36
|
*/
|
|
37
|
-
apiAdminNotificationBroadcastPostRaw(requestParameters: ApiAdminNotificationBroadcastPostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<
|
|
37
|
+
apiAdminNotificationBroadcastPostRaw(requestParameters: ApiAdminNotificationBroadcastPostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiNotificationUserPost200ResponseResponseObject>>;
|
|
38
38
|
/**
|
|
39
39
|
* Broadcast Notification
|
|
40
40
|
* Broadcast Notification
|
|
41
41
|
*/
|
|
42
|
-
apiAdminNotificationBroadcastPost(requestParameters?: ApiAdminNotificationBroadcastPostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<
|
|
42
|
+
apiAdminNotificationBroadcastPost(requestParameters?: ApiAdminNotificationBroadcastPostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiNotificationUserPost200ResponseResponseObject>;
|
|
43
43
|
/**
|
|
44
44
|
* Admin Notification List
|
|
45
45
|
* Admin Notification List
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
import * as runtime from '../runtime';
|
|
15
|
-
import { ApiAdminNotificationBroadcastPostRequestToJSON, ApiNotificationMyNotificationsGet200ResponseFromJSON, ApiNotificationTopicPostRequestToJSON, ApiNotificationUserPost200ResponseFromJSON, ApiNotificationUserPostRequestToJSON, } from '../models/index';
|
|
15
|
+
import { ApiAdminNotificationBroadcastPostRequestToJSON, ApiNotificationMyNotificationsGet200ResponseFromJSON, ApiNotificationTopicPostRequestToJSON, ApiNotificationUserPost200ResponseFromJSON, ApiNotificationUserPost200ResponseResponseObjectFromJSON, ApiNotificationUserPostRequestToJSON, } from '../models/index';
|
|
16
16
|
/**
|
|
17
17
|
*
|
|
18
18
|
*/
|
|
@@ -42,7 +42,7 @@ export class NotificationManagementApi extends runtime.BaseAPI {
|
|
|
42
42
|
query: queryParameters,
|
|
43
43
|
body: ApiAdminNotificationBroadcastPostRequestToJSON(requestParameters['apiAdminNotificationBroadcastPostRequest']),
|
|
44
44
|
}, initOverrides);
|
|
45
|
-
return new runtime.JSONApiResponse(response, (jsonValue) =>
|
|
45
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => ApiNotificationUserPost200ResponseResponseObjectFromJSON(jsonValue));
|
|
46
46
|
}
|
|
47
47
|
/**
|
|
48
48
|
* Broadcast Notification
|