@sumaris-net/ngx-components 1.20.9 → 1.20.10

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.
@@ -15674,7 +15674,7 @@
15674
15674
  if (!peer)
15675
15675
  throw Error('[graphql] Missing peer. Unable to start graphql service');
15676
15676
  uri = peer.url + '/graphql';
15677
- wsUri = String.prototype.replace.call(uri, /^http(s)?:/, 'ws$1:') + '/websocket';
15677
+ wsUri = uri.replace(/^http(s)?:/, 'ws$1:') + '/websocket';
15678
15678
  console.info('[graphql] Base uri: ' + uri);
15679
15679
  console.info('[graphql] Subscription uri: ' + wsUri);
15680
15680
  this.httpParams = this.httpParams || {};
@@ -32470,6 +32470,7 @@
32470
32470
  exports.EntityStore = EntityStore;
32471
32471
  exports.EntityUtils = EntityUtils;
32472
32472
  exports.Environment = Environment;
32473
+ exports.ErrorCodes = ErrorCodes;
32473
32474
  exports.EvenPipe = EvenPipe;
32474
32475
  exports.FileResponse = FileResponse;
32475
32476
  exports.FileService = FileService;
@@ -32576,6 +32577,7 @@
32576
32577
  exports.SHARED_TESTING_PAGES = SHARED_TESTING_PAGES;
32577
32578
  exports.SPACE_PLACEHOLDER_CHAR = SPACE_PLACEHOLDER_CHAR;
32578
32579
  exports.SelectPeerModal = SelectPeerModal;
32580
+ exports.ServerErrorCodes = ServerErrorCodes;
32579
32581
  exports.SettingsPage = SettingsPage;
32580
32582
  exports.SharedAsyncValidators = SharedAsyncValidators;
32581
32583
  exports.SharedDirectivesModule = SharedDirectivesModule;