@convep_mobilogy/react-native-qms-plugin 0.12.0 → 0.12.2

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.
@@ -254,7 +254,7 @@ static NSString * const kQmsRoutePayloadNotification = @"QmsRoutePayloadNotifica
254
254
  dispatch_once(&onceToken, ^{
255
255
  types = [NSSet setWithArray:@[
256
256
  @"new_issue", @"new_info", @"accept_issue", @"reject_issue", @"decline_issue",
257
- @"start_fix", [LanguageConfig localizedStringForKey:@"REDO"], @"completed", @"close_internal", @"close_external",
257
+ @"start_fix", @"redo", @"completed", @"close_internal", @"close_external",
258
258
  @"pending_owner_acceptance", @"assign_issue", @"reassign_issue", @"poa_reminder",
259
259
  @"auto_close_reminder", @"pending_access_reminder", @"overdue_reminder",
260
260
  @"issue_summary_reminder", @"lodge_summary_reminder", @"overdue_summary_reminder"
@@ -14,7 +14,7 @@ RCT_EXPORT_MODULE()
14
14
  NSLog(@"[QmsPlugin] Native module initialized");
15
15
  NSLog(@"QmsPlugin loaded");
16
16
  BOOL responds = [QmsPlugin instancesRespondToSelector:@selector(showPluginUI:reject:)];
17
- NSLog(@"QmsPlugin responds to showPluginUI:reject:? %@", responds ? [LanguageConfig localizedStringForKey:@"YES"] : [LanguageConfig localizedStringForKey:@"NO"]);
17
+ NSLog(@"QmsPlugin responds to showPluginUI:reject:? %@", responds ? @"YES" : @"NO");
18
18
  if (![QmsPlugin conformsToProtocol:@protocol(NativeQmsPluginSpec)]) {
19
19
  NSLog(@"❌ QmsPlugin does NOT conform to NativeQmsPluginSpec");
20
20
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@convep_mobilogy/react-native-qms-plugin",
3
- "version": "0.12.0",
3
+ "version": "0.12.2",
4
4
  "description": "To handle defect managment",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",