@flarehr/apollo-super-selection 3.70.830 → 3.72.1298

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.
@@ -264,7 +264,7 @@ class TapSubscriber extends datoramaAkita.Subscriber {
264
264
  }
265
265
  }
266
266
 
267
- const AppVersion = '3.70.830';
267
+ const AppVersion = '3.72.1298';
268
268
 
269
269
  // -------------------------------------------------------------------------------------
270
270
  // guards
@@ -4250,20 +4250,8 @@ const existingFundService = new ExistingFundService();
4250
4250
 
4251
4251
  class FeatureFlagService {
4252
4252
  static isNewComplianceEnabled() {
4253
- const whitelistedPartners = [
4254
- 'APOLLO-PARTNER-DEV',
4255
- 'APOLLO-PARTNER-TEST',
4256
- 'PARTNER-TEST-FLARE',
4257
- '962e142f-df98-460e-92ed-2c4e24149c91',
4258
- '8ad88c67-d446-4c30-8321-f896e1b7643b',
4259
- 'd1bfe1c5-0cf4-46e3-9ecb-69a0aec86256',
4260
- '973c7953-a607-48b6-9bf9-9266ffd9c25c',
4261
- 'cf602138-c843-4c4a-a407-635ba0bf9612',
4262
- '4257a264-863e-4e03-8b07-b9c0328c0557',
4263
- 'df9b837f-7f38-41ff-9073-9265106eb231',
4264
- 'd6855e49-0412-4600-9b66-c61f0dfc25df' // PageUp (Sandbox)
4265
- ];
4266
- return whitelistedPartners.includes(superSelectionAppService.partnerIdOrDefault);
4253
+ const blackListedPartners = ['123'];
4254
+ return !blackListedPartners.includes(superSelectionAppService.partnerIdOrDefault);
4267
4255
  }
4268
4256
  }
4269
4257
 
@@ -1,19 +1,7 @@
1
1
  import superSelectionAppService from '../services/super-selection-app.service';
2
2
  export class FeatureFlagService {
3
3
  static isNewComplianceEnabled() {
4
- const whitelistedPartners = [
5
- 'APOLLO-PARTNER-DEV',
6
- 'APOLLO-PARTNER-TEST',
7
- 'PARTNER-TEST-FLARE',
8
- '962e142f-df98-460e-92ed-2c4e24149c91',
9
- '8ad88c67-d446-4c30-8321-f896e1b7643b',
10
- 'd1bfe1c5-0cf4-46e3-9ecb-69a0aec86256',
11
- '973c7953-a607-48b6-9bf9-9266ffd9c25c',
12
- 'cf602138-c843-4c4a-a407-635ba0bf9612',
13
- '4257a264-863e-4e03-8b07-b9c0328c0557',
14
- 'df9b837f-7f38-41ff-9073-9265106eb231',
15
- 'd6855e49-0412-4600-9b66-c61f0dfc25df' // PageUp (Sandbox)
16
- ];
17
- return whitelistedPartners.includes(superSelectionAppService.partnerIdOrDefault);
4
+ const blackListedPartners = ['123'];
5
+ return !blackListedPartners.includes(superSelectionAppService.partnerIdOrDefault);
18
6
  }
19
7
  }
@@ -260,7 +260,7 @@ class TapSubscriber extends Subscriber {
260
260
  }
261
261
  }
262
262
 
263
- const AppVersion = '3.70.830';
263
+ const AppVersion = '3.72.1298';
264
264
 
265
265
  // -------------------------------------------------------------------------------------
266
266
  // guards
@@ -4246,20 +4246,8 @@ const existingFundService = new ExistingFundService();
4246
4246
 
4247
4247
  class FeatureFlagService {
4248
4248
  static isNewComplianceEnabled() {
4249
- const whitelistedPartners = [
4250
- 'APOLLO-PARTNER-DEV',
4251
- 'APOLLO-PARTNER-TEST',
4252
- 'PARTNER-TEST-FLARE',
4253
- '962e142f-df98-460e-92ed-2c4e24149c91',
4254
- '8ad88c67-d446-4c30-8321-f896e1b7643b',
4255
- 'd1bfe1c5-0cf4-46e3-9ecb-69a0aec86256',
4256
- '973c7953-a607-48b6-9bf9-9266ffd9c25c',
4257
- 'cf602138-c843-4c4a-a407-635ba0bf9612',
4258
- '4257a264-863e-4e03-8b07-b9c0328c0557',
4259
- 'df9b837f-7f38-41ff-9073-9265106eb231',
4260
- 'd6855e49-0412-4600-9b66-c61f0dfc25df' // PageUp (Sandbox)
4261
- ];
4262
- return whitelistedPartners.includes(superSelectionAppService.partnerIdOrDefault);
4249
+ const blackListedPartners = ['123'];
4250
+ return !blackListedPartners.includes(superSelectionAppService.partnerIdOrDefault);
4263
4251
  }
4264
4252
  }
4265
4253