@timeax/digital-service-engine 0.2.1 → 0.2.2

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.
@@ -272,6 +272,7 @@ type ServiceFallback = {
272
272
  global?: Record<ServiceIdRef, ServiceIdRef[]>;
273
273
  };
274
274
  type FallbackRegistrationScope = "global" | "node";
275
+ type FallbackEligibleSource = "all_services" | "registered";
275
276
  type FallbackScopeRef = {
276
277
  scope: "global";
277
278
  primary: ServiceIdRef;
@@ -698,6 +699,7 @@ interface FallbackEditor$1 {
698
699
  exclude?: ServiceIdRef[];
699
700
  unique?: boolean;
700
701
  limit?: number;
702
+ source?: FallbackEligibleSource;
701
703
  }): ServiceIdRef[];
702
704
  }
703
705
 
@@ -272,6 +272,7 @@ type ServiceFallback = {
272
272
  global?: Record<ServiceIdRef, ServiceIdRef[]>;
273
273
  };
274
274
  type FallbackRegistrationScope = "global" | "node";
275
+ type FallbackEligibleSource = "all_services" | "registered";
275
276
  type FallbackScopeRef = {
276
277
  scope: "global";
277
278
  primary: ServiceIdRef;
@@ -698,6 +699,7 @@ interface FallbackEditor$1 {
698
699
  exclude?: ServiceIdRef[];
699
700
  unique?: boolean;
700
701
  limit?: number;
702
+ source?: FallbackEligibleSource;
701
703
  }): ServiceIdRef[];
702
704
  }
703
705