Skip to content

Commit

Permalink
platform-v2.15.3
Browse files Browse the repository at this point in the history
  • Loading branch information
pozylon committed Oct 30, 2024
1 parent 1e36d4d commit 5a1193a
Show file tree
Hide file tree
Showing 3 changed files with 103 additions and 11 deletions.
109 changes: 99 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/platform/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@unchainedshop/platform",
"version": "2.15.2",
"version": "2.15.3",
"main": "lib/platform-index.js",
"exports": {
".": "./lib/platform-index.js",
Expand Down
3 changes: 3 additions & 0 deletions packages/platform/src/startPlatform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export type PlatformOptions = {
context?: any;
workQueueOptions?: SetupWorkqueueOptions & SetupCartsOptions;
introspection?: boolean;
persistedQueries?: any;
adminUiConfig?: AdminUiConfig;
} & Partial<Pick<UnchainedCoreOptions, 'modules' | 'services' | 'options' | 'rolesOptions'>>;

Expand Down Expand Up @@ -67,6 +68,7 @@ export const startPlatform = async ({
workQueueOptions,
context,
introspection,
persistedQueries,
}: PlatformOptions): Promise<{
unchainedAPI: UnchainedCore;
apolloGraphQLServer: any;
Expand Down Expand Up @@ -120,6 +122,7 @@ export const startPlatform = async ({
context,
introspection,
adminUiConfig,
persistedQueries,
});

// Setup work queues for scheduled work
Expand Down

0 comments on commit 5a1193a

Please sign in to comment.