super-ads-aws-amplify 6.15.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +5 -0
- package/adapter-core/internals/package.json +7 -0
- package/adapter-core/package.json +7 -0
- package/analytics/kinesis/package.json +8 -0
- package/analytics/kinesis-firehose/package.json +8 -0
- package/analytics/package.json +8 -0
- package/analytics/personalize/package.json +8 -0
- package/analytics/pinpoint/package.json +8 -0
- package/api/internals/package.json +7 -0
- package/api/package.json +8 -0
- package/api/server/package.json +7 -0
- package/auth/cognito/package.json +8 -0
- package/auth/cognito/server/package.json +7 -0
- package/auth/enable-oauth-listener/package.json +8 -0
- package/auth/package.json +8 -0
- package/auth/server/package.json +7 -0
- package/data/package.json +8 -0
- package/data/server/package.json +7 -0
- package/datastore/package.json +8 -0
- package/dist/cjs/adapter-core/authProvidersFactories/cognito/createAWSCredentialsAndIdentityIdProvider.js +20 -0
- package/dist/cjs/adapter-core/authProvidersFactories/cognito/createAWSCredentialsAndIdentityIdProvider.js.map +1 -0
- package/dist/cjs/adapter-core/authProvidersFactories/cognito/createUserPoolsTokenProvider.js +27 -0
- package/dist/cjs/adapter-core/authProvidersFactories/cognito/createUserPoolsTokenProvider.js.map +1 -0
- package/dist/cjs/adapter-core/authProvidersFactories/cognito/index.js +11 -0
- package/dist/cjs/adapter-core/authProvidersFactories/cognito/index.js.map +1 -0
- package/dist/cjs/adapter-core/constants.js +8 -0
- package/dist/cjs/adapter-core/constants.js.map +1 -0
- package/dist/cjs/adapter-core/index.js +23 -0
- package/dist/cjs/adapter-core/index.js.map +1 -0
- package/dist/cjs/adapter-core/internals.js +15 -0
- package/dist/cjs/adapter-core/internals.js.map +1 -0
- package/dist/cjs/adapter-core/runWithAmplifyServerContext.js +32 -0
- package/dist/cjs/adapter-core/runWithAmplifyServerContext.js.map +1 -0
- package/dist/cjs/adapter-core/storageFactories/createKeyValueStorageFromCookieStorageAdapter.js +59 -0
- package/dist/cjs/adapter-core/storageFactories/createKeyValueStorageFromCookieStorageAdapter.js.map +1 -0
- package/dist/cjs/adapter-core/storageFactories/index.js +9 -0
- package/dist/cjs/adapter-core/storageFactories/index.js.map +1 -0
- package/dist/cjs/analytics/index.js +12 -0
- package/dist/cjs/analytics/index.js.map +1 -0
- package/dist/cjs/analytics/kinesis/index.js +8 -0
- package/dist/cjs/analytics/kinesis/index.js.map +1 -0
- package/dist/cjs/analytics/kinesis-firehose/index.js +8 -0
- package/dist/cjs/analytics/kinesis-firehose/index.js.map +1 -0
- package/dist/cjs/analytics/personalize/index.js +8 -0
- package/dist/cjs/analytics/personalize/index.js.map +1 -0
- package/dist/cjs/analytics/pinpoint/index.js +11 -0
- package/dist/cjs/analytics/pinpoint/index.js.map +1 -0
- package/dist/cjs/api/index.js +11 -0
- package/dist/cjs/api/index.js.map +1 -0
- package/dist/cjs/api/internals.js +9 -0
- package/dist/cjs/api/internals.js.map +1 -0
- package/dist/cjs/api/server.js +8 -0
- package/dist/cjs/api/server.js.map +1 -0
- package/dist/cjs/auth/cognito/index.js +11 -0
- package/dist/cjs/auth/cognito/index.js.map +1 -0
- package/dist/cjs/auth/cognito/server/index.js +11 -0
- package/dist/cjs/auth/cognito/server/index.js.map +1 -0
- package/dist/cjs/auth/enableOAuthListener.js +7 -0
- package/dist/cjs/auth/enableOAuthListener.js.map +1 -0
- package/dist/cjs/auth/index.js +11 -0
- package/dist/cjs/auth/index.js.map +1 -0
- package/dist/cjs/auth/server.js +8 -0
- package/dist/cjs/auth/server.js.map +1 -0
- package/dist/cjs/datastore/index.js +11 -0
- package/dist/cjs/datastore/index.js.map +1 -0
- package/dist/cjs/in-app-messaging/index.js +11 -0
- package/dist/cjs/in-app-messaging/index.js.map +1 -0
- package/dist/cjs/in-app-messaging/pinpoint/index.js +12 -0
- package/dist/cjs/in-app-messaging/pinpoint/index.js.map +1 -0
- package/dist/cjs/index.js +12 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/cjs/initSingleton.js +90 -0
- package/dist/cjs/initSingleton.js.map +1 -0
- package/dist/cjs/push-notifications/index.js +11 -0
- package/dist/cjs/push-notifications/index.js.map +1 -0
- package/dist/cjs/push-notifications/pinpoint/index.js +12 -0
- package/dist/cjs/push-notifications/pinpoint/index.js.map +1 -0
- package/dist/cjs/storage/index.js +12 -0
- package/dist/cjs/storage/index.js.map +1 -0
- package/dist/cjs/storage/s3/index.js +11 -0
- package/dist/cjs/storage/s3/index.js.map +1 -0
- package/dist/cjs/storage/s3/server.js +11 -0
- package/dist/cjs/storage/s3/server.js.map +1 -0
- package/dist/cjs/storage/server.js +12 -0
- package/dist/cjs/storage/server.js.map +1 -0
- package/dist/cjs/utils/index.js +22 -0
- package/dist/cjs/utils/index.js.map +1 -0
- package/dist/esm/adapter-core/authProvidersFactories/cognito/createAWSCredentialsAndIdentityIdProvider.d.ts +9 -0
- package/dist/esm/adapter-core/authProvidersFactories/cognito/createAWSCredentialsAndIdentityIdProvider.mjs +18 -0
- package/dist/esm/adapter-core/authProvidersFactories/cognito/createAWSCredentialsAndIdentityIdProvider.mjs.map +1 -0
- package/dist/esm/adapter-core/authProvidersFactories/cognito/createUserPoolsTokenProvider.d.ts +8 -0
- package/dist/esm/adapter-core/authProvidersFactories/cognito/createUserPoolsTokenProvider.mjs +25 -0
- package/dist/esm/adapter-core/authProvidersFactories/cognito/createUserPoolsTokenProvider.mjs.map +1 -0
- package/dist/esm/adapter-core/authProvidersFactories/cognito/index.d.ts +2 -0
- package/dist/esm/adapter-core/authProvidersFactories/cognito/index.mjs +3 -0
- package/dist/esm/adapter-core/authProvidersFactories/cognito/index.mjs.map +1 -0
- package/dist/esm/adapter-core/constants.d.ts +1 -0
- package/dist/esm/adapter-core/constants.mjs +6 -0
- package/dist/esm/adapter-core/constants.mjs.map +1 -0
- package/dist/esm/adapter-core/index.d.ts +11 -0
- package/dist/esm/adapter-core/index.mjs +7 -0
- package/dist/esm/adapter-core/index.mjs.map +1 -0
- package/dist/esm/adapter-core/internals.d.ts +3 -0
- package/dist/esm/adapter-core/internals.mjs +3 -0
- package/dist/esm/adapter-core/internals.mjs.map +1 -0
- package/dist/esm/adapter-core/runWithAmplifyServerContext.d.ts +13 -0
- package/dist/esm/adapter-core/runWithAmplifyServerContext.mjs +30 -0
- package/dist/esm/adapter-core/runWithAmplifyServerContext.mjs.map +1 -0
- package/dist/esm/adapter-core/storageFactories/createKeyValueStorageFromCookieStorageAdapter.d.ts +10 -0
- package/dist/esm/adapter-core/storageFactories/createKeyValueStorageFromCookieStorageAdapter.mjs +57 -0
- package/dist/esm/adapter-core/storageFactories/createKeyValueStorageFromCookieStorageAdapter.mjs.map +1 -0
- package/dist/esm/adapter-core/storageFactories/index.d.ts +1 -0
- package/dist/esm/adapter-core/storageFactories/index.mjs +2 -0
- package/dist/esm/adapter-core/storageFactories/index.mjs.map +1 -0
- package/dist/esm/analytics/index.d.ts +1 -0
- package/dist/esm/analytics/index.mjs +2 -0
- package/dist/esm/analytics/index.mjs.map +1 -0
- package/dist/esm/analytics/kinesis/index.d.ts +1 -0
- package/dist/esm/analytics/kinesis/index.mjs +2 -0
- package/dist/esm/analytics/kinesis/index.mjs.map +1 -0
- package/dist/esm/analytics/kinesis-firehose/index.d.ts +1 -0
- package/dist/esm/analytics/kinesis-firehose/index.mjs +2 -0
- package/dist/esm/analytics/kinesis-firehose/index.mjs.map +1 -0
- package/dist/esm/analytics/personalize/index.d.ts +1 -0
- package/dist/esm/analytics/personalize/index.mjs +2 -0
- package/dist/esm/analytics/personalize/index.mjs.map +1 -0
- package/dist/esm/analytics/pinpoint/index.d.ts +1 -0
- package/dist/esm/analytics/pinpoint/index.mjs +2 -0
- package/dist/esm/analytics/pinpoint/index.mjs.map +1 -0
- package/dist/esm/api/index.d.ts +1 -0
- package/dist/esm/api/index.mjs +2 -0
- package/dist/esm/api/index.mjs.map +1 -0
- package/dist/esm/api/internals.d.ts +1 -0
- package/dist/esm/api/internals.mjs +2 -0
- package/dist/esm/api/internals.mjs.map +1 -0
- package/dist/esm/api/server.d.ts +1 -0
- package/dist/esm/api/server.mjs +2 -0
- package/dist/esm/api/server.mjs.map +1 -0
- package/dist/esm/auth/cognito/index.d.ts +1 -0
- package/dist/esm/auth/cognito/index.mjs +2 -0
- package/dist/esm/auth/cognito/index.mjs.map +1 -0
- package/dist/esm/auth/cognito/server/index.d.ts +1 -0
- package/dist/esm/auth/cognito/server/index.mjs +2 -0
- package/dist/esm/auth/cognito/server/index.mjs.map +1 -0
- package/dist/esm/auth/enableOAuthListener.d.ts +1 -0
- package/dist/esm/auth/enableOAuthListener.mjs +2 -0
- package/dist/esm/auth/enableOAuthListener.mjs.map +1 -0
- package/dist/esm/auth/index.d.ts +1 -0
- package/dist/esm/auth/index.mjs +2 -0
- package/dist/esm/auth/index.mjs.map +1 -0
- package/dist/esm/auth/server.d.ts +1 -0
- package/dist/esm/auth/server.mjs +2 -0
- package/dist/esm/auth/server.mjs.map +1 -0
- package/dist/esm/datastore/index.d.ts +1 -0
- package/dist/esm/datastore/index.mjs +2 -0
- package/dist/esm/datastore/index.mjs.map +1 -0
- package/dist/esm/in-app-messaging/index.d.ts +1 -0
- package/dist/esm/in-app-messaging/index.mjs +2 -0
- package/dist/esm/in-app-messaging/index.mjs.map +1 -0
- package/dist/esm/in-app-messaging/pinpoint/index.d.ts +1 -0
- package/dist/esm/in-app-messaging/pinpoint/index.mjs +2 -0
- package/dist/esm/in-app-messaging/pinpoint/index.mjs.map +1 -0
- package/dist/esm/index.d.ts +2 -0
- package/dist/esm/index.mjs +2 -0
- package/dist/esm/index.mjs.map +1 -0
- package/dist/esm/initSingleton.d.ts +24 -0
- package/dist/esm/initSingleton.mjs +89 -0
- package/dist/esm/initSingleton.mjs.map +1 -0
- package/dist/esm/push-notifications/index.d.ts +1 -0
- package/dist/esm/push-notifications/index.mjs +2 -0
- package/dist/esm/push-notifications/index.mjs.map +1 -0
- package/dist/esm/push-notifications/pinpoint/index.d.ts +1 -0
- package/dist/esm/push-notifications/pinpoint/index.mjs +2 -0
- package/dist/esm/push-notifications/pinpoint/index.mjs.map +1 -0
- package/dist/esm/storage/index.d.ts +1 -0
- package/dist/esm/storage/index.mjs +2 -0
- package/dist/esm/storage/index.mjs.map +1 -0
- package/dist/esm/storage/s3/index.d.ts +1 -0
- package/dist/esm/storage/s3/index.mjs +2 -0
- package/dist/esm/storage/s3/index.mjs.map +1 -0
- package/dist/esm/storage/s3/server.d.ts +1 -0
- package/dist/esm/storage/s3/server.mjs +2 -0
- package/dist/esm/storage/s3/server.mjs.map +1 -0
- package/dist/esm/storage/server.d.ts +1 -0
- package/dist/esm/storage/server.mjs +2 -0
- package/dist/esm/storage/server.mjs.map +1 -0
- package/dist/esm/utils/index.d.ts +2 -0
- package/dist/esm/utils/index.mjs +3 -0
- package/dist/esm/utils/index.mjs.map +1 -0
- package/in-app-messaging/package.json +8 -0
- package/in-app-messaging/pinpoint/package.json +8 -0
- package/package.json +535 -0
- package/push-notifications/package.json +8 -0
- package/push-notifications/pinpoint/package.json +8 -0
- package/src/adapter-core/authProvidersFactories/cognito/createAWSCredentialsAndIdentityIdProvider.ts +30 -0
- package/src/adapter-core/authProvidersFactories/cognito/createUserPoolsTokenProvider.ts +37 -0
- package/src/adapter-core/authProvidersFactories/cognito/index.ts +5 -0
- package/src/adapter-core/constants.ts +4 -0
- package/src/adapter-core/index.ts +28 -0
- package/src/adapter-core/internals.ts +19 -0
- package/src/adapter-core/runWithAmplifyServerContext.ts +37 -0
- package/src/adapter-core/storageFactories/createKeyValueStorageFromCookieStorageAdapter.ts +72 -0
- package/src/adapter-core/storageFactories/index.ts +4 -0
- package/src/analytics/index.ts +8 -0
- package/src/analytics/kinesis/index.ts +4 -0
- package/src/analytics/kinesis-firehose/index.ts +4 -0
- package/src/analytics/personalize/index.ts +4 -0
- package/src/analytics/pinpoint/index.ts +7 -0
- package/src/api/index.ts +7 -0
- package/src/api/internals.ts +10 -0
- package/src/api/server.ts +4 -0
- package/src/auth/cognito/index.ts +7 -0
- package/src/auth/cognito/server/index.ts +7 -0
- package/src/auth/enableOAuthListener.ts +4 -0
- package/src/auth/index.ts +7 -0
- package/src/auth/server.ts +4 -0
- package/src/datastore/index.ts +7 -0
- package/src/in-app-messaging/index.ts +7 -0
- package/src/in-app-messaging/pinpoint/index.ts +8 -0
- package/src/index.ts +8 -0
- package/src/initSingleton.ts +121 -0
- package/src/push-notifications/index.ts +7 -0
- package/src/push-notifications/pinpoint/index.ts +8 -0
- package/src/storage/index.ts +8 -0
- package/src/storage/s3/index.ts +7 -0
- package/src/storage/s3/server.ts +7 -0
- package/src/storage/server.ts +8 -0
- package/src/utils/index.ts +21 -0
- package/storage/package.json +8 -0
- package/storage/s3/package.json +8 -0
- package/storage/s3/server/package.json +7 -0
- package/storage/server/package.json +7 -0
- package/utils/package.json +8 -0
package/dist/cjs/adapter-core/storageFactories/createKeyValueStorageFromCookieStorageAdapter.js
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
exports.createKeyValueStorageFromCookieStorageAdapter = exports.defaultSetCookieOptions = void 0;
|
7
|
+
const constants_1 = require("../constants");
|
8
|
+
exports.defaultSetCookieOptions = {
|
9
|
+
// TODO: allow configure with a public interface
|
10
|
+
sameSite: 'lax',
|
11
|
+
secure: true,
|
12
|
+
path: '/',
|
13
|
+
};
|
14
|
+
/**
|
15
|
+
* Creates a Key Value storage interface using the `cookieStorageAdapter` as the
|
16
|
+
* underlying storage.
|
17
|
+
* @param cookieStorageAdapter An implementation of the `Adapter` in {@link CookieStorage}.
|
18
|
+
* @returns An object that implements {@link KeyValueStorageInterface}.
|
19
|
+
*/
|
20
|
+
const createKeyValueStorageFromCookieStorageAdapter = (cookieStorageAdapter, validator, setCookieOptions = {}) => {
|
21
|
+
return {
|
22
|
+
setItem(key, value) {
|
23
|
+
// Delete the cookie item first then set it. This results:
|
24
|
+
// SetCookie: key=;expires=1970-01-01;(path='current-path') <- remove path'ed cookies
|
25
|
+
// SetCookie: key=value;expires=Date.now() + 365 days;path=/;secure=true
|
26
|
+
cookieStorageAdapter.delete(key);
|
27
|
+
const mergedCookieOptions = {
|
28
|
+
...exports.defaultSetCookieOptions,
|
29
|
+
...setCookieOptions,
|
30
|
+
};
|
31
|
+
// when expires and maxAge both are not specified, we set a default maxAge
|
32
|
+
if (!mergedCookieOptions.expires && !mergedCookieOptions.maxAge) {
|
33
|
+
mergedCookieOptions.maxAge = constants_1.DEFAULT_AUTH_TOKEN_COOKIES_MAX_AGE;
|
34
|
+
}
|
35
|
+
cookieStorageAdapter.set(key, value, mergedCookieOptions);
|
36
|
+
return Promise.resolve();
|
37
|
+
},
|
38
|
+
async getItem(key) {
|
39
|
+
const cookie = cookieStorageAdapter.get(key);
|
40
|
+
const value = cookie?.value ?? null;
|
41
|
+
if (value && validator?.getItem) {
|
42
|
+
const isValid = await validator.getItem(key, value);
|
43
|
+
if (!isValid)
|
44
|
+
return null;
|
45
|
+
}
|
46
|
+
return value;
|
47
|
+
},
|
48
|
+
removeItem(key) {
|
49
|
+
cookieStorageAdapter.delete(key);
|
50
|
+
return Promise.resolve();
|
51
|
+
},
|
52
|
+
clear() {
|
53
|
+
// TODO(HuiSF): follow up the implementation.
|
54
|
+
throw new Error('This method has not implemented.');
|
55
|
+
},
|
56
|
+
};
|
57
|
+
};
|
58
|
+
exports.createKeyValueStorageFromCookieStorageAdapter = createKeyValueStorageFromCookieStorageAdapter;
|
59
|
+
//# sourceMappingURL=createKeyValueStorageFromCookieStorageAdapter.js.map
|
package/dist/cjs/adapter-core/storageFactories/createKeyValueStorageFromCookieStorageAdapter.js.map
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"createKeyValueStorageFromCookieStorageAdapter.js","sources":["../../../../src/adapter-core/storageFactories/createKeyValueStorageFromCookieStorageAdapter.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.createKeyValueStorageFromCookieStorageAdapter = exports.defaultSetCookieOptions = void 0;\nconst constants_1 = require(\"../constants\");\nexports.defaultSetCookieOptions = {\n // TODO: allow configure with a public interface\n sameSite: 'lax',\n secure: true,\n path: '/',\n};\n/**\n * Creates a Key Value storage interface using the `cookieStorageAdapter` as the\n * underlying storage.\n * @param cookieStorageAdapter An implementation of the `Adapter` in {@link CookieStorage}.\n * @returns An object that implements {@link KeyValueStorageInterface}.\n */\nconst createKeyValueStorageFromCookieStorageAdapter = (cookieStorageAdapter, validator, setCookieOptions = {}) => {\n return {\n setItem(key, value) {\n // Delete the cookie item first then set it. This results:\n // SetCookie: key=;expires=1970-01-01;(path='current-path') <- remove path'ed cookies\n // SetCookie: key=value;expires=Date.now() + 365 days;path=/;secure=true\n cookieStorageAdapter.delete(key);\n const mergedCookieOptions = {\n ...exports.defaultSetCookieOptions,\n ...setCookieOptions,\n };\n // when expires and maxAge both are not specified, we set a default maxAge\n if (!mergedCookieOptions.expires && !mergedCookieOptions.maxAge) {\n mergedCookieOptions.maxAge = constants_1.DEFAULT_AUTH_TOKEN_COOKIES_MAX_AGE;\n }\n cookieStorageAdapter.set(key, value, mergedCookieOptions);\n return Promise.resolve();\n },\n async getItem(key) {\n const cookie = cookieStorageAdapter.get(key);\n const value = cookie?.value ?? null;\n if (value && validator?.getItem) {\n const isValid = await validator.getItem(key, value);\n if (!isValid)\n return null;\n }\n return value;\n },\n removeItem(key) {\n cookieStorageAdapter.delete(key);\n return Promise.resolve();\n },\n clear() {\n // TODO(HuiSF): follow up the implementation.\n throw new Error('This method has not implemented.');\n },\n };\n};\nexports.createKeyValueStorageFromCookieStorageAdapter = createKeyValueStorageFromCookieStorageAdapter;\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,OAAO,CAAC,6CAA6C,GAAG,OAAO,CAAC,uBAAuB,GAAG,MAAM;AAChG,MAAM,WAAW,GAAG,OAAO,CAAC,cAAc,CAAC;AAC3C,OAAO,CAAC,uBAAuB,GAAG;AAClC;AACA,IAAI,QAAQ,EAAE,KAAK;AACnB,IAAI,MAAM,EAAE,IAAI;AAChB,IAAI,IAAI,EAAE,GAAG;AACb,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,6CAA6C,GAAG,CAAC,oBAAoB,EAAE,SAAS,EAAE,gBAAgB,GAAG,EAAE,KAAK;AAClH,IAAI,OAAO;AACX,QAAQ,OAAO,CAAC,GAAG,EAAE,KAAK,EAAE;AAC5B;AACA;AACA;AACA,YAAY,oBAAoB,CAAC,MAAM,CAAC,GAAG,CAAC;AAC5C,YAAY,MAAM,mBAAmB,GAAG;AACxC,gBAAgB,GAAG,OAAO,CAAC,uBAAuB;AAClD,gBAAgB,GAAG,gBAAgB;AACnC,aAAa;AACb;AACA,YAAY,IAAI,CAAC,mBAAmB,CAAC,OAAO,IAAI,CAAC,mBAAmB,CAAC,MAAM,EAAE;AAC7E,gBAAgB,mBAAmB,CAAC,MAAM,GAAG,WAAW,CAAC,kCAAkC;AAC3F,YAAY;AACZ,YAAY,oBAAoB,CAAC,GAAG,CAAC,GAAG,EAAE,KAAK,EAAE,mBAAmB,CAAC;AACrE,YAAY,OAAO,OAAO,CAAC,OAAO,EAAE;AACpC,QAAQ,CAAC;AACT,QAAQ,MAAM,OAAO,CAAC,GAAG,EAAE;AAC3B,YAAY,MAAM,MAAM,GAAG,oBAAoB,CAAC,GAAG,CAAC,GAAG,CAAC;AACxD,YAAY,MAAM,KAAK,GAAG,MAAM,EAAE,KAAK,IAAI,IAAI;AAC/C,YAAY,IAAI,KAAK,IAAI,SAAS,EAAE,OAAO,EAAE;AAC7C,gBAAgB,MAAM,OAAO,GAAG,MAAM,SAAS,CAAC,OAAO,CAAC,GAAG,EAAE,KAAK,CAAC;AACnE,gBAAgB,IAAI,CAAC,OAAO;AAC5B,oBAAoB,OAAO,IAAI;AAC/B,YAAY;AACZ,YAAY,OAAO,KAAK;AACxB,QAAQ,CAAC;AACT,QAAQ,UAAU,CAAC,GAAG,EAAE;AACxB,YAAY,oBAAoB,CAAC,MAAM,CAAC,GAAG,CAAC;AAC5C,YAAY,OAAO,OAAO,CAAC,OAAO,EAAE;AACpC,QAAQ,CAAC;AACT,QAAQ,KAAK,GAAG;AAChB;AACA,YAAY,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC;AAC/D,QAAQ,CAAC;AACT,KAAK;AACL,CAAC;AACD,OAAO,CAAC,6CAA6C,GAAG,6CAA6C;;"}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
exports.createKeyValueStorageFromCookieStorageAdapter = void 0;
|
7
|
+
var createKeyValueStorageFromCookieStorageAdapter_1 = require("./createKeyValueStorageFromCookieStorageAdapter");
|
8
|
+
Object.defineProperty(exports, "createKeyValueStorageFromCookieStorageAdapter", { enumerable: true, get: function () { return createKeyValueStorageFromCookieStorageAdapter_1.createKeyValueStorageFromCookieStorageAdapter; } });
|
9
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../../src/adapter-core/storageFactories/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.createKeyValueStorageFromCookieStorageAdapter = void 0;\nvar createKeyValueStorageFromCookieStorageAdapter_1 = require(\"./createKeyValueStorageFromCookieStorageAdapter\");\nObject.defineProperty(exports, \"createKeyValueStorageFromCookieStorageAdapter\", { enumerable: true, get: function () { return createKeyValueStorageFromCookieStorageAdapter_1.createKeyValueStorageFromCookieStorageAdapter; } });\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,OAAO,CAAC,6CAA6C,GAAG,MAAM;AAC9D,IAAI,+CAA+C,GAAG,OAAO,CAAC,iDAAiD,CAAC;AAChH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,+CAA+C,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE,GAAG,EAAE,YAAY,EAAE,OAAO,+CAA+C,CAAC,6CAA6C,CAAC,CAAC,CAAC,EAAE,CAAC;;"}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
/*
|
8
|
+
This file maps exports from `aws-amplify/analytics`. It provides access to the default Analytics provider and category
|
9
|
+
utils.
|
10
|
+
*/
|
11
|
+
tslib_1.__exportStar(require("@aws-amplify/analytics"), exports);
|
12
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/analytics/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\n/*\nThis file maps exports from `aws-amplify/analytics`. It provides access to the default Analytics provider and category\nutils.\n*/\ntslib_1.__exportStar(require(\"@aws-amplify/analytics\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC;AACA;AACA;AACA;AACA,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,wBAAwB,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
tslib_1.__exportStar(require("@aws-amplify/analytics/kinesis"), exports);
|
8
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../../src/analytics/kinesis/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\ntslib_1.__exportStar(require(\"@aws-amplify/analytics/kinesis\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,gCAAgC,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
tslib_1.__exportStar(require("@aws-amplify/analytics/kinesis-firehose"), exports);
|
8
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../../src/analytics/kinesis-firehose/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\ntslib_1.__exportStar(require(\"@aws-amplify/analytics/kinesis-firehose\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,yCAAyC,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
tslib_1.__exportStar(require("@aws-amplify/analytics/personalize"), exports);
|
8
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../../src/analytics/personalize/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\ntslib_1.__exportStar(require(\"@aws-amplify/analytics/personalize\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,oCAAoC,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
/*
|
8
|
+
This file maps exports from `aws-amplify/analytics/pinpoint`. It provides access to Pinpoint APIs.
|
9
|
+
*/
|
10
|
+
tslib_1.__exportStar(require("@aws-amplify/analytics/pinpoint"), exports);
|
11
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../../src/analytics/pinpoint/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\n/*\nThis file maps exports from `aws-amplify/analytics/pinpoint`. It provides access to Pinpoint APIs.\n*/\ntslib_1.__exportStar(require(\"@aws-amplify/analytics/pinpoint\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC;AACA;AACA;AACA,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,iCAAiC,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
/*
|
8
|
+
This file maps exports from `aws-amplify/api`. It provides access to the default API provider and category utils.
|
9
|
+
*/
|
10
|
+
tslib_1.__exportStar(require("@aws-amplify/api"), exports);
|
11
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/api/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\n/*\nThis file maps exports from `aws-amplify/api`. It provides access to the default API provider and category utils.\n*/\ntslib_1.__exportStar(require(\"@aws-amplify/api\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC;AACA;AACA;AACA,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,kBAAkB,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
exports.generateClientWithAmplifyInstance = void 0;
|
7
|
+
var internals_1 = require("@aws-amplify/api/internals");
|
8
|
+
Object.defineProperty(exports, "generateClientWithAmplifyInstance", { enumerable: true, get: function () { return internals_1.generateClientWithAmplifyInstance; } });
|
9
|
+
//# sourceMappingURL=internals.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"internals.js","sources":["../../../src/api/internals.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.generateClientWithAmplifyInstance = void 0;\nvar internals_1 = require(\"@aws-amplify/api/internals\");\nObject.defineProperty(exports, \"generateClientWithAmplifyInstance\", { enumerable: true, get: function () { return internals_1.generateClientWithAmplifyInstance; } });\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,OAAO,CAAC,iCAAiC,GAAG,MAAM;AAClD,IAAI,WAAW,GAAG,OAAO,CAAC,4BAA4B,CAAC;AACvD,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,mCAAmC,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE,GAAG,EAAE,YAAY,EAAE,OAAO,WAAW,CAAC,iCAAiC,CAAC,CAAC,CAAC,EAAE,CAAC;;"}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
tslib_1.__exportStar(require("@aws-amplify/api/server"), exports);
|
8
|
+
//# sourceMappingURL=server.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"server.js","sources":["../../../src/api/server.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\ntslib_1.__exportStar(require(\"@aws-amplify/api/server\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,yBAAyB,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
/*
|
8
|
+
This file maps exports from `aws-amplify/auth/cognito`. It provides access to Cognito APIs.
|
9
|
+
*/
|
10
|
+
tslib_1.__exportStar(require("super-ads-aws-amplify-auth/cognito"), exports);
|
11
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../../src/auth/cognito/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\n/*\nThis file maps exports from `aws-amplify/auth/cognito`. It provides access to Cognito APIs.\n*/\ntslib_1.__exportStar(require(\"super-ads-aws-amplify-auth/cognito\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC;AACA;AACA;AACA,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,oCAAoC,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
/*
|
8
|
+
This file maps exports from `aws-amplify/auth/cognito/server`. It provides access to server-enabled Cognito APIs.
|
9
|
+
*/
|
10
|
+
tslib_1.__exportStar(require("super-ads-aws-amplify-auth/cognito/server"), exports);
|
11
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../../../src/auth/cognito/server/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\n/*\nThis file maps exports from `aws-amplify/auth/cognito/server`. It provides access to server-enabled Cognito APIs.\n*/\ntslib_1.__exportStar(require(\"super-ads-aws-amplify-auth/cognito/server\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC;AACA;AACA;AACA,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,2CAA2C,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,7 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
require("super-ads-aws-amplify-auth/enable-oauth-listener");
|
7
|
+
//# sourceMappingURL=enableOAuthListener.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"enableOAuthListener.js","sources":["../../../src/auth/enableOAuthListener.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nrequire(\"super-ads-aws-amplify-auth/enable-oauth-listener\");\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,OAAO,CAAC,kDAAkD,CAAC;;"}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
/*
|
8
|
+
This file maps exports from `aws-amplify/auth`. It provides access to the default Auth provider and category utils.
|
9
|
+
*/
|
10
|
+
tslib_1.__exportStar(require("super-ads-aws-amplify-auth"), exports);
|
11
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/auth/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\n/*\nThis file maps exports from `aws-amplify/auth`. It provides access to the default Auth provider and category utils.\n*/\ntslib_1.__exportStar(require(\"super-ads-aws-amplify-auth\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC;AACA;AACA;AACA,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,4BAA4B,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
tslib_1.__exportStar(require("super-ads-aws-amplify-auth/server"), exports);
|
8
|
+
//# sourceMappingURL=server.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"server.js","sources":["../../../src/auth/server.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\ntslib_1.__exportStar(require(\"super-ads-aws-amplify-auth/server\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,mCAAmC,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
/*
|
8
|
+
This file maps exports from `aws-amplify/datastore`. It provides access to DataStore APIs and category utils.
|
9
|
+
*/
|
10
|
+
tslib_1.__exportStar(require("@aws-amplify/datastore"), exports);
|
11
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/datastore/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\n/*\nThis file maps exports from `aws-amplify/datastore`. It provides access to DataStore APIs and category utils.\n*/\ntslib_1.__exportStar(require(\"@aws-amplify/datastore\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC;AACA;AACA;AACA,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,wBAAwB,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
/*
|
8
|
+
This file maps exports from `aws-amplify/in-app-messaging`. It provides access to the InAppMessaging sub-category.
|
9
|
+
*/
|
10
|
+
tslib_1.__exportStar(require("@aws-amplify/notifications/in-app-messaging"), exports);
|
11
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/in-app-messaging/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\n/*\nThis file maps exports from `aws-amplify/in-app-messaging`. It provides access to the InAppMessaging sub-category.\n*/\ntslib_1.__exportStar(require(\"@aws-amplify/notifications/in-app-messaging\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC;AACA;AACA;AACA,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,6CAA6C,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
/*
|
8
|
+
This file maps exports from `aws-amplify/in-app-messaging/pinpoint`.
|
9
|
+
It provides access to the Pinpoint provider of the InAppMessaging sub-category.
|
10
|
+
*/
|
11
|
+
tslib_1.__exportStar(require("@aws-amplify/notifications/in-app-messaging/pinpoint"), exports);
|
12
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../../src/in-app-messaging/pinpoint/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\n/*\nThis file maps exports from `aws-amplify/in-app-messaging/pinpoint`.\nIt provides access to the Pinpoint provider of the InAppMessaging sub-category.\n*/\ntslib_1.__exportStar(require(\"@aws-amplify/notifications/in-app-messaging/pinpoint\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC;AACA;AACA;AACA;AACA,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,sDAAsD,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
exports.Amplify = void 0;
|
7
|
+
/*
|
8
|
+
This file maps top-level exports from `aws-amplify`.
|
9
|
+
*/
|
10
|
+
var initSingleton_1 = require("./initSingleton");
|
11
|
+
Object.defineProperty(exports, "Amplify", { enumerable: true, get: function () { return initSingleton_1.DefaultAmplify; } });
|
12
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Amplify = void 0;\n/*\nThis file maps top-level exports from `aws-amplify`.\n*/\nvar initSingleton_1 = require(\"./initSingleton\");\nObject.defineProperty(exports, \"Amplify\", { enumerable: true, get: function () { return initSingleton_1.DefaultAmplify; } });\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,OAAO,CAAC,OAAO,GAAG,MAAM;AACxB;AACA;AACA;AACA,IAAI,eAAe,GAAG,OAAO,CAAC,iBAAiB,CAAC;AAChD,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,SAAS,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE,GAAG,EAAE,YAAY,EAAE,OAAO,eAAe,CAAC,cAAc,CAAC,CAAC,CAAC,EAAE,CAAC;;"}
|
@@ -0,0 +1,90 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
4
|
+
exports.DefaultAmplify = void 0;
|
5
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
6
|
+
// SPDX-License-Identifier: Apache-2.0
|
7
|
+
const core_1 = require("@aws-amplify/core");
|
8
|
+
const utils_1 = require("@aws-amplify/core/internals/utils");
|
9
|
+
const cognito_1 = require("./auth/cognito");
|
10
|
+
exports.DefaultAmplify = {
|
11
|
+
/**
|
12
|
+
* Configures Amplify with the {@link resourceConfig} and {@link libraryOptions}.
|
13
|
+
*
|
14
|
+
* @param resourceConfig The {@link ResourcesConfig} object that is typically imported from the
|
15
|
+
* `amplifyconfiguration.json` file. It can also be an object literal created inline when calling `Amplify.configure`.
|
16
|
+
* @param libraryOptions The {@link LibraryOptions} additional options for the library.
|
17
|
+
*
|
18
|
+
* @example
|
19
|
+
* import config from './amplifyconfiguration.json';
|
20
|
+
*
|
21
|
+
* Amplify.configure(config);
|
22
|
+
*/
|
23
|
+
configure(resourceConfig, libraryOptions) {
|
24
|
+
const resolvedResourceConfig = (0, utils_1.parseAmplifyConfig)(resourceConfig);
|
25
|
+
const cookieBasedKeyValueStorage = new core_1.CookieStorage({ sameSite: 'lax' });
|
26
|
+
const resolvedKeyValueStorage = libraryOptions?.ssr
|
27
|
+
? cookieBasedKeyValueStorage
|
28
|
+
: core_1.defaultStorage;
|
29
|
+
const resolvedCredentialsProvider = libraryOptions?.ssr
|
30
|
+
? new cognito_1.CognitoAWSCredentialsAndIdentityIdProvider(new cognito_1.DefaultIdentityIdStore(cookieBasedKeyValueStorage))
|
31
|
+
: cognito_1.cognitoCredentialsProvider;
|
32
|
+
// If no Auth config is provided, no special handling will be required, configure as is.
|
33
|
+
// Otherwise, we can assume an Auth config is provided from here on.
|
34
|
+
if (!resolvedResourceConfig.Auth) {
|
35
|
+
core_1.Amplify.configure(resolvedResourceConfig, libraryOptions);
|
36
|
+
return;
|
37
|
+
}
|
38
|
+
// If Auth options are provided, always just configure as is.
|
39
|
+
// Otherwise, we can assume no Auth libraryOptions were provided from here on.
|
40
|
+
if (libraryOptions?.Auth) {
|
41
|
+
core_1.Amplify.configure(resolvedResourceConfig, libraryOptions);
|
42
|
+
return;
|
43
|
+
}
|
44
|
+
// If no Auth libraryOptions were previously configured, then always add default providers.
|
45
|
+
if (!core_1.Amplify.libraryOptions.Auth) {
|
46
|
+
cognito_1.cognitoUserPoolsTokenProvider.setAuthConfig(resolvedResourceConfig.Auth);
|
47
|
+
cognito_1.cognitoUserPoolsTokenProvider.setKeyValueStorage(
|
48
|
+
// TODO: allow configure with a public interface
|
49
|
+
resolvedKeyValueStorage);
|
50
|
+
core_1.Amplify.configure(resolvedResourceConfig, {
|
51
|
+
...libraryOptions,
|
52
|
+
Auth: {
|
53
|
+
tokenProvider: cognito_1.cognitoUserPoolsTokenProvider,
|
54
|
+
credentialsProvider: resolvedCredentialsProvider,
|
55
|
+
},
|
56
|
+
});
|
57
|
+
return;
|
58
|
+
}
|
59
|
+
// At this point, Auth libraryOptions would have been previously configured and no overriding
|
60
|
+
// Auth options were given, so we should preserve the currently configured Auth libraryOptions.
|
61
|
+
if (libraryOptions) {
|
62
|
+
const authLibraryOptions = core_1.Amplify.libraryOptions.Auth;
|
63
|
+
// If ssr is provided through libraryOptions, we should respect the intentional reconfiguration.
|
64
|
+
if (libraryOptions.ssr !== undefined) {
|
65
|
+
cognito_1.cognitoUserPoolsTokenProvider.setKeyValueStorage(
|
66
|
+
// TODO: allow configure with a public interface
|
67
|
+
resolvedKeyValueStorage);
|
68
|
+
authLibraryOptions.credentialsProvider = resolvedCredentialsProvider;
|
69
|
+
}
|
70
|
+
core_1.Amplify.configure(resolvedResourceConfig, {
|
71
|
+
Auth: authLibraryOptions,
|
72
|
+
...libraryOptions,
|
73
|
+
});
|
74
|
+
return;
|
75
|
+
}
|
76
|
+
// Finally, if there were no libraryOptions given at all, we should simply not touch the currently
|
77
|
+
// configured libraryOptions.
|
78
|
+
core_1.Amplify.configure(resolvedResourceConfig);
|
79
|
+
},
|
80
|
+
/**
|
81
|
+
* Returns the {@link ResourcesConfig} object passed in as the `resourceConfig` parameter when calling
|
82
|
+
* `Amplify.configure`.
|
83
|
+
*
|
84
|
+
* @returns An {@link ResourcesConfig} object.
|
85
|
+
*/
|
86
|
+
getConfig() {
|
87
|
+
return core_1.Amplify.getConfig();
|
88
|
+
},
|
89
|
+
};
|
90
|
+
//# sourceMappingURL=initSingleton.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"initSingleton.js","sources":["../../src/initSingleton.ts"],"sourcesContent":["\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.DefaultAmplify = void 0;\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nconst core_1 = require(\"@aws-amplify/core\");\nconst utils_1 = require(\"@aws-amplify/core/internals/utils\");\nconst cognito_1 = require(\"./auth/cognito\");\nexports.DefaultAmplify = {\n /**\n * Configures Amplify with the {@link resourceConfig} and {@link libraryOptions}.\n *\n * @param resourceConfig The {@link ResourcesConfig} object that is typically imported from the\n * `amplifyconfiguration.json` file. It can also be an object literal created inline when calling `Amplify.configure`.\n * @param libraryOptions The {@link LibraryOptions} additional options for the library.\n *\n * @example\n * import config from './amplifyconfiguration.json';\n *\n * Amplify.configure(config);\n */\n configure(resourceConfig, libraryOptions) {\n const resolvedResourceConfig = (0, utils_1.parseAmplifyConfig)(resourceConfig);\n const cookieBasedKeyValueStorage = new core_1.CookieStorage({ sameSite: 'lax' });\n const resolvedKeyValueStorage = libraryOptions?.ssr\n ? cookieBasedKeyValueStorage\n : core_1.defaultStorage;\n const resolvedCredentialsProvider = libraryOptions?.ssr\n ? new cognito_1.CognitoAWSCredentialsAndIdentityIdProvider(new cognito_1.DefaultIdentityIdStore(cookieBasedKeyValueStorage))\n : cognito_1.cognitoCredentialsProvider;\n // If no Auth config is provided, no special handling will be required, configure as is.\n // Otherwise, we can assume an Auth config is provided from here on.\n if (!resolvedResourceConfig.Auth) {\n core_1.Amplify.configure(resolvedResourceConfig, libraryOptions);\n return;\n }\n // If Auth options are provided, always just configure as is.\n // Otherwise, we can assume no Auth libraryOptions were provided from here on.\n if (libraryOptions?.Auth) {\n core_1.Amplify.configure(resolvedResourceConfig, libraryOptions);\n return;\n }\n // If no Auth libraryOptions were previously configured, then always add default providers.\n if (!core_1.Amplify.libraryOptions.Auth) {\n cognito_1.cognitoUserPoolsTokenProvider.setAuthConfig(resolvedResourceConfig.Auth);\n cognito_1.cognitoUserPoolsTokenProvider.setKeyValueStorage(\n // TODO: allow configure with a public interface\n resolvedKeyValueStorage);\n core_1.Amplify.configure(resolvedResourceConfig, {\n ...libraryOptions,\n Auth: {\n tokenProvider: cognito_1.cognitoUserPoolsTokenProvider,\n credentialsProvider: resolvedCredentialsProvider,\n },\n });\n return;\n }\n // At this point, Auth libraryOptions would have been previously configured and no overriding\n // Auth options were given, so we should preserve the currently configured Auth libraryOptions.\n if (libraryOptions) {\n const authLibraryOptions = core_1.Amplify.libraryOptions.Auth;\n // If ssr is provided through libraryOptions, we should respect the intentional reconfiguration.\n if (libraryOptions.ssr !== undefined) {\n cognito_1.cognitoUserPoolsTokenProvider.setKeyValueStorage(\n // TODO: allow configure with a public interface\n resolvedKeyValueStorage);\n authLibraryOptions.credentialsProvider = resolvedCredentialsProvider;\n }\n core_1.Amplify.configure(resolvedResourceConfig, {\n Auth: authLibraryOptions,\n ...libraryOptions,\n });\n return;\n }\n // Finally, if there were no libraryOptions given at all, we should simply not touch the currently\n // configured libraryOptions.\n core_1.Amplify.configure(resolvedResourceConfig);\n },\n /**\n * Returns the {@link ResourcesConfig} object passed in as the `resourceConfig` parameter when calling\n * `Amplify.configure`.\n *\n * @returns An {@link ResourcesConfig} object.\n */\n getConfig() {\n return core_1.Amplify.getConfig();\n },\n};\n"],"names":[],"mappings":";;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,OAAO,CAAC,cAAc,GAAG,MAAM;AAC/B;AACA;AACA,MAAM,MAAM,GAAG,OAAO,CAAC,mBAAmB,CAAC;AAC3C,MAAM,OAAO,GAAG,OAAO,CAAC,mCAAmC,CAAC;AAC5D,MAAM,SAAS,GAAG,OAAO,CAAC,gBAAgB,CAAC;AAC3C,OAAO,CAAC,cAAc,GAAG;AACzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI,SAAS,CAAC,cAAc,EAAE,cAAc,EAAE;AAC9C,QAAQ,MAAM,sBAAsB,GAAG,IAAI,OAAO,CAAC,kBAAkB,EAAE,cAAc,CAAC;AACtF,QAAQ,MAAM,0BAA0B,GAAG,IAAI,MAAM,CAAC,aAAa,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;AACxF,QAAQ,MAAM,uBAAuB,GAAG,cAAc,EAAE;AACxD,cAAc;AACd,cAAc,MAAM,CAAC,cAAc;AACnC,QAAQ,MAAM,2BAA2B,GAAG,cAAc,EAAE;AAC5D,cAAc,IAAI,SAAS,CAAC,0CAA0C,CAAC,IAAI,SAAS,CAAC,sBAAsB,CAAC,0BAA0B,CAAC;AACvI,cAAc,SAAS,CAAC,0BAA0B;AAClD;AACA;AACA,QAAQ,IAAI,CAAC,sBAAsB,CAAC,IAAI,EAAE;AAC1C,YAAY,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,sBAAsB,EAAE,cAAc,CAAC;AAC5E,YAAY;AACZ,QAAQ;AACR;AACA;AACA,QAAQ,IAAI,cAAc,EAAE,IAAI,EAAE;AAClC,YAAY,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,sBAAsB,EAAE,cAAc,CAAC;AAC5E,YAAY;AACZ,QAAQ;AACR;AACA,QAAQ,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,cAAc,CAAC,IAAI,EAAE;AACjD,YAAY,SAAS,CAAC,6BAA6B,CAAC,aAAa,CAAC,sBAAsB,CAAC,IAAI,CAAC;AAC9F,YAAY,SAAS,CAAC,6BAA6B,CAAC,kBAAkB;AACtE;AACA,YAAY,uBAAuB,CAAC;AACpC,YAAY,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,sBAAsB,EAAE;AAC7D,gBAAgB,GAAG,cAAc;AACjC,gBAAgB,IAAI,EAAE;AACtB,oBAAoB,aAAa,EAAE,SAAS,CAAC,6BAA6B;AAC1E,oBAAoB,mBAAmB,EAAE,2BAA2B;AACpE,iBAAiB;AACjB,aAAa,CAAC;AACd,YAAY;AACZ,QAAQ;AACR;AACA;AACA,QAAQ,IAAI,cAAc,EAAE;AAC5B,YAAY,MAAM,kBAAkB,GAAG,MAAM,CAAC,OAAO,CAAC,cAAc,CAAC,IAAI;AACzE;AACA,YAAY,IAAI,cAAc,CAAC,GAAG,KAAK,SAAS,EAAE;AAClD,gBAAgB,SAAS,CAAC,6BAA6B,CAAC,kBAAkB;AAC1E;AACA,gBAAgB,uBAAuB,CAAC;AACxC,gBAAgB,kBAAkB,CAAC,mBAAmB,GAAG,2BAA2B;AACpF,YAAY;AACZ,YAAY,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,sBAAsB,EAAE;AAC7D,gBAAgB,IAAI,EAAE,kBAAkB;AACxC,gBAAgB,GAAG,cAAc;AACjC,aAAa,CAAC;AACd,YAAY;AACZ,QAAQ;AACR;AACA;AACA,QAAQ,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,sBAAsB,CAAC;AACxD,IAAI,CAAC;AACL;AACA;AACA;AACA;AACA;AACA;AACA,IAAI,SAAS,GAAG;AAChB,QAAQ,OAAO,MAAM,CAAC,OAAO,CAAC,SAAS,EAAE;AACzC,IAAI,CAAC;AACL,CAAC;;"}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
/*
|
8
|
+
This file maps exports from `aws-amplify/push-notifications`. It provides access to the Push Notifications sub-category.
|
9
|
+
*/
|
10
|
+
tslib_1.__exportStar(require("@aws-amplify/notifications/push-notifications"), exports);
|
11
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/push-notifications/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\n/*\nThis file maps exports from `aws-amplify/push-notifications`. It provides access to the Push Notifications sub-category.\n*/\ntslib_1.__exportStar(require(\"@aws-amplify/notifications/push-notifications\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC;AACA;AACA;AACA,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,+CAA+C,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
/*
|
8
|
+
This file maps exports from `aws-amplify/push-notifications/pinpoint`.
|
9
|
+
It provides access to the Pinpoint provider of the PushNotification sub-category.
|
10
|
+
*/
|
11
|
+
tslib_1.__exportStar(require("@aws-amplify/notifications/push-notifications/pinpoint"), exports);
|
12
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../../src/push-notifications/pinpoint/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\n/*\nThis file maps exports from `aws-amplify/push-notifications/pinpoint`.\nIt provides access to the Pinpoint provider of the PushNotification sub-category.\n*/\ntslib_1.__exportStar(require(\"@aws-amplify/notifications/push-notifications/pinpoint\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC;AACA;AACA;AACA;AACA,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,wDAAwD,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
/*
|
8
|
+
This file maps exports from `aws-amplify/storage`.
|
9
|
+
It provides access to the default Storage provider and category utils.
|
10
|
+
*/
|
11
|
+
tslib_1.__exportStar(require("@aws-amplify/storage"), exports);
|
12
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/storage/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\n/*\nThis file maps exports from `aws-amplify/storage`.\nIt provides access to the default Storage provider and category utils.\n*/\ntslib_1.__exportStar(require(\"@aws-amplify/storage\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC;AACA;AACA;AACA;AACA,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,sBAAsB,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
/*
|
8
|
+
This file maps exports from `aws-amplify/storage/s3`. It provides access to S3 APIs.
|
9
|
+
*/
|
10
|
+
tslib_1.__exportStar(require("@aws-amplify/storage/s3"), exports);
|
11
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../../src/storage/s3/index.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\n/*\nThis file maps exports from `aws-amplify/storage/s3`. It provides access to S3 APIs.\n*/\ntslib_1.__exportStar(require(\"@aws-amplify/storage/s3\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC;AACA;AACA;AACA,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,yBAAyB,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
/*
|
8
|
+
This file maps exports from `aws-amplify/storage/s3/server`. It provides access to server context enabled S3 APIs.
|
9
|
+
*/
|
10
|
+
tslib_1.__exportStar(require("@aws-amplify/storage/s3/server"), exports);
|
11
|
+
//# sourceMappingURL=server.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"server.js","sources":["../../../../src/storage/s3/server.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\n/*\nThis file maps exports from `aws-amplify/storage/s3/server`. It provides access to server context enabled S3 APIs.\n*/\ntslib_1.__exportStar(require(\"@aws-amplify/storage/s3/server\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC;AACA;AACA;AACA,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,gCAAgC,CAAC,EAAE,OAAO,CAAC;;"}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
4
|
+
// SPDX-License-Identifier: Apache-2.0
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const tslib_1 = require("tslib");
|
7
|
+
/*
|
8
|
+
This file maps exports from `aws-amplify/storage/server`.
|
9
|
+
It provides access to the default server context enabled Storage provider and category utils.
|
10
|
+
*/
|
11
|
+
tslib_1.__exportStar(require("@aws-amplify/storage/server"), exports);
|
12
|
+
//# sourceMappingURL=server.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"server.js","sources":["../../../src/storage/server.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst tslib_1 = require(\"tslib\");\n/*\nThis file maps exports from `aws-amplify/storage/server`.\nIt provides access to the default server context enabled Storage provider and category utils.\n*/\ntslib_1.__exportStar(require(\"@aws-amplify/storage/server\"), exports);\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AAChC;AACA;AACA;AACA;AACA,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,6BAA6B,CAAC,EAAE,OAAO,CAAC;;"}
|