@drxsuperapp/sdk 1.1.487 → 1.1.489
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
|
@@ -880,21 +880,20 @@
|
|
|
880
880
|
# https://opencollective.com/openapi_generator/donate #
|
|
881
881
|
################################################################################
|
|
882
882
|
✅ SDK generated
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
Everything up-to-date
|
|
883
|
+
[master 780bcbf] VPS: Generated API SDK
|
|
884
|
+
1 file changed, 10 insertions(+), 3 deletions(-)
|
|
885
|
+
To https://gitlab.com/drx-super/drx-sdk.git
|
|
886
|
+
adb3ce6..780bcbf master -> master
|
|
888
887
|
✅ Changes committed and pushed
|
|
889
|
-
v1.1.
|
|
888
|
+
v1.1.489
|
|
890
889
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
891
|
-
|
|
890
|
+
780bcbf..89388d1 master -> master
|
|
892
891
|
✅ Version bumped
|
|
893
892
|
|
|
894
|
-
> @drxsuperapp/sdk@1.1.
|
|
893
|
+
> @drxsuperapp/sdk@1.1.489 prepublishOnly
|
|
895
894
|
> npm run build
|
|
896
895
|
|
|
897
896
|
|
|
898
|
-
> @drxsuperapp/sdk@1.1.
|
|
897
|
+
> @drxsuperapp/sdk@1.1.489 build
|
|
899
898
|
> tsc
|
|
900
899
|
|
|
@@ -32,7 +32,19 @@ export interface ApiAdminNotificationBroadcastPostRequest {
|
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof ApiAdminNotificationBroadcastPostRequest
|
|
34
34
|
*/
|
|
35
|
-
clickAction
|
|
35
|
+
clickAction?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ApiAdminNotificationBroadcastPostRequest
|
|
40
|
+
*/
|
|
41
|
+
deepLink?: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ApiAdminNotificationBroadcastPostRequest
|
|
46
|
+
*/
|
|
47
|
+
imageUrl?: string;
|
|
36
48
|
}
|
|
37
49
|
/**
|
|
38
50
|
* Check if a given object implements the ApiAdminNotificationBroadcastPostRequest interface.
|
|
@@ -19,8 +19,6 @@ export function instanceOfApiAdminNotificationBroadcastPostRequest(value) {
|
|
|
19
19
|
return false;
|
|
20
20
|
if (!('body' in value) || value['body'] === undefined)
|
|
21
21
|
return false;
|
|
22
|
-
if (!('clickAction' in value) || value['clickAction'] === undefined)
|
|
23
|
-
return false;
|
|
24
22
|
return true;
|
|
25
23
|
}
|
|
26
24
|
export function ApiAdminNotificationBroadcastPostRequestFromJSON(json) {
|
|
@@ -33,7 +31,9 @@ export function ApiAdminNotificationBroadcastPostRequestFromJSONTyped(json, igno
|
|
|
33
31
|
return {
|
|
34
32
|
'title': json['title'],
|
|
35
33
|
'body': json['body'],
|
|
36
|
-
'clickAction': json['clickAction'],
|
|
34
|
+
'clickAction': json['clickAction'] == null ? undefined : json['clickAction'],
|
|
35
|
+
'deepLink': json['deepLink'] == null ? undefined : json['deepLink'],
|
|
36
|
+
'imageUrl': json['imageUrl'] == null ? undefined : json['imageUrl'],
|
|
37
37
|
};
|
|
38
38
|
}
|
|
39
39
|
export function ApiAdminNotificationBroadcastPostRequestToJSON(json) {
|
|
@@ -47,5 +47,7 @@ export function ApiAdminNotificationBroadcastPostRequestToJSONTyped(value, ignor
|
|
|
47
47
|
'title': value['title'],
|
|
48
48
|
'body': value['body'],
|
|
49
49
|
'clickAction': value['clickAction'],
|
|
50
|
+
'deepLink': value['deepLink'],
|
|
51
|
+
'imageUrl': value['imageUrl'],
|
|
50
52
|
};
|
|
51
53
|
}
|
|
@@ -36,7 +36,19 @@ export interface ApiAdminNotificationBroadcastPostRequest {
|
|
|
36
36
|
* @type {string}
|
|
37
37
|
* @memberof ApiAdminNotificationBroadcastPostRequest
|
|
38
38
|
*/
|
|
39
|
-
clickAction
|
|
39
|
+
clickAction?: string;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof ApiAdminNotificationBroadcastPostRequest
|
|
44
|
+
*/
|
|
45
|
+
deepLink?: string;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof ApiAdminNotificationBroadcastPostRequest
|
|
50
|
+
*/
|
|
51
|
+
imageUrl?: string;
|
|
40
52
|
}
|
|
41
53
|
|
|
42
54
|
/**
|
|
@@ -45,7 +57,6 @@ export interface ApiAdminNotificationBroadcastPostRequest {
|
|
|
45
57
|
export function instanceOfApiAdminNotificationBroadcastPostRequest(value: object): value is ApiAdminNotificationBroadcastPostRequest {
|
|
46
58
|
if (!('title' in value) || value['title'] === undefined) return false;
|
|
47
59
|
if (!('body' in value) || value['body'] === undefined) return false;
|
|
48
|
-
if (!('clickAction' in value) || value['clickAction'] === undefined) return false;
|
|
49
60
|
return true;
|
|
50
61
|
}
|
|
51
62
|
|
|
@@ -61,7 +72,9 @@ export function ApiAdminNotificationBroadcastPostRequestFromJSONTyped(json: any,
|
|
|
61
72
|
|
|
62
73
|
'title': json['title'],
|
|
63
74
|
'body': json['body'],
|
|
64
|
-
'clickAction': json['clickAction'],
|
|
75
|
+
'clickAction': json['clickAction'] == null ? undefined : json['clickAction'],
|
|
76
|
+
'deepLink': json['deepLink'] == null ? undefined : json['deepLink'],
|
|
77
|
+
'imageUrl': json['imageUrl'] == null ? undefined : json['imageUrl'],
|
|
65
78
|
};
|
|
66
79
|
}
|
|
67
80
|
|
|
@@ -79,6 +92,8 @@ export function ApiAdminNotificationBroadcastPostRequestToJSONTyped(value?: ApiA
|
|
|
79
92
|
'title': value['title'],
|
|
80
93
|
'body': value['body'],
|
|
81
94
|
'clickAction': value['clickAction'],
|
|
95
|
+
'deepLink': value['deepLink'],
|
|
96
|
+
'imageUrl': value['imageUrl'],
|
|
82
97
|
};
|
|
83
98
|
}
|
|
84
99
|
|