Skip to content

Commit

Permalink
fix: even more fixes for packages updates
Browse files Browse the repository at this point in the history
  • Loading branch information
evereq committed Dec 4, 2021
1 parent fc70b20 commit 1d90269
Show file tree
Hide file tree
Showing 8 changed files with 69 additions and 122 deletions.
2 changes: 1 addition & 1 deletion packages/admin-web-angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
"global": "^4.4.0",
"graphql": "^16.0.1",
"graphql-tag": "^2.12.6",
"subscriptions-transport-ws": "^0.11.0",
"highlight.js": "^11.2.0",
"intl": "^1.2.5",
"ionicons": "^5.5.3",
Expand Down Expand Up @@ -133,7 +134,6 @@
"socicon": "^3.0.5",
"socket.io-client": "^4.3.0",
"stripe": "^8.183.0",
"subscriptions-transport-ws": "^0.9.19",
"tinymce": "^5.10.0",
"tslib": "^2.3.1",
"typeface-exo": "^1.1.13",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Component, OnDestroy } from '@angular/core';
import User from '@modules/server.common/entities/User';
import { ActivatedRoute } from '@angular/router';
import { Subscription } from 'apollo-client/util/Observable';
import { Subscription } from 'rxjs';
import { UsersService } from '@app/@core/data/users.service';

