@plyaz/types 1.18.6 → 1.19.0

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.
@@ -7,7 +7,7 @@
7
7
  export type { ApiEnvironmentConfig, ApiProviderProps } from './services';
8
8
  export type { CoreIdempotencyStoreType, CoreInMemoryIdempotencyAdapterConfig, CoreRedisIdempotencyAdapterConfig, CoreIdempotencyStoreOptions, CoreIdempotencyStoreConfig, } from './idempotency';
9
9
  export type { CoreServices, CoreRouteContext, CoreRouteHandler, CoreRouteDefinition, CoreModuleConfigSchema, CoreServiceFactory, CoreModuleLifecycle, CoreModuleDefinition, CoreRegisteredModule, CoreConfiguredModule, CoreModuleFactory, CoreFrameworkType, CoreServerConfig, CoreFrameworkAdapter, CoreAdapterFactory, CoreRuntimeEnvironment, CoreRuntimeContext, CoreNextJsHandlerContext, CoreNextJsHandlerResult, CoreNextJsHandler, CoreNextJsHandlerOptions, CoreEnvVars, CoreAppEnvironment, CoreApiInitOptions, CoreInitOptions, CoreServicesResult, CoreNestJsModuleOptions, CoreNestJsModuleAsyncOptions, CoreAppContext, CoreServiceRuntime, CoreDomainServiceConfig, } from './modules';
10
- export { BACKEND_RUNTIMES, FRONTEND_RUNTIMES, UNIVERSAL_RUNTIMES, APP_CONTEXTS, } from './modules';
10
+ export { BACKEND_RUNTIMES, FRONTEND_RUNTIMES, UNIVERSAL_RUNTIMES, APP_CONTEXTS } from './modules';
11
11
  export * from './tables/enum';
12
12
  export type * from './auth/types';
13
13
  export type * from './featureFlag/types';
@@ -0,0 +1,18 @@
1
+ /**
2
+ * CLI configuration types for @plyaz/db package
3
+ */
4
+ import type { DatabaseServiceConfig } from './features-config.types';
5
+ /**
6
+ * CLI configuration interface extending DatabaseServiceConfig
7
+ * with optional paths for migrations and seeds
8
+ */
9
+ export interface DatabaseCLIConfig extends DatabaseServiceConfig {
10
+ /** Path to migrations directory */
11
+ migrationsPath?: string;
12
+ /** Table name for tracking migrations */
13
+ migrationsTable?: string;
14
+ /** Path to seeds directory */
15
+ seedsPath?: string;
16
+ /** Table name for tracking seeds */
17
+ seedsTable?: string;
18
+ }
@@ -19,3 +19,4 @@ export type * from './seeds.types';
19
19
  export type * from './health.types';
20
20
  export type * from './tenant.types';
21
21
  export type * from './query.types';
22
+ export type * from './cli.types';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plyaz/types",
3
- "version": "1.18.6",
3
+ "version": "1.19.0",
4
4
  "author": "Redeemer Pace",
5
5
  "license": "ISC",
6
6
  "description": "Provides shared TypeScript types and schema utilities for validation and parsing in the @playz ecosystem.",