Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/internal-test-env/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@ export type AvailableEnvironment = typeof availableEnvironment extends Array<
: never;

export interface TestingEnvironmentNode extends TestingEnvironmentBase {
notificationGateway?: string;
notificationProtocol?: string;
vcProvider?: string;
clientCredentials: {
owner: {
id: string;
Expand All @@ -74,6 +71,9 @@ export interface TestingEnvironmentBase {
environment: AvailableEnvironment;
idp: string;
features: FeatureFlags | undefined;
notificationGateway?: string;
notificationProtocol?: string;
vcProvider?: string;
}

type FeatureFlags = {
Expand Down