Skip to content
Closed
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as kms from 'aws-cdk-lib/aws-kms';
import { Construct } from 'constructs';
// Internal imports
import { IGatewayAuthorizerConfig } from './inbound-auth/authorizer';
import { GatewayPerms } from './perms';
import { GatewayPerms } from './private/perms';
import { IGatewayProtocolConfig } from './protocol';

/******************************************************************************
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { Construct } from 'constructs';
import { GatewayBase, GatewayExceptionLevel, IGateway } from './gateway-base';
import { GatewayAuthorizer, IGatewayAuthorizerConfig } from './inbound-auth/authorizer';
import { ICredentialProviderConfig } from './outbound-auth/credential-provider';
import { GatewayPerms } from './perms';
import { GatewayPerms } from './private/perms';
import { IGatewayProtocolConfig, McpGatewaySearchType, McpProtocolConfiguration, MCPProtocolVersion } from './protocol';
import { ApiSchema } from './targets/schema/api-schema';
import { ToolSchema } from './targets/schema/tool-schema';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Grant, IRole, PolicyStatement } from 'aws-cdk-lib/aws-iam';
import { CredentialProviderType, ICredentialProviderConfig } from './credential-provider';
import { GatewayPerms } from '../perms';
import { GatewayPerms } from '../private/perms';

/******************************************************************************
* API KEY
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Grant, IRole, PolicyStatement } from 'aws-cdk-lib/aws-iam';
import { CredentialProviderType, ICredentialProviderConfig } from './credential-provider';
import { GatewayPerms } from '../perms';
import { GatewayPerms } from '../private/perms';

/******************************************************************************
* OAuth
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { addConstructMetadata, MethodMetadata } from 'aws-cdk-lib/core/lib/metad
import { propertyInjectable } from 'aws-cdk-lib/core/lib/prop-injectable';
import { Construct } from 'constructs';
import { IGateway } from '../gateway-base';
import { GatewayPerms } from '../perms';
import { GatewayPerms } from '../private/perms';
import { ApiSchema } from './schema/api-schema';
import { ToolSchema } from './schema/tool-schema';
import { GatewayTargetBase, GatewayTargetProtocolType, IGatewayTarget, IMcpGatewayTarget, McpTargetType } from './target-base';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ export * from './tools/browser';
// ===================================
export * from './gateway/gateway-base';
export * from './gateway/gateway';
export * from './gateway/perms';
export * from './gateway/protocol';
// validation-helpers contains internal utilities and should not be exported

// ===================================
Expand Down
Loading