@drxsuperapp/sdk 1.1.491 → 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.
- package/.openapi-generator/FILES +5 -0
- package/apis/NotificationManagementApi.ts +6 -3
- package/apis/SocialBindApi.ts +152 -0
- package/apis/index.ts +1 -0
- package/deploy.log +20 -9
- package/dist/apis/NotificationManagementApi.d.ts +3 -3
- package/dist/apis/NotificationManagementApi.js +2 -2
- package/dist/apis/SocialBindApi.d.ts +41 -0
- package/dist/apis/SocialBindApi.js +97 -0
- package/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +1 -0
- package/dist/models/ApiBindDiscordGet200Response.d.ts +51 -0
- package/dist/models/ApiBindDiscordGet200Response.js +54 -0
- package/dist/models/ApiBindDiscordGet200ResponseResponseObject.d.ts +62 -0
- package/dist/models/ApiBindDiscordGet200ResponseResponseObject.js +64 -0
- package/dist/models/ApiBindDiscordPreconnectGet200Response.d.ts +51 -0
- package/dist/models/ApiBindDiscordPreconnectGet200Response.js +54 -0
- package/dist/models/ApiBindDiscordPreconnectGet200ResponseResponseObject.d.ts +32 -0
- package/dist/models/ApiBindDiscordPreconnectGet200ResponseResponseObject.js +43 -0
- package/dist/models/index.d.ts +4 -0
- package/dist/models/index.js +4 -0
- package/models/ApiBindDiscordGet200Response.ts +100 -0
- package/models/ApiBindDiscordGet200ResponseResponseObject.ts +106 -0
- package/models/ApiBindDiscordPreconnectGet200Response.ts +100 -0
- package/models/ApiBindDiscordPreconnectGet200ResponseResponseObject.ts +66 -0
- package/models/index.ts +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* DRX API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface ApiBindDiscordPreconnectGet200ResponseResponseObject
|
|
20
|
+
*/
|
|
21
|
+
export interface ApiBindDiscordPreconnectGet200ResponseResponseObject {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof ApiBindDiscordPreconnectGet200ResponseResponseObject
|
|
26
|
+
*/
|
|
27
|
+
url: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Check if a given object implements the ApiBindDiscordPreconnectGet200ResponseResponseObject interface.
|
|
32
|
+
*/
|
|
33
|
+
export function instanceOfApiBindDiscordPreconnectGet200ResponseResponseObject(value: object): value is ApiBindDiscordPreconnectGet200ResponseResponseObject {
|
|
34
|
+
if (!('url' in value) || value['url'] === undefined) return false;
|
|
35
|
+
return true;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export function ApiBindDiscordPreconnectGet200ResponseResponseObjectFromJSON(json: any): ApiBindDiscordPreconnectGet200ResponseResponseObject {
|
|
39
|
+
return ApiBindDiscordPreconnectGet200ResponseResponseObjectFromJSONTyped(json, false);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export function ApiBindDiscordPreconnectGet200ResponseResponseObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiBindDiscordPreconnectGet200ResponseResponseObject {
|
|
43
|
+
if (json == null) {
|
|
44
|
+
return json;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
|
|
48
|
+
'url': json['url'],
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export function ApiBindDiscordPreconnectGet200ResponseResponseObjectToJSON(json: any): ApiBindDiscordPreconnectGet200ResponseResponseObject {
|
|
53
|
+
return ApiBindDiscordPreconnectGet200ResponseResponseObjectToJSONTyped(json, false);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export function ApiBindDiscordPreconnectGet200ResponseResponseObjectToJSONTyped(value?: ApiBindDiscordPreconnectGet200ResponseResponseObject | null, ignoreDiscriminator: boolean = false): any {
|
|
57
|
+
if (value == null) {
|
|
58
|
+
return value;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
return {
|
|
62
|
+
|
|
63
|
+
'url': value['url'],
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
|
package/models/index.ts
CHANGED
|
@@ -36,6 +36,10 @@ export * from './ApiAuthRegisterVerifyOtpPostRequest';
|
|
|
36
36
|
export * from './ApiAuthSocialMobilePost200Response';
|
|
37
37
|
export * from './ApiAuthSocialMobilePost200ResponseResponseObject';
|
|
38
38
|
export * from './ApiAuthSocialMobilePostRequest';
|
|
39
|
+
export * from './ApiBindDiscordGet200Response';
|
|
40
|
+
export * from './ApiBindDiscordGet200ResponseResponseObject';
|
|
41
|
+
export * from './ApiBindDiscordPreconnectGet200Response';
|
|
42
|
+
export * from './ApiBindDiscordPreconnectGet200ResponseResponseObject';
|
|
39
43
|
export * from './ApiCategoryGet200Response';
|
|
40
44
|
export * from './ApiCategoryGet200ResponseResponseObjectInner';
|
|
41
45
|
export * from './ApiCategoryPut200Response';
|