@Component({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@ import {
Input,
ViewChild,
} from '@angular/core';
import { Subject } from 'rxjs';
import { Subject, Subscription } from 'rxjs';
import { takeUntil } from 'rxjs/operators';
import WarehouseProduct from '@modules/server.common/entities/WarehouseProduct';
import { WarehouseProductsRouter } from '@modules/client.common.angular2/routers/warehouse-products-router.service';
import { ProductLocalesService } from '@modules/client.common.angular2/locale/product-locales.service';
import { ILocaleMember } from '@modules/server.common/interfaces/ILocale';
import Warehouse from '@modules/server.common/entities/Warehouse';
import { WarehouseRouter } from '@modules/client.common.angular2/routers/warehouse-router.service';
import { Subscription } from 'apollo-client/util/Observable';
import { Router } from '@angular/router';
import { NotifyService } from '../../../../@core/services/notify/notify.service';
import { ConfirmationModalComponent } from '../../../../@shared/confirmation-modal/confirmation-modal.component';
Expand Down
42 changes: 21 additions & 21 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,21 @@
"dependencies": {
"@captemulation/get-parameter-names": "^1.4.2",
"@ever-platform/common": "^0.4.3",
"@graphql-tools/load-files": "^6.5.1",
"@graphql-tools/merge": "^8.1.2",
"@graphql-tools/schema": "^8.2.0",
"@nestjs/common": "^8.1.1",
"@nestjs/core": "^8.1.1",
"@graphql-tools/load-files": "^6.5.2",
"@graphql-tools/merge": "^8.2.1",
"@graphql-tools/schema": "^8.3.1",
"@nestjs/common": "^8.2.3",
"@nestjs/core": "^8.2.3",
"@nestjs/cqrs": "^8.0.0",
"@nestjs/graphql": "^9.0.6",
"@nestjs/microservices": "^8.1.1",
"@nestjs/graphql": "^9.1.2",
"@nestjs/microservices": "^8.2.3",
"@nestjs/passport": "^8.0.1",
"@nestjs/platform-express": "^8.1.1",
"@nestjs/platform-socket.io": "^8.1.1",
"@nestjs/swagger": "^5.1.0",
"@nestjs/platform-express": "^8.2.3",
"@nestjs/platform-socket.io": "^8.2.3",
"@nestjs/swagger": "^5.1.5",
"@nestjs/typeorm": "^8.0.2",
"@nestjs/websockets": "^8.1.1",
"apollo-server-express": "^3.4.0",
"@nestjs/websockets": "^8.2.3",
"apollo-server-express": "^3.5.0",
"axios": "^0.23.0",
"bcrypt": "5.0.1",
"bluebird": "^3.7.2",
Expand Down Expand Up @@ -84,6 +84,7 @@
"graphql-playground-middleware-express": "^1.7.23",
"graphql-subscriptions": "^2.0.0",
"graphql-tools": "^8.2.0",
"subscriptions-transport-ws": "^0.11.0",
"handlebars": "^4.7.7",
"image-size": "^1.0.0",
"install": "^0.13.0",
Expand All @@ -97,9 +98,9 @@
"mkdirp": "^1.0.4",
"module-alias": "^2.2.2",
"moment": "^2.29.1",
"mongodb": "^4.1.3",
"mongodb-memory-server": "^7.4.4",
"mongoose": "^6.0.11",
"mongodb": "^4.2.1",
"mongodb-memory-server": "^8.0.4",
"mongoose": "^6.0.14",
"morgan": "^1.10.0",
"ms": "^2.1.3",
"on-finished": "^2.3.0",
Expand All @@ -124,18 +125,17 @@
"socket.io-client": "^4.3.0",
"source-map-support": "^0.5.20",
"stripe": "^8.183.0",
"subscriptions-transport-ws": "^0.9.19",
"swagger-ui-express": "^4.1.6",
"swagger-ui-express": "^4.2.0",
"symbol": "^0.3.1",
"symbol-observable": "^4.0.0",
"typeorm": "^0.2.38",
"typeorm": "^0.2.41",
"typescript-collections": "^1.3.3",
"underscore": "^1.13.1",
"underscore.string": "^3.3.5",
"upath": "^2.0.1",
"uuid": "^8.3.2",
"validator": "^13.6.0",
"ws": "^8.2.3"
"ws": "^8.3.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
Expand All @@ -160,8 +160,8 @@
"@types/method-override": "^0.0.32",
"@types/mkdirp": "^1.0.2",
"@types/moment": "^2.13.0",
"@types/mongodb": "^4.0.6",
"@types/mongoose": "^5.11.96",
"@types/mongodb": "^4.0.7",
"@types/mongoose": "^5.11.97",
"@types/node": "16.11.0",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
Expand Down
15 changes: 9 additions & 6 deletions packages/core/src/graphql/subscriptions/subscriptions.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,16 @@ export class SubscriptionsService implements OnModuleDestroy {
options: ServerOptions = {},
socketOptions: WebSocket.ServerOptions = {}
) {

const o: ServerOptions = {
execute,
subscribe,
schema,
...options,
};

this.subscriptionServer = new SubscriptionServer(
{
execute,
subscribe,
schema,
...options,
},
o,
{
server: this.ws,
path: '/subscriptions',
Expand Down
2 changes: 1 addition & 1 deletion packages/merchant-tablet-ionic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
"fstream": "^1.0.12",
"graphql": "^16.0.1",
"graphql-tag": "^2.12.6",
"subscriptions-transport-ws": "^0.11.0",
"handlebars": "^4.7.7",
"imagesloaded": "^4.1.4",
"ionic-selectable": "^4.9.0",
Expand All @@ -154,7 +155,6 @@
"rxjs-compat": "^6.6.7",
"socket.io-client": "^4.3.0",
"stripe": "^8.183.0",
"subscriptions-transport-ws": "^0.9.19",
"sw-toolbox": "^3.6.0",
"symbol-observable": "^4.0.0",
"tslib": "^2.3.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/shop-mobile-ionic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@
"fstream": "^1.0.12",
"graphql": "^16.0.1",
"graphql-tag": "^2.12.6",
"subscriptions-transport-ws": "^0.11.0",
"handlebars": "^4.7.7",
"ionicons": "^5.5.3",
"jasmine": "^3.10.0",
Expand All @@ -131,7 +132,6 @@
"save": "^2.4.0",
"socket.io-client": "^4.3.0",
"stripe": "^8.183.0",
"subscriptions-transport-ws": "^0.9.19",
"swiper": "^7.0.8",
"tslib": "^2.3.1",
"uglify-js": "^3.14.2",
Expand Down
Loading

0 comments on commit 1d90269

Please sign in to comment.