@drxsuperapp/sdk 1.1.200 → 1.1.201
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/deploy.log
CHANGED
|
@@ -383,24 +383,20 @@
|
|
|
383
383
|
# https://opencollective.com/openapi_generator/donate #
|
|
384
384
|
################################################################################
|
|
385
385
|
✅ SDK generated
|
|
386
|
-
[master
|
|
387
|
-
|
|
388
|
-
create mode 100644 models/ApiAuthGoogleCallbackPost200Response.ts
|
|
389
|
-
create mode 100644 models/ApiAuthGoogleCallbackPost200ResponseResponseObject.ts
|
|
390
|
-
create mode 100644 models/ApiAuthGoogleCallbackPostRequest.ts
|
|
391
|
-
create mode 100644 models/ApiAuthGoogleMobilePostRequest.ts
|
|
386
|
+
[master 63f03a6] VPS: Generated API SDK
|
|
387
|
+
1 file changed, 9 deletions(-)
|
|
392
388
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
393
|
-
|
|
389
|
+
a6b2f32..63f03a6 master -> master
|
|
394
390
|
✅ Changes committed and pushed
|
|
395
|
-
v1.1.
|
|
391
|
+
v1.1.201
|
|
396
392
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
397
|
-
|
|
393
|
+
63f03a6..219256b master -> master
|
|
398
394
|
✅ Version bumped
|
|
399
395
|
|
|
400
|
-
> @drxsuperapp/sdk@1.1.
|
|
396
|
+
> @drxsuperapp/sdk@1.1.201 prepublishOnly
|
|
401
397
|
> npm run build
|
|
402
398
|
|
|
403
399
|
|
|
404
|
-
> @drxsuperapp/sdk@1.1.
|
|
400
|
+
> @drxsuperapp/sdk@1.1.201 build
|
|
405
401
|
> tsc
|
|
406
402
|
|
|
@@ -21,12 +21,6 @@ export interface ApiAuthGoogleMobilePostRequest {
|
|
|
21
21
|
* @memberof ApiAuthGoogleMobilePostRequest
|
|
22
22
|
*/
|
|
23
23
|
idToken: string;
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof ApiAuthGoogleMobilePostRequest
|
|
28
|
-
*/
|
|
29
|
-
clientId: string;
|
|
30
24
|
}
|
|
31
25
|
/**
|
|
32
26
|
* Check if a given object implements the ApiAuthGoogleMobilePostRequest interface.
|
|
@@ -17,8 +17,6 @@
|
|
|
17
17
|
export function instanceOfApiAuthGoogleMobilePostRequest(value) {
|
|
18
18
|
if (!('idToken' in value) || value['idToken'] === undefined)
|
|
19
19
|
return false;
|
|
20
|
-
if (!('clientId' in value) || value['clientId'] === undefined)
|
|
21
|
-
return false;
|
|
22
20
|
return true;
|
|
23
21
|
}
|
|
24
22
|
export function ApiAuthGoogleMobilePostRequestFromJSON(json) {
|
|
@@ -30,7 +28,6 @@ export function ApiAuthGoogleMobilePostRequestFromJSONTyped(json, ignoreDiscrimi
|
|
|
30
28
|
}
|
|
31
29
|
return {
|
|
32
30
|
'idToken': json['idToken'],
|
|
33
|
-
'clientId': json['clientId'],
|
|
34
31
|
};
|
|
35
32
|
}
|
|
36
33
|
export function ApiAuthGoogleMobilePostRequestToJSON(json) {
|
|
@@ -42,6 +39,5 @@ export function ApiAuthGoogleMobilePostRequestToJSONTyped(value, ignoreDiscrimin
|
|
|
42
39
|
}
|
|
43
40
|
return {
|
|
44
41
|
'idToken': value['idToken'],
|
|
45
|
-
'clientId': value['clientId'],
|
|
46
42
|
};
|
|
47
43
|
}
|
|
@@ -25,12 +25,6 @@ export interface ApiAuthGoogleMobilePostRequest {
|
|
|
25
25
|
* @memberof ApiAuthGoogleMobilePostRequest
|
|
26
26
|
*/
|
|
27
27
|
idToken: string;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {string}
|
|
31
|
-
* @memberof ApiAuthGoogleMobilePostRequest
|
|
32
|
-
*/
|
|
33
|
-
clientId: string;
|
|
34
28
|
}
|
|
35
29
|
|
|
36
30
|
/**
|
|
@@ -38,7 +32,6 @@ export interface ApiAuthGoogleMobilePostRequest {
|
|
|
38
32
|
*/
|
|
39
33
|
export function instanceOfApiAuthGoogleMobilePostRequest(value: object): value is ApiAuthGoogleMobilePostRequest {
|
|
40
34
|
if (!('idToken' in value) || value['idToken'] === undefined) return false;
|
|
41
|
-
if (!('clientId' in value) || value['clientId'] === undefined) return false;
|
|
42
35
|
return true;
|
|
43
36
|
}
|
|
44
37
|
|
|
@@ -53,7 +46,6 @@ export function ApiAuthGoogleMobilePostRequestFromJSONTyped(json: any, ignoreDis
|
|
|
53
46
|
return {
|
|
54
47
|
|
|
55
48
|
'idToken': json['idToken'],
|
|
56
|
-
'clientId': json['clientId'],
|
|
57
49
|
};
|
|
58
50
|
}
|
|
59
51
|
|
|
@@ -69,7 +61,6 @@ export function ApiAuthGoogleMobilePostRequestToJSONTyped(value?: ApiAuthGoogleM
|
|
|
69
61
|
return {
|
|
70
62
|
|
|
71
63
|
'idToken': value['idToken'],
|
|
72
|
-
'clientId': value['clientId'],
|
|
73
64
|
};
|
|
74
65
|
}
|
|
75
66
|
|