@plyaz/types 1.33.0 → 1.34.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.
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import type { ReactNode } from 'react';
|
|
7
7
|
import type { CoreBaseDomainServiceInterface } from '../domain';
|
|
8
|
-
import type { CoreAppEnvironment, CoreAppContext } from '../modules';
|
|
8
|
+
import type { CoreAppEnvironment, CoreAppContext, CoreRuntimeEnvironment } from '../modules';
|
|
9
9
|
import type { FeatureFlagValue, FeatureFlagContext } from '../../features';
|
|
10
10
|
import type { RootStoreSlice } from '../../store';
|
|
11
11
|
import type { CoreBaseDomainServiceConfig } from '../domain';
|
|
12
12
|
import type { CoreBaseServiceConfig, CoreBaseMapperInstance, CoreBaseValidatorInstance } from '../domain';
|
|
13
|
-
import type { CoreDomainServiceInstance, CoreServiceEntry } from '../init';
|
|
13
|
+
import type { CoreDomainServiceInstance, CoreObservabilityConfig, CoreServiceEntry } from '../init';
|
|
14
14
|
/**
|
|
15
15
|
* Base store interface for frontend services.
|
|
16
16
|
*
|
|
@@ -989,6 +989,12 @@ export interface CorePlyazConfig {
|
|
|
989
989
|
store?: CorePlyazStoreConfig;
|
|
990
990
|
/** App context (webapp, backoffice, mobile) */
|
|
991
991
|
appContext?: CoreAppContext;
|
|
992
|
+
/** Environment (production, staging, development, test) */
|
|
993
|
+
environment?: CoreAppEnvironment;
|
|
994
|
+
/** Runtime environment (browser, nextjs, nuxt, react-native, etc.) - auto-detected if not provided */
|
|
995
|
+
runtime?: CoreRuntimeEnvironment;
|
|
996
|
+
/** Observability configuration (metrics, tracing, logging) */
|
|
997
|
+
observability?: CoreObservabilityConfig;
|
|
992
998
|
/** Enable verbose logging */
|
|
993
999
|
verbose?: boolean;
|
|
994
1000
|
}
|
package/package.json
CHANGED