Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update import path and name for DataSourceType
Browse files Browse the repository at this point in the history
alharris-at committed Nov 15, 2023
1 parent b8145b1 commit afe18ed
Showing 1 changed file with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import { AppSyncAuthConfiguration, TransformerPluginProvider, TransformerLogLevel } from '@aws-amplify/graphql-transformer-interfaces';
import type { SynthParameters, TransformParameters } from '@aws-amplify/graphql-transformer-interfaces';
import {
DatasourceType,
GraphQLTransform,
RDSConnectionSecrets,
ResolverConfig,
UserDefinedSlot,
} from '@aws-amplify/graphql-transformer-core';
AppSyncAuthConfiguration,
TransformerPluginProvider,
TransformerLogLevel,
DataSourceType,
} from '@aws-amplify/graphql-transformer-interfaces';
import type { SynthParameters, TransformParameters } from '@aws-amplify/graphql-transformer-interfaces';
import { GraphQLTransform, RDSConnectionSecrets, ResolverConfig, UserDefinedSlot } from '@aws-amplify/graphql-transformer-core';
import { TransformManager, DeploymentResources } from '../../__e2e_v2__/test-synthesizer';

export type TestTransformParameters = {
@@ -17,7 +16,7 @@ export type TestTransformParameters = {
authConfig?: AppSyncAuthConfiguration;
userDefinedSlots?: Record<string, UserDefinedSlot[]>;
stackMapping?: Record<string, string>;
modelToDatasourceMap?: Map<string, DatasourceType>;
modelToDatasourceMap?: Map<string, DataSourceType>;
datasourceSecretParameterLocations?: Map<string, RDSConnectionSecrets>;
synthParameters?: Partial<SynthParameters>;
};

0 comments on commit afe18ed

Please sign in to comment.