@drxsuperapp/sdk 1.1.379 → 1.1.380
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
|
@@ -755,21 +755,20 @@
|
|
|
755
755
|
# https://opencollective.com/openapi_generator/donate #
|
|
756
756
|
################################################################################
|
|
757
757
|
✅ SDK generated
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
Everything up-to-date
|
|
758
|
+
[master f5b1ea5] VPS: Generated API SDK
|
|
759
|
+
1 file changed, 2 insertions(+), 3 deletions(-)
|
|
760
|
+
To https://gitlab.com/drx-super/drx-sdk.git
|
|
761
|
+
3f5321d..f5b1ea5 master -> master
|
|
763
762
|
✅ Changes committed and pushed
|
|
764
|
-
v1.1.
|
|
763
|
+
v1.1.380
|
|
765
764
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
766
|
-
|
|
765
|
+
f5b1ea5..c22b8ee master -> master
|
|
767
766
|
✅ Version bumped
|
|
768
767
|
|
|
769
|
-
> @drxsuperapp/sdk@1.1.
|
|
768
|
+
> @drxsuperapp/sdk@1.1.380 prepublishOnly
|
|
770
769
|
> npm run build
|
|
771
770
|
|
|
772
771
|
|
|
773
|
-
> @drxsuperapp/sdk@1.1.
|
|
772
|
+
> @drxsuperapp/sdk@1.1.380 build
|
|
774
773
|
> tsc
|
|
775
774
|
|
|
@@ -20,8 +20,6 @@ export function instanceOfApiFeaturePutRequest(value) {
|
|
|
20
20
|
return false;
|
|
21
21
|
if (!('label' in value) || value['label'] === undefined)
|
|
22
22
|
return false;
|
|
23
|
-
if (!('sequence' in value) || value['sequence'] === undefined)
|
|
24
|
-
return false;
|
|
25
23
|
return true;
|
|
26
24
|
}
|
|
27
25
|
export function ApiFeaturePutRequestFromJSON(json) {
|
|
@@ -37,7 +35,7 @@ export function ApiFeaturePutRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
37
35
|
'label': json['label'],
|
|
38
36
|
'url': json['url'] == null ? undefined : json['url'],
|
|
39
37
|
'requireLogin': json['requireLogin'] == null ? undefined : json['requireLogin'],
|
|
40
|
-
'sequence': json['sequence'],
|
|
38
|
+
'sequence': json['sequence'] == null ? undefined : json['sequence'],
|
|
41
39
|
'Navigate': json['Navigate'] == null ? undefined : ApiFeaturePutRequestNavigateFromJSON(json['Navigate']),
|
|
42
40
|
};
|
|
43
41
|
}
|
|
@@ -62,7 +62,7 @@ export interface ApiFeaturePutRequest {
|
|
|
62
62
|
* @type {number}
|
|
63
63
|
* @memberof ApiFeaturePutRequest
|
|
64
64
|
*/
|
|
65
|
-
sequence
|
|
65
|
+
sequence?: number | null;
|
|
66
66
|
/**
|
|
67
67
|
*
|
|
68
68
|
* @type {ApiFeaturePutRequestNavigate}
|
|
@@ -77,7 +77,6 @@ export interface ApiFeaturePutRequest {
|
|
|
77
77
|
export function instanceOfApiFeaturePutRequest(value: object): value is ApiFeaturePutRequest {
|
|
78
78
|
if (!('image_url' in value) || value['image_url'] === undefined) return false;
|
|
79
79
|
if (!('label' in value) || value['label'] === undefined) return false;
|
|
80
|
-
if (!('sequence' in value) || value['sequence'] === undefined) return false;
|
|
81
80
|
return true;
|
|
82
81
|
}
|
|
83
82
|
|
|
@@ -96,7 +95,7 @@ export function ApiFeaturePutRequestFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
96
95
|
'label': json['label'],
|
|
97
96
|
'url': json['url'] == null ? undefined : json['url'],
|
|
98
97
|
'requireLogin': json['requireLogin'] == null ? undefined : json['requireLogin'],
|
|
99
|
-
'sequence': json['sequence'],
|
|
98
|
+
'sequence': json['sequence'] == null ? undefined : json['sequence'],
|
|
100
99
|
'Navigate': json['Navigate'] == null ? undefined : ApiFeaturePutRequestNavigateFromJSON(json['Navigate']),
|
|
101
100
|
};
|
|
102
101
|
}
|