@gambulls-org/gambulls-apis 3.0.872 → 3.0.874

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.
@@ -22,10 +22,6 @@ exports.ApiAdminDepositBonusPutRequestDetailsInnerNotificationTemplatesActivatio
22
22
  * Check if a given object implements the ApiAdminDepositBonusPutRequestDetailsInnerNotificationTemplatesActivation interface.
23
23
  */
24
24
  function instanceOfApiAdminDepositBonusPutRequestDetailsInnerNotificationTemplatesActivation(value) {
25
- if (!('notificationTitle' in value) || value['notificationTitle'] === undefined)
26
- return false;
27
- if (!('notificationContent' in value) || value['notificationContent'] === undefined)
28
- return false;
29
25
  return true;
30
26
  }
31
27
  function ApiAdminDepositBonusPutRequestDetailsInnerNotificationTemplatesActivationFromJSON(json) {
@@ -38,8 +34,8 @@ function ApiAdminDepositBonusPutRequestDetailsInnerNotificationTemplatesActivati
38
34
  return {
39
35
  'isSendEmail': json['isSendEmail'] == null ? undefined : json['isSendEmail'],
40
36
  'isSendInApp': json['isSendInApp'] == null ? undefined : json['isSendInApp'],
41
- 'notificationTitle': json['notificationTitle'],
42
- 'notificationContent': json['notificationContent'],
37
+ 'notificationTitle': json['notificationTitle'] == null ? undefined : json['notificationTitle'],
38
+ 'notificationContent': json['notificationContent'] == null ? undefined : json['notificationContent'],
43
39
  'emailSubject': json['emailSubject'] == null ? undefined : json['emailSubject'],
44
40
  'emailContent': json['emailContent'] == null ? undefined : json['emailContent'],
45
41
  };
@@ -36,13 +36,13 @@ export interface ApiAdminDepositBonusPutRequestDetailsInnerNotificationTemplates
36
36
  * @type {string}
37
37
  * @memberof ApiAdminDepositBonusPutRequestDetailsInnerNotificationTemplatesActivation
38
38
  */
39
- notificationTitle: string;
39
+ notificationTitle?: string | null;
40
40
  /**
41
41
  *
42
42
  * @type {string}
43
43
  * @memberof ApiAdminDepositBonusPutRequestDetailsInnerNotificationTemplatesActivation
44
44
  */
45
- notificationContent: string;
45
+ notificationContent?: string | null;
46
46
  /**
47
47
  *
48
48
  * @type {string}
@@ -61,8 +61,6 @@ export interface ApiAdminDepositBonusPutRequestDetailsInnerNotificationTemplates
61
61
  * Check if a given object implements the ApiAdminDepositBonusPutRequestDetailsInnerNotificationTemplatesActivation interface.
62
62
  */
63
63
  export function instanceOfApiAdminDepositBonusPutRequestDetailsInnerNotificationTemplatesActivation(value: object): value is ApiAdminDepositBonusPutRequestDetailsInnerNotificationTemplatesActivation {
64
- if (!('notificationTitle' in value) || value['notificationTitle'] === undefined) return false;
65
- if (!('notificationContent' in value) || value['notificationContent'] === undefined) return false;
66
64
  return true;
67
65
  }
68
66
 
@@ -78,8 +76,8 @@ export function ApiAdminDepositBonusPutRequestDetailsInnerNotificationTemplatesA
78
76
 
79
77
  'isSendEmail': json['isSendEmail'] == null ? undefined : json['isSendEmail'],
80
78
  'isSendInApp': json['isSendInApp'] == null ? undefined : json['isSendInApp'],
81
- 'notificationTitle': json['notificationTitle'],
82
- 'notificationContent': json['notificationContent'],
79
+ 'notificationTitle': json['notificationTitle'] == null ? undefined : json['notificationTitle'],
80
+ 'notificationContent': json['notificationContent'] == null ? undefined : json['notificationContent'],
83
81
  'emailSubject': json['emailSubject'] == null ? undefined : json['emailSubject'],
84
82
  'emailContent': json['emailContent'] == null ? undefined : json['emailContent'],
85
83
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gambulls-org/gambulls-apis",
3
- "version": "3.0.872",
3
+ "version": "3.0.874",
4
4
  "main": "index.ts",
5
5
  "scripts": {
6
6
  "build": "tsc",