@drxsuperapp/sdk 1.1.487 → 1.1.488

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,25 @@
880
880
  # https://opencollective.com/openapi_generator/donate #
881
881
  ################################################################################
882
882
  ✅ SDK generated
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
883
+ [master 0fbad5b] VPS: Generated API SDK
884
+ 1 file changed, 8 insertions(+)
885
+ To https://gitlab.com/drx-super/drx-sdk.git
886
+ ce4ac21..0fbad5b master -> master
888
887
  ✅ Changes committed and pushed
889
- v1.1.487
888
+ v1.1.488
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
890
894
  To https://gitlab.com/drx-super/drx-sdk.git
891
- 597a4e0..ce4ac21 master -> master
895
+ 0fbad5b..adb3ce6 master -> master
892
896
  ✅ Version bumped
893
897
 
894
- > @drxsuperapp/sdk@1.1.487 prepublishOnly
898
+ > @drxsuperapp/sdk@1.1.488 prepublishOnly
895
899
  > npm run build
896
900
 
897
901
 
898
- > @drxsuperapp/sdk@1.1.487 build
902
+ > @drxsuperapp/sdk@1.1.488 build
899
903
  > tsc
900
904
 
@@ -33,6 +33,12 @@ export interface ApiAdminNotificationBroadcastPostRequest {
33
33
  * @memberof ApiAdminNotificationBroadcastPostRequest
34
34
  */
35
35
  clickAction: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof ApiAdminNotificationBroadcastPostRequest
40
+ */
41
+ imageUrl?: string;
36
42
  }
37
43
  /**
38
44
  * Check if a given object implements the ApiAdminNotificationBroadcastPostRequest interface.
@@ -34,6 +34,7 @@ export function ApiAdminNotificationBroadcastPostRequestFromJSONTyped(json, igno
34
34
  'title': json['title'],
35
35
  'body': json['body'],
36
36
  'clickAction': json['clickAction'],
37
+ 'imageUrl': json['imageUrl'] == null ? undefined : json['imageUrl'],
37
38
  };
38
39
  }
39
40
  export function ApiAdminNotificationBroadcastPostRequestToJSON(json) {
@@ -47,5 +48,6 @@ export function ApiAdminNotificationBroadcastPostRequestToJSONTyped(value, ignor
47
48
  'title': value['title'],
48
49
  'body': value['body'],
49
50
  'clickAction': value['clickAction'],
51
+ 'imageUrl': value['imageUrl'],
50
52
  };
51
53
  }
@@ -37,6 +37,12 @@ export interface ApiAdminNotificationBroadcastPostRequest {
37
37
  * @memberof ApiAdminNotificationBroadcastPostRequest
38
38
  */
39
39
  clickAction: string;
40
+ /**
41
+ *
42
+ * @type {string}
43
+ * @memberof ApiAdminNotificationBroadcastPostRequest
44
+ */
45
+ imageUrl?: string;
40
46
  }
41
47
 
42
48
  /**
@@ -62,6 +68,7 @@ export function ApiAdminNotificationBroadcastPostRequestFromJSONTyped(json: any,
62
68
  'title': json['title'],
63
69
  'body': json['body'],
64
70
  'clickAction': json['clickAction'],
71
+ 'imageUrl': json['imageUrl'] == null ? undefined : json['imageUrl'],
65
72
  };
66
73
  }
67
74
 
@@ -79,6 +86,7 @@ export function ApiAdminNotificationBroadcastPostRequestToJSONTyped(value?: ApiA
79
86
  'title': value['title'],
80
87
  'body': value['body'],
81
88
  'clickAction': value['clickAction'],
89
+ 'imageUrl': value['imageUrl'],
82
90
  };
83
91
  }
84
92
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drxsuperapp/sdk",
3
- "version": "1.1.487",
3
+ "version": "1.1.488",
4
4
  "main": "index.ts",
5
5
  "types": "index.ts",
6
6
  "scripts": {