@plyaz/core 1.10.0 → 1.10.1

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.
@@ -2980,6 +2980,11 @@ var Core = class _Core {
2980
2980
  environment: globalEnvironment,
2981
2981
  runtime,
2982
2982
  apiClient: apiConfig ? { baseURL: apiConfig.baseURL, ...apiConfig } : void 0,
2983
+ db: options.db,
2984
+ cache: options.cache,
2985
+ storage: options.storage,
2986
+ notifications: options.notifications,
2987
+ observability: options.observability,
2983
2988
  services: mergedServices,
2984
2989
  stores: {
2985
2990
  // Returns specific slice from namespaced root store (type-safe)
@@ -9074,7 +9079,10 @@ async function initializeServices(config) {
9074
9079
  globalThis.console.log("[PlyazProvider] Initializing domain services...");
9075
9080
  }
9076
9081
  await ServiceRegistry.initialize({
9082
+ environment: config.environment,
9083
+ runtime: config.runtime ?? detectRuntime(),
9077
9084
  apiClient: { baseURL: config.api.baseURL },
9085
+ observability: config.observability,
9078
9086
  services: config.services,
9079
9087
  // Provide store registry for injecting stores into services
9080
9088
  stores: createStoreRegistry()