1 |
|
2 |
|
3 |
|
4 | import { Amplify } from './Amplify';
|
5 | import { Platform } from './Platform';
|
6 |
|
7 | export { Amplify } from './Amplify';
|
8 | export { AmplifyClass } from './Amplify';
|
9 | export { ClientDevice } from './ClientDevice';
|
10 | export { ConsoleLogger, ConsoleLogger as Logger } from './Logger';
|
11 | export { invalidParameter, missingConfig } from './Errors';
|
12 | export { Hub, HubCapsule, HubCallback, HubPayload } from './Hub';
|
13 | export { I18n } from './I18n';
|
14 | export {
|
15 | browserOrNode,
|
16 | filenameToContentType,
|
17 | generateRandomString,
|
18 | isEmpty,
|
19 | isStrictObject,
|
20 | isTextFile,
|
21 | isWebWorker,
|
22 | makeQuerablePromise,
|
23 | objectLessAttributes,
|
24 | sortByField,
|
25 | transferKeyToLowerCase,
|
26 | transferKeyToUpperCase,
|
27 | } from './JS';
|
28 | export { Signer } from './Signer';
|
29 | export { parseAWSExports } from './parseAWSExports';
|
30 | export { AWSCloudWatchProvider } from './Providers';
|
31 | export { FacebookOAuth, GoogleOAuth } from './OAuthHelper';
|
32 | export { AppState, AsyncStorage, Linking } from './RNComponents';
|
33 | export { Credentials, CredentialsClass } from './Credentials';
|
34 | export { ServiceWorker } from './ServiceWorker';
|
35 | export { ICredentials } from './types';
|
36 | export { StorageHelper, MemoryStorage } from './StorageHelper';
|
37 | export { UniversalStorage } from './UniversalStorage';
|
38 | export {
|
39 | Platform,
|
40 | getAmplifyUserAgentObject,
|
41 | getAmplifyUserAgent,
|
42 | } from './Platform';
|
43 | export {
|
44 | ApiAction,
|
45 | AuthAction,
|
46 | AnalyticsAction,
|
47 | Category,
|
48 | CustomUserAgentDetails,
|
49 | DataStoreAction,
|
50 | Framework,
|
51 | GeoAction,
|
52 | InteractionsAction,
|
53 | InAppMessagingAction,
|
54 | PredictionsAction,
|
55 | PubSubAction,
|
56 | PushNotificationAction,
|
57 | StorageAction,
|
58 | } from './Platform/types';
|
59 | export {
|
60 | INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER,
|
61 | USER_AGENT_HEADER,
|
62 | } from './constants';
|
63 |
|
64 | export const Constants = {
|
65 | userAgent: Platform.userAgent,
|
66 | };
|
67 |
|
68 | export {
|
69 | AWS_CLOUDWATCH_BASE_BUFFER_SIZE,
|
70 | AWS_CLOUDWATCH_CATEGORY,
|
71 | AWS_CLOUDWATCH_MAX_BATCH_EVENT_SIZE,
|
72 | AWS_CLOUDWATCH_MAX_EVENT_SIZE,
|
73 | AWS_CLOUDWATCH_PROVIDER_NAME,
|
74 | BackgroundManagerNotOpenError,
|
75 | BackgroundProcessManager,
|
76 | BackgroundProcessManagerState,
|
77 | DateUtils,
|
78 | Mutex,
|
79 | NO_CREDS_ERROR_STRING,
|
80 | NonRetryableError,
|
81 | RETRY_ERROR_CODES,
|
82 | Reachability,
|
83 | isNonRetryableError,
|
84 | jitteredBackoff,
|
85 | jitteredExponentialRetry,
|
86 | retry,
|
87 | urlSafeDecode,
|
88 | urlSafeEncode,
|
89 | } from './Util';
|
90 |
|
91 |
|
92 |
|
93 |
|
94 | export default Amplify;
|