@eso-status/forum-message 2.0.0-dev.14 → 2.0.0-dev.15

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/lib/connector.js CHANGED
@@ -81,6 +81,8 @@ class Connector {
81
81
  initialRaw = initialRaw.replace(/\n/g, '');
82
82
  initialRaw = initialRaw.replace(/<br\/>\n/g, '<br>');
83
83
  initialRaw = initialRaw.replace(' Thank you for your patience.', '');
84
+ initialRaw = initialRaw.replace(' We will update as new information becomes available.', '');
85
+ initialRaw = initialRaw.replace(' If you continue to experience difficulties at login, please restart your client. Thank you for your patience!', '');
84
86
  if (initialRaw.endsWith(' ')) {
85
87
  initialRaw = initialRaw.substring(0, initialRaw.length - 1);
86
88
  }
@@ -46,6 +46,7 @@ class SlugIdentifier {
46
46
  'PC/Mac: NA and EU megaservers for',
47
47
  '] NA megaservers for',
48
48
  '• NA megaservers for',
49
+ 'North American PC/Mac megaserver',
49
50
  ];
50
51
  /**
51
52
  * List of indicators proving that the announcement pertains to the slug server_pc_pts
@@ -52,6 +52,7 @@ class StatusIdentifier {
52
52
  */
53
53
  this.issuesMatchesList = [
54
54
  'is currently experiencing a service interruption',
55
+ 'currently investigating connection issues',
55
56
  ];
56
57
  this.statusList.forEach((status) => this.identify(status));
57
58
  this.default();
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Different statuses of announcements indicating that the announcement refers to a service/server that is not functioning properly
3
3
  */
4
- export type RemoteIssuesRawStatus = 'is currently experiencing a service interruption';
4
+ export type RemoteIssuesRawStatus = 'is currently experiencing a service interruption' | 'currently investigating connection issues';
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Different slugs of announcements concerning the North American PC/Mac Megaserver
3
3
  */
4
- export type RemoteServerPcNaRawSlug = 'PC/Mac: NA megaserver for' | 'PC/Mac: NA and EU megaservers for' | '] NA megaservers for' | '• NA megaservers for';
4
+ export type RemoteServerPcNaRawSlug = 'PC/Mac: NA megaserver for' | 'PC/Mac: NA and EU megaservers for' | '] NA megaservers for' | '• NA megaservers for' | 'North American PC/Mac megaserver';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eso-status/forum-message",
3
- "version": "2.0.0-dev.14",
3
+ "version": "2.0.0-dev.15",
4
4
  "description": "Library for retrieving and formatting data, available at https://forums.elderscrollsonline.com or https://forums.elderscrollsonline.com/en/categories/pts",
5
5
  "author": "@dov118 <contact@dov118.dev> (https://dov118.dev)",
6
6
  "main": "lib/index.js",