diff --git a/packages/aws-amplify/__tests__/exports-test.ts b/packages/aws-amplify/__tests__/exports-test.ts index 364f13e9263..7c3f91d8a92 100644 --- a/packages/aws-amplify/__tests__/exports-test.ts +++ b/packages/aws-amplify/__tests__/exports-test.ts @@ -19,6 +19,8 @@ describe('aws-amplify', () => { "graphqlOperation", "DataStore", "Predicates", + "SortDirection", + "syncExpression", "PubSub", "Cache", "Interactions", diff --git a/packages/aws-amplify/src/index.ts b/packages/aws-amplify/src/index.ts index 5a1b709c29c..f80c23bec04 100644 --- a/packages/aws-amplify/src/index.ts +++ b/packages/aws-amplify/src/index.ts @@ -33,7 +33,12 @@ export { export { Auth } from '@aws-amplify/auth'; export { Storage, StorageClass } from '@aws-amplify/storage'; export { API, APIClass, graphqlOperation } from '@aws-amplify/api'; -export { DataStore, Predicates } from '@aws-amplify/datastore'; +export { + DataStore, + Predicates, + SortDirection, + syncExpression, +} from '@aws-amplify/datastore'; export { PubSub } from '@aws-amplify/pubsub'; export { default as Cache } from '@aws-amplify/cache'; export { Interactions } from '@aws-amplify/interactions';