@drxsuperapp/sdk 1.1.488 → 1.1.490
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,21 @@
|
|
|
880
880
|
# https://opencollective.com/openapi_generator/donate #
|
|
881
881
|
################################################################################
|
|
882
882
|
✅ SDK generated
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
883
|
+
On branch master
|
|
884
|
+
Your branch is up to date with 'origin/master'.
|
|
885
|
+
|
|
886
|
+
nothing to commit, working tree clean
|
|
887
|
+
Everything up-to-date
|
|
887
888
|
✅ 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
|
|
889
|
+
v1.1.490
|
|
894
890
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
895
|
-
|
|
891
|
+
89388d1..6f5ea9e master -> master
|
|
896
892
|
✅ Version bumped
|
|
897
893
|
|
|
898
|
-
> @drxsuperapp/sdk@1.1.
|
|
894
|
+
> @drxsuperapp/sdk@1.1.490 prepublishOnly
|
|
899
895
|
> npm run build
|
|
900
896
|
|
|
901
897
|
|
|
902
|
-
> @drxsuperapp/sdk@1.1.
|
|
898
|
+
> @drxsuperapp/sdk@1.1.490 build
|
|
903
899
|
> tsc
|
|
904
900
|
|
|
@@ -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
|
}
|