@wrcb/cb-common 1.0.502 → 1.0.503

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.
@@ -4,4 +4,5 @@ export declare class RedisService {
4
4
  static ReturnDaysInSeconds(days: number): number;
5
5
  static emailVerificationKey(tenant: Tenant, email: string): string;
6
6
  static whatsappVerificationKey(tenant: Tenant, email: string): string;
7
+ static withdrawSettingsKey(tenant: Tenant): string;
7
8
  }
@@ -14,5 +14,8 @@ class RedisService {
14
14
  static whatsappVerificationKey(tenant, email) {
15
15
  return tenant + ':' + email + ':whatsapp:verification';
16
16
  }
17
+ static withdrawSettingsKey(tenant) {
18
+ return tenant + ':withdraw:settings';
19
+ }
17
20
  }
18
21
  exports.RedisService = RedisService;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wrcb/cb-common",
3
- "version": "1.0.502",
3
+ "version": "1.0.503",
4
4
  "description": "Common resources between services",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",