Skip to content

Commit

Permalink
v2.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pozylon committed Nov 18, 2024
1 parent cc1d14b commit 8d49c04
Show file tree
Hide file tree
Showing 45 changed files with 661 additions and 807 deletions.
17 changes: 8 additions & 9 deletions examples/kitchensink/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "example-kitchensink",
"description": "Kitchensink for Unchained Engine",
"private": true,
"version": "2.16.2",
"version": "2.17.0",
"license": "EUPL-1.2",
"type": "module",
"homepage": "https://unchained.shop",
Expand Down Expand Up @@ -36,12 +36,12 @@
"dependencies": {
"@apollo/server-plugin-response-cache": "^4.1.3",
"@paypal/checkout-server-sdk": "^1.0.3",
"@unchainedshop/api": "^2.16.2",
"@unchainedshop/core-delivery": "^2.16.2",
"@unchainedshop/core-payment": "^2.16.2",
"@unchainedshop/platform": "^2.16.2",
"@unchainedshop/plugins": "^2.16.2",
"@unchainedshop/types": "^2.16.2",
"@unchainedshop/api": "^2.17.0",
"@unchainedshop/core-delivery": "^2.17.0",
"@unchainedshop/core-payment": "^2.17.0",
"@unchainedshop/platform": "^2.17.0",
"@unchainedshop/plugins": "^2.17.0",
"@unchainedshop/types": "^2.17.0",
"apollo-graphiql-playground": "^0.1.5",
"bip32": "^4.0.0",
"bitcoinjs-lib": "^6.1.6",
Expand All @@ -59,8 +59,7 @@
"serve-static": "^1.15.0",
"stripe": "^15.12.0",
"tiny-secp256k1": "^2.2.3",
"twilio": "^5.3.5",
"uuid": "^10.0.0",
"twilio": "^5.3.6",
"web-push": "^3.6.7",
"xml-js": "^1.6.11"
},
Expand Down
3 changes: 1 addition & 2 deletions examples/kitchensink/seed.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { hashPassword } from '@unchainedshop/api';
import { DeliveryProviderType } from '@unchainedshop/core-delivery';
import { PaymentProviderType } from '@unchainedshop/core-payment';
import { v4 as uuidv4 } from 'uuid';

const logger = console;
const {
Expand All @@ -14,7 +13,7 @@ const {
} = process.env;

const seedPassword =
UNCHAINED_SEED_PASSWORD === 'generate' ? uuidv4().split('-').pop() : UNCHAINED_SEED_PASSWORD;
UNCHAINED_SEED_PASSWORD === 'generate' ? crypto.randomUUID() : UNCHAINED_SEED_PASSWORD;

export default async (unchainedAPI) => {
const { modules } = unchainedAPI;
Expand Down
6 changes: 3 additions & 3 deletions examples/minimal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@unchainedshop/minimal",
"description": "Kitchensink for Unchained Engine",
"private": true,
"version": "2.16.2",
"version": "2.17.0",
"license": "EUPL-1.2",
"type": "module",
"homepage": "https://unchained.shop",
Expand Down Expand Up @@ -34,11 +34,11 @@
"dev": "nodemon --delay 2500ms --watch '../../packages' --watch '.' -i lib -e js,mjs,json,ts --exec \"npm run dev:run\""
},
"dependencies": {
"@unchainedshop/platform": "^2.16.2"
"@unchainedshop/platform": "^2.17.0"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@unchainedshop/types": "^2.16.2",
"@unchainedshop/types": "^2.17.0",
"mongodb-memory-server": "^10.0.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
Expand Down
3 changes: 1 addition & 2 deletions examples/minimal/seed.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { hashPassword } from '@unchainedshop/api';
import { DeliveryProviderType } from '@unchainedshop/core-delivery';
import { PaymentProviderType } from '@unchainedshop/core-payment';
import { v4 as uuidv4 } from 'uuid';

const logger = console;
const {
Expand All @@ -14,7 +13,7 @@ const {
} = process.env;

const seedPassword =
UNCHAINED_SEED_PASSWORD === 'generate' ? uuidv4().split('-').pop() : UNCHAINED_SEED_PASSWORD;
UNCHAINED_SEED_PASSWORD === 'generate' ? crypto.randomUUID() : UNCHAINED_SEED_PASSWORD;

export default async (unchainedAPI) => {
const { modules } = unchainedAPI;
Expand Down
Loading

0 comments on commit 8d49c04

Please sign in to comment.