@drxsuperapp/sdk 1.1.488 → 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,25 +880,20 @@
|
|
|
880
880
|
# https://opencollective.com/openapi_generator/donate #
|
|
881
881
|
################################################################################
|
|
882
882
|
✅ SDK generated
|
|
883
|
-
[master
|
|
884
|
-
1 file changed,
|
|
883
|
+
[master 780bcbf] VPS: Generated API SDK
|
|
884
|
+
1 file changed, 10 insertions(+), 3 deletions(-)
|
|
885
885
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
886
|
-
|
|
886
|
+
adb3ce6..780bcbf master -> master
|
|
887
887
|
✅ Changes committed and pushed
|
|
888
|
-
v1.1.
|
|
889
|
-
npm notice
|
|
890
|
-
npm notice New major version of npm available! 10.9.2 -> 11.6.2
|
|
891
|
-
npm notice Changelog: https://github.com/npm/cli/releases/tag/v11.6.2
|
|
892
|
-
npm notice To update run: npm install -g npm@11.6.2
|
|
893
|
-
npm notice
|
|
888
|
+
v1.1.489
|
|
894
889
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
895
|
-
|
|
890
|
+
780bcbf..89388d1 master -> master
|
|
896
891
|
✅ Version bumped
|
|
897
892
|
|
|
898
|
-
> @drxsuperapp/sdk@1.1.
|
|
893
|
+
> @drxsuperapp/sdk@1.1.489 prepublishOnly
|
|
899
894
|
> npm run build
|
|
900
895
|
|
|
901
896
|
|
|
902
|
-
> @drxsuperapp/sdk@1.1.
|
|
897
|
+
> @drxsuperapp/sdk@1.1.489 build
|
|
903
898
|
> tsc
|
|
904
899
|
|
|
@@ -32,7 +32,13 @@ 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;
|
|
36
42
|
/**
|
|
37
43
|
*
|
|
38
44
|
* @type {string}
|
|
@@ -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,8 @@ 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'],
|
|
37
36
|
'imageUrl': json['imageUrl'] == null ? undefined : json['imageUrl'],
|
|
38
37
|
};
|
|
39
38
|
}
|
|
@@ -48,6 +47,7 @@ export function ApiAdminNotificationBroadcastPostRequestToJSONTyped(value, ignor
|
|
|
48
47
|
'title': value['title'],
|
|
49
48
|
'body': value['body'],
|
|
50
49
|
'clickAction': value['clickAction'],
|
|
50
|
+
'deepLink': value['deepLink'],
|
|
51
51
|
'imageUrl': value['imageUrl'],
|
|
52
52
|
};
|
|
53
53
|
}
|
|
@@ -36,7 +36,13 @@ 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;
|
|
40
46
|
/**
|
|
41
47
|
*
|
|
42
48
|
* @type {string}
|
|
@@ -51,7 +57,6 @@ export interface ApiAdminNotificationBroadcastPostRequest {
|
|
|
51
57
|
export function instanceOfApiAdminNotificationBroadcastPostRequest(value: object): value is ApiAdminNotificationBroadcastPostRequest {
|
|
52
58
|
if (!('title' in value) || value['title'] === undefined) return false;
|
|
53
59
|
if (!('body' in value) || value['body'] === undefined) return false;
|
|
54
|
-
if (!('clickAction' in value) || value['clickAction'] === undefined) return false;
|
|
55
60
|
return true;
|
|
56
61
|
}
|
|
57
62
|
|
|
@@ -67,7 +72,8 @@ export function ApiAdminNotificationBroadcastPostRequestFromJSONTyped(json: any,
|
|
|
67
72
|
|
|
68
73
|
'title': json['title'],
|
|
69
74
|
'body': json['body'],
|
|
70
|
-
'clickAction': json['clickAction'],
|
|
75
|
+
'clickAction': json['clickAction'] == null ? undefined : json['clickAction'],
|
|
76
|
+
'deepLink': json['deepLink'] == null ? undefined : json['deepLink'],
|
|
71
77
|
'imageUrl': json['imageUrl'] == null ? undefined : json['imageUrl'],
|
|
72
78
|
};
|
|
73
79
|
}
|
|
@@ -86,6 +92,7 @@ export function ApiAdminNotificationBroadcastPostRequestToJSONTyped(value?: ApiA
|
|
|
86
92
|
'title': value['title'],
|
|
87
93
|
'body': value['body'],
|
|
88
94
|
'clickAction': value['clickAction'],
|
|
95
|
+
'deepLink': value['deepLink'],
|
|
89
96
|
'imageUrl': value['imageUrl'],
|
|
90
97
|
};
|
|
91
98
|
}
|