@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.
@@ -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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drxsuperapp/sdk",
3
- "version": "1.1.491",
3
+ "version": "1.1.493",
4
4
  "main": "index.ts",
5
5
  "types": "index.ts",
6
6
  "scripts": {