create-mercato-app 0.6.6-develop.6351.1.c140d703c9 → 0.6.6-develop.6353.1.efc82affea

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-mercato-app",
3
- "version": "0.6.6-develop.6351.1.c140d703c9",
3
+ "version": "0.6.6-develop.6353.1.efc82affea",
4
4
  "type": "module",
5
5
  "description": "Create a new Open Mercato application",
6
6
  "main": "./dist/index.js",
@@ -58,6 +58,7 @@ import { interceptorEntries } from '@/.mercato/generated/interceptors.generated'
58
58
  import { componentOverrideEntries } from '@/.mercato/generated/component-overrides.generated'
59
59
  import { guardEntries } from '@/.mercato/generated/guards.generated'
60
60
  import { commandInterceptorEntries } from '@/.mercato/generated/command-interceptors.generated'
61
+ import { commandLoaderEntries } from '@/.mercato/generated/command-loaders.generated'
61
62
  import { notificationHandlerEntries } from '@/.mercato/generated/notification-handlers.generated'
62
63
  import { messageTypes } from '@/.mercato/generated/message-types.generated'
63
64
  import { messageObjectTypes } from '@/.mercato/generated/message-objects.generated'
@@ -94,6 +95,7 @@ export const bootstrap = createBootstrap({
94
95
  componentOverrideEntries,
95
96
  guardEntries,
96
97
  commandInterceptorEntries,
98
+ commandLoaderEntries,
97
99
  notificationHandlerEntries,
98
100
  })
99
101
 
@@ -1,4 +1,3 @@
1
- import './commands/todos'
2
1
  import type { ModuleInfo } from '@open-mercato/shared/modules/registry'
3
2
 
4
3
  export const metadata: ModuleInfo = {
@@ -2,7 +2,6 @@ import { setTimeout as sleep } from 'node:timers/promises'
2
2
  import type { EntityManager } from '@mikro-orm/postgresql'
3
3
  import { type Kysely } from 'kysely'
4
4
  import type { CommandBus } from '@open-mercato/shared/lib/commands'
5
- import '@open-mercato/core/modules/customers/commands/index'
6
5
  import { loadCustomFieldSnapshot } from '@open-mercato/shared/lib/commands/customFieldSnapshots'
7
6
  import { CrudHttpError } from '@open-mercato/shared/lib/crud/errors'
8
7
  import { findOneWithDecryption } from '@open-mercato/shared/lib/encryption/find'