@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.
- package/bundles/sumaris-net.ngx-components.umd.js +3 -1
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +2 -2
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/public_api.js +2 -1
- package/esm2015/src/app/core/graphql/graphql.service.js +2 -2
- package/esm2015/src/app/core/services/errors.js +1 -1
- package/fesm2015/sumaris-net.ngx-components.js +2 -2
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/public_api.d.ts +1 -0
- package/src/app/core/services/errors.d.ts +1 -1
- package/sumaris-net.ngx-components.metadata.json +1 -1
|
@@ -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 =
|
|
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;
|