@aws-amplify/datastore 4.7.6-api-v6-models.b3abc9b.0 → 5.0.0
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/README.md +4 -0
- package/lib/authModeStrategies/defaultAuthStrategy.js +3 -2
- package/lib/authModeStrategies/index.js +3 -3
- package/lib/authModeStrategies/multiAuthStrategy.js +38 -53
- package/lib/datastore/datastore.d.ts +4 -5
- package/lib/datastore/datastore.js +929 -1284
- package/lib/index.d.ts +1 -1
- package/lib/index.js +26 -13
- package/lib/predicates/index.js +54 -69
- package/lib/predicates/next.d.ts +2 -2
- package/lib/predicates/next.js +313 -462
- package/lib/predicates/sort.js +24 -28
- package/lib/ssr/index.js +2 -2
- package/lib/storage/adapter/AsyncStorageAdapter.js +120 -342
- package/lib/storage/adapter/AsyncStorageDatabase.js +217 -421
- package/lib/storage/adapter/InMemoryStore.js +28 -51
- package/lib/storage/adapter/InMemoryStore.native.js +5 -3
- package/lib/storage/adapter/IndexedDBAdapter.js +466 -871
- package/lib/storage/adapter/StorageAdapterBase.js +180 -330
- package/lib/storage/adapter/getDefaultAdapter/index.js +8 -10
- package/lib/storage/adapter/getDefaultAdapter/index.native.js +5 -4
- package/lib/storage/adapter/index.js +0 -1
- package/lib/storage/relationship.js +177 -253
- package/lib/storage/storage.d.ts +4 -4
- package/lib/storage/storage.js +255 -433
- package/lib/sync/datastoreConnectivity.d.ts +2 -2
- package/lib/sync/datastoreConnectivity.js +29 -39
- package/lib/sync/datastoreReachability/index.d.ts +1 -3
- package/lib/sync/datastoreReachability/index.js +3 -3
- package/lib/sync/datastoreReachability/index.native.d.ts +1 -3
- package/lib/sync/datastoreReachability/index.native.js +4 -5
- package/lib/sync/index.d.ts +2 -2
- package/lib/sync/index.js +522 -827
- package/lib/sync/merger.js +31 -63
- package/lib/sync/outbox.js +148 -232
- package/lib/sync/processors/errorMaps.d.ts +1 -1
- package/lib/sync/processors/errorMaps.js +30 -47
- package/lib/sync/processors/mutation.d.ts +2 -2
- package/lib/sync/processors/mutation.js +343 -502
- package/lib/sync/processors/subscription.d.ts +5 -2
- package/lib/sync/processors/subscription.js +283 -437
- package/lib/sync/processors/sync.d.ts +2 -2
- package/lib/sync/processors/sync.js +279 -404
- package/lib/sync/utils.d.ts +5 -4
- package/lib/sync/utils.js +267 -320
- package/lib/tsconfig.tsbuildinfo +1 -0
- package/lib/types.d.ts +138 -140
- package/lib/types.js +17 -24
- package/lib/util.d.ts +9 -17
- package/lib/util.js +387 -511
- package/lib-esm/authModeStrategies/defaultAuthStrategy.js +1 -2
- package/lib-esm/authModeStrategies/index.js +0 -1
- package/lib-esm/authModeStrategies/multiAuthStrategy.js +35 -52
- package/lib-esm/datastore/datastore.d.ts +4 -5
- package/lib-esm/datastore/datastore.js +888 -1247
- package/lib-esm/index.d.ts +1 -1
- package/lib-esm/index.js +6 -7
- package/lib-esm/predicates/index.js +53 -70
- package/lib-esm/predicates/next.d.ts +2 -2
- package/lib-esm/predicates/next.js +306 -459
- package/lib-esm/predicates/sort.js +23 -28
- package/lib-esm/ssr/index.js +1 -2
- package/lib-esm/storage/adapter/AsyncStorageAdapter.js +111 -338
- package/lib-esm/storage/adapter/AsyncStorageDatabase.js +212 -416
- package/lib-esm/storage/adapter/InMemoryStore.js +27 -52
- package/lib-esm/storage/adapter/InMemoryStore.native.js +0 -1
- package/lib-esm/storage/adapter/IndexedDBAdapter.js +438 -866
- package/lib-esm/storage/adapter/StorageAdapterBase.js +173 -325
- package/lib-esm/storage/adapter/getDefaultAdapter/index.js +2 -6
- package/lib-esm/storage/adapter/getDefaultAdapter/index.native.js +1 -2
- package/lib-esm/storage/adapter/index.js +1 -1
- package/lib-esm/storage/relationship.js +173 -251
- package/lib-esm/storage/storage.d.ts +4 -4
- package/lib-esm/storage/storage.js +242 -424
- package/lib-esm/sync/datastoreConnectivity.d.ts +2 -2
- package/lib-esm/sync/datastoreConnectivity.js +28 -39
- package/lib-esm/sync/datastoreReachability/index.d.ts +1 -3
- package/lib-esm/sync/datastoreReachability/index.js +2 -3
- package/lib-esm/sync/datastoreReachability/index.native.d.ts +1 -3
- package/lib-esm/sync/datastoreReachability/index.native.js +3 -4
- package/lib-esm/sync/index.d.ts +2 -2
- package/lib-esm/sync/index.js +502 -812
- package/lib-esm/sync/merger.js +28 -61
- package/lib-esm/sync/outbox.js +143 -228
- package/lib-esm/sync/processors/errorMaps.d.ts +1 -1
- package/lib-esm/sync/processors/errorMaps.js +32 -50
- package/lib-esm/sync/processors/mutation.d.ts +2 -2
- package/lib-esm/sync/processors/mutation.js +329 -490
- package/lib-esm/sync/processors/subscription.d.ts +5 -2
- package/lib-esm/sync/processors/subscription.js +266 -421
- package/lib-esm/sync/processors/sync.d.ts +2 -2
- package/lib-esm/sync/processors/sync.js +271 -397
- package/lib-esm/sync/utils.d.ts +5 -4
- package/lib-esm/sync/utils.js +252 -307
- package/lib-esm/tsconfig.tsbuildinfo +1 -0
- package/lib-esm/types.d.ts +138 -140
- package/lib-esm/types.js +16 -25
- package/lib-esm/util.d.ts +9 -17
- package/lib-esm/util.js +335 -497
- package/package.json +31 -26
- package/src/authModeStrategies/multiAuthStrategy.ts +15 -12
- package/src/datastore/datastore.ts +36 -35
- package/src/predicates/sort.ts +3 -1
- package/src/storage/adapter/InMemoryStore.ts +1 -1
- package/src/storage/adapter/IndexedDBAdapter.ts +2 -2
- package/src/storage/adapter/StorageAdapterBase.ts +2 -2
- package/src/storage/adapter/getDefaultAdapter/index.ts +1 -4
- package/src/storage/storage.ts +29 -24
- package/src/sync/datastoreConnectivity.ts +6 -6
- package/src/sync/datastoreReachability/index.native.ts +5 -3
- package/src/sync/datastoreReachability/index.ts +1 -1
- package/src/sync/index.ts +79 -89
- package/src/sync/processors/errorMaps.ts +7 -7
- package/src/sync/processors/mutation.ts +19 -13
- package/src/sync/processors/subscription.ts +221 -295
- package/src/sync/processors/sync.ts +11 -8
- package/src/sync/utils.ts +30 -15
- package/src/types.ts +4 -8
- package/src/util.ts +46 -9
- package/lib/.tsbuildinfo +0 -3
- package/lib/authModeStrategies/defaultAuthStrategy.js.map +0 -1
- package/lib/authModeStrategies/index.js.map +0 -1
- package/lib/authModeStrategies/multiAuthStrategy.js.map +0 -1
- package/lib/datastore/datastore.js.map +0 -1
- package/lib/index.js.map +0 -1
- package/lib/predicates/index.js.map +0 -1
- package/lib/predicates/next.js.map +0 -1
- package/lib/predicates/sort.js.map +0 -1
- package/lib/ssr/index.js.map +0 -1
- package/lib/storage/adapter/AsyncStorageAdapter.js.map +0 -1
- package/lib/storage/adapter/AsyncStorageDatabase.js.map +0 -1
- package/lib/storage/adapter/InMemoryStore.js.map +0 -1
- package/lib/storage/adapter/InMemoryStore.native.js.map +0 -1
- package/lib/storage/adapter/IndexedDBAdapter.js.map +0 -1
- package/lib/storage/adapter/StorageAdapterBase.js.map +0 -1
- package/lib/storage/adapter/getDefaultAdapter/index.js.map +0 -1
- package/lib/storage/adapter/getDefaultAdapter/index.native.js.map +0 -1
- package/lib/storage/adapter/index.js.map +0 -1
- package/lib/storage/relationship.js.map +0 -1
- package/lib/storage/storage.js.map +0 -1
- package/lib/sync/datastoreConnectivity.js.map +0 -1
- package/lib/sync/datastoreReachability/index.js.map +0 -1
- package/lib/sync/datastoreReachability/index.native.js.map +0 -1
- package/lib/sync/index.js.map +0 -1
- package/lib/sync/merger.js.map +0 -1
- package/lib/sync/outbox.js.map +0 -1
- package/lib/sync/processors/errorMaps.js.map +0 -1
- package/lib/sync/processors/mutation.js.map +0 -1
- package/lib/sync/processors/subscription.js.map +0 -1
- package/lib/sync/processors/sync.js.map +0 -1
- package/lib/sync/utils.js.map +0 -1
- package/lib/types.js.map +0 -1
- package/lib/util.js.map +0 -1
- package/lib-esm/.tsbuildinfo +0 -3
- package/lib-esm/authModeStrategies/defaultAuthStrategy.js.map +0 -1
- package/lib-esm/authModeStrategies/index.js.map +0 -1
- package/lib-esm/authModeStrategies/multiAuthStrategy.js.map +0 -1
- package/lib-esm/datastore/datastore.js.map +0 -1
- package/lib-esm/index.js.map +0 -1
- package/lib-esm/predicates/index.js.map +0 -1
- package/lib-esm/predicates/next.js.map +0 -1
- package/lib-esm/predicates/sort.js.map +0 -1
- package/lib-esm/ssr/index.js.map +0 -1
- package/lib-esm/storage/adapter/AsyncStorageAdapter.js.map +0 -1
- package/lib-esm/storage/adapter/AsyncStorageDatabase.js.map +0 -1
- package/lib-esm/storage/adapter/InMemoryStore.js.map +0 -1
- package/lib-esm/storage/adapter/InMemoryStore.native.js.map +0 -1
- package/lib-esm/storage/adapter/IndexedDBAdapter.js.map +0 -1
- package/lib-esm/storage/adapter/StorageAdapterBase.js.map +0 -1
- package/lib-esm/storage/adapter/getDefaultAdapter/index.js.map +0 -1
- package/lib-esm/storage/adapter/getDefaultAdapter/index.native.js.map +0 -1
- package/lib-esm/storage/adapter/index.js.map +0 -1
- package/lib-esm/storage/relationship.js.map +0 -1
- package/lib-esm/storage/storage.js.map +0 -1
- package/lib-esm/sync/datastoreConnectivity.js.map +0 -1
- package/lib-esm/sync/datastoreReachability/index.js.map +0 -1
- package/lib-esm/sync/datastoreReachability/index.native.js.map +0 -1
- package/lib-esm/sync/index.js.map +0 -1
- package/lib-esm/sync/merger.js.map +0 -1
- package/lib-esm/sync/outbox.js.map +0 -1
- package/lib-esm/sync/processors/errorMaps.js.map +0 -1
- package/lib-esm/sync/processors/mutation.js.map +0 -1
- package/lib-esm/sync/processors/subscription.js.map +0 -1
- package/lib-esm/sync/processors/sync.js.map +0 -1
- package/lib-esm/sync/utils.js.map +0 -1
- package/lib-esm/types.js.map +0 -1
- package/lib-esm/util.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
> INTERNAL USE ONLY
|
|
2
|
+
|
|
3
|
+
This package contains the AWS Amplify DataStore category and is intended for internal use only. To integrate Amplify into your app, please use [aws-amplify](https://www.npmjs.com/package/aws-amplify).
|
|
4
|
+
|
|
1
5
|
# AWS Amplify DataStore Docs
|
|
2
6
|
|
|
3
7
|
[Amplify DataStore](https://docs.amplify.aws/lib/datastore/getting-started/q/platform/js/) provides a programming model for leveraging shared and distributed data without writing additional code for offline and online scenarios, which makes working with distributed, cross-user data just as simple as working with local-only data.
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.defaultAuthStrategy = void 0;
|
|
3
4
|
// Default behavior is to use the primary auth mode for an API,
|
|
4
5
|
// so we are returning an empty array so that DataStore will default
|
|
5
6
|
// to using the primary auth mode.
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
const defaultAuthStrategy = () => [];
|
|
8
|
+
exports.defaultAuthStrategy = defaultAuthStrategy;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.multiAuthStrategy = exports.defaultAuthStrategy = void 0;
|
|
3
4
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
4
5
|
// SPDX-License-Identifier: Apache-2.0
|
|
5
6
|
var defaultAuthStrategy_1 = require("./defaultAuthStrategy");
|
|
6
|
-
exports
|
|
7
|
+
Object.defineProperty(exports, "defaultAuthStrategy", { enumerable: true, get: function () { return defaultAuthStrategy_1.defaultAuthStrategy; } });
|
|
7
8
|
var multiAuthStrategy_1 = require("./multiAuthStrategy");
|
|
8
|
-
exports
|
|
9
|
-
//# sourceMappingURL=index.js.map
|
|
9
|
+
Object.defineProperty(exports, "multiAuthStrategy", { enumerable: true, get: function () { return multiAuthStrategy_1.multiAuthStrategy; } });
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
3
|
+
exports.multiAuthStrategy = void 0;
|
|
4
4
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
5
5
|
// SPDX-License-Identifier: Apache-2.0
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
var types_1 = require("../types");
|
|
6
|
+
const core_1 = require("@aws-amplify/core");
|
|
7
|
+
const types_1 = require("../types");
|
|
9
8
|
function getProviderFromRule(rule) {
|
|
10
9
|
// private with no provider means userPools
|
|
11
10
|
if (rule.allow === 'private' && !rule.provider) {
|
|
@@ -18,21 +17,21 @@ function getProviderFromRule(rule) {
|
|
|
18
17
|
return rule.provider;
|
|
19
18
|
}
|
|
20
19
|
function sortAuthRulesWithPriority(rules) {
|
|
21
|
-
|
|
20
|
+
const allowSortPriority = [
|
|
22
21
|
types_1.ModelAttributeAuthAllow.CUSTOM,
|
|
23
22
|
types_1.ModelAttributeAuthAllow.OWNER,
|
|
24
23
|
types_1.ModelAttributeAuthAllow.GROUPS,
|
|
25
24
|
types_1.ModelAttributeAuthAllow.PRIVATE,
|
|
26
25
|
types_1.ModelAttributeAuthAllow.PUBLIC,
|
|
27
26
|
];
|
|
28
|
-
|
|
27
|
+
const providerSortPriority = [
|
|
29
28
|
types_1.ModelAttributeAuthProvider.FUNCTION,
|
|
30
29
|
types_1.ModelAttributeAuthProvider.USER_POOLS,
|
|
31
30
|
types_1.ModelAttributeAuthProvider.OIDC,
|
|
32
31
|
types_1.ModelAttributeAuthProvider.IAM,
|
|
33
32
|
types_1.ModelAttributeAuthProvider.API_KEY,
|
|
34
33
|
];
|
|
35
|
-
return
|
|
34
|
+
return [...rules].sort((a, b) => {
|
|
36
35
|
if (a.allow === b.allow) {
|
|
37
36
|
return (providerSortPriority.indexOf(getProviderFromRule(a)) -
|
|
38
37
|
providerSortPriority.indexOf(getProviderFromRule(b)));
|
|
@@ -40,17 +39,16 @@ function sortAuthRulesWithPriority(rules) {
|
|
|
40
39
|
return (allowSortPriority.indexOf(a.allow) - allowSortPriority.indexOf(b.allow));
|
|
41
40
|
});
|
|
42
41
|
}
|
|
43
|
-
function getAuthRules(
|
|
44
|
-
var rules = _a.rules, currentUser = _a.currentUser;
|
|
42
|
+
function getAuthRules({ rules, currentUser, }) {
|
|
45
43
|
// Using Set to ensure uniqueness
|
|
46
|
-
|
|
47
|
-
rules.forEach(
|
|
44
|
+
const authModes = new Set();
|
|
45
|
+
rules.forEach(rule => {
|
|
48
46
|
switch (rule.allow) {
|
|
49
47
|
case types_1.ModelAttributeAuthAllow.CUSTOM:
|
|
50
48
|
// custom with no provider -> function
|
|
51
49
|
if (!rule.provider ||
|
|
52
50
|
rule.provider === types_1.ModelAttributeAuthProvider.FUNCTION) {
|
|
53
|
-
authModes.add(
|
|
51
|
+
authModes.add('lambda');
|
|
54
52
|
}
|
|
55
53
|
break;
|
|
56
54
|
case types_1.ModelAttributeAuthAllow.GROUPS:
|
|
@@ -58,10 +56,10 @@ function getAuthRules(_a) {
|
|
|
58
56
|
// We shouldn't attempt User Pool or OIDC if there isn't an authenticated user
|
|
59
57
|
if (currentUser) {
|
|
60
58
|
if (rule.provider === types_1.ModelAttributeAuthProvider.USER_POOLS) {
|
|
61
|
-
authModes.add(
|
|
59
|
+
authModes.add('userPool');
|
|
62
60
|
}
|
|
63
61
|
else if (rule.provider === types_1.ModelAttributeAuthProvider.OIDC) {
|
|
64
|
-
authModes.add(
|
|
62
|
+
authModes.add('oidc');
|
|
65
63
|
}
|
|
66
64
|
}
|
|
67
65
|
break;
|
|
@@ -72,22 +70,22 @@ function getAuthRules(_a) {
|
|
|
72
70
|
// private with no provider means userPools
|
|
73
71
|
if (!rule.provider ||
|
|
74
72
|
rule.provider === types_1.ModelAttributeAuthProvider.USER_POOLS) {
|
|
75
|
-
authModes.add(
|
|
73
|
+
authModes.add('userPool');
|
|
76
74
|
}
|
|
77
75
|
else if (rule.provider === types_1.ModelAttributeAuthProvider.IAM) {
|
|
78
|
-
authModes.add(
|
|
76
|
+
authModes.add('iam');
|
|
79
77
|
}
|
|
80
78
|
}
|
|
81
79
|
break;
|
|
82
80
|
}
|
|
83
81
|
case types_1.ModelAttributeAuthAllow.PUBLIC: {
|
|
84
82
|
if (rule.provider === types_1.ModelAttributeAuthProvider.IAM) {
|
|
85
|
-
authModes.add(
|
|
83
|
+
authModes.add('iam');
|
|
86
84
|
}
|
|
87
85
|
else if (!rule.provider ||
|
|
88
86
|
rule.provider === types_1.ModelAttributeAuthProvider.API_KEY) {
|
|
89
87
|
// public with no provider means apiKey
|
|
90
|
-
authModes.add(
|
|
88
|
+
authModes.add('apiKey');
|
|
91
89
|
}
|
|
92
90
|
break;
|
|
93
91
|
}
|
|
@@ -108,39 +106,26 @@ function getAuthRules(_a) {
|
|
|
108
106
|
* @param param0 The `{schema, modelName}` to inspect.
|
|
109
107
|
* @returns A sorted array of auth modes to attempt.
|
|
110
108
|
*/
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
attributes = schema.namespaces.user.models[modelName].attributes;
|
|
133
|
-
if (attributes) {
|
|
134
|
-
authAttribute = attributes.find(function (attr) { return attr.type === 'auth'; });
|
|
135
|
-
if ((_b = authAttribute === null || authAttribute === void 0 ? void 0 : authAttribute.properties) === null || _b === void 0 ? void 0 : _b.rules) {
|
|
136
|
-
sortedRules = sortAuthRulesWithPriority(authAttribute.properties.rules);
|
|
137
|
-
return [2 /*return*/, getAuthRules({ currentUser: currentUser, rules: sortedRules })];
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
return [2 /*return*/, []];
|
|
141
|
-
}
|
|
142
|
-
});
|
|
143
|
-
});
|
|
144
|
-
};
|
|
109
|
+
const multiAuthStrategy = (amplifyContext) => async ({ schema, modelName }) => {
|
|
110
|
+
let currentUser;
|
|
111
|
+
try {
|
|
112
|
+
const authSession = await (0, core_1.fetchAuthSession)();
|
|
113
|
+
if (authSession.tokens.accessToken) {
|
|
114
|
+
// the user is authenticated
|
|
115
|
+
currentUser = authSession;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
catch (e) {
|
|
119
|
+
// No current user
|
|
120
|
+
}
|
|
121
|
+
const { attributes } = schema.namespaces.user.models[modelName];
|
|
122
|
+
if (attributes) {
|
|
123
|
+
const authAttribute = attributes.find(attr => attr.type === 'auth');
|
|
124
|
+
if (authAttribute?.properties?.rules) {
|
|
125
|
+
const sortedRules = sortAuthRulesWithPriority(authAttribute.properties.rules);
|
|
126
|
+
return getAuthRules({ currentUser, rules: sortedRules });
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
return [];
|
|
145
130
|
};
|
|
146
|
-
|
|
131
|
+
exports.multiAuthStrategy = multiAuthStrategy;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import Observable from '
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
2
|
import { PredicateAll } from '../predicates';
|
|
3
|
-
import { ConflictHandler, DataStoreConfig,
|
|
3
|
+
import { ConflictHandler, DataStoreConfig, ProducerPaginationInput, PersistentModel, PersistentModelConstructor, Schema, SubscriptionMessage, DataStoreSnapshot, TypeConstructorMap, ErrorHandler, ObserveQueryOptions, PersistentModelMetaData, IdentifierFieldOrIdentifierObject, RecursiveModelPredicateExtender, ModelPredicateExtender } from '../types';
|
|
4
4
|
export declare let syncClasses: TypeConstructorMap;
|
|
5
5
|
/**
|
|
6
6
|
* Describes whether and to what a model is attached for lazy loading purposes.
|
|
@@ -41,8 +41,8 @@ export declare function attached<T extends PersistentModel | PersistentModel[]>(
|
|
|
41
41
|
*
|
|
42
42
|
* @param instance A model instance
|
|
43
43
|
*/
|
|
44
|
-
export declare const getAttachment: (instance:
|
|
45
|
-
declare const initSchema: (userSchema: Schema) =>
|
|
44
|
+
export declare const getAttachment: (instance: PersistentModel) => ModelAttachment;
|
|
45
|
+
declare const initSchema: (userSchema: Schema) => TypeConstructorMap;
|
|
46
46
|
/**
|
|
47
47
|
* Constructs a model and records it with its metadata in a weakset. Allows for
|
|
48
48
|
* the separate storage of core model fields and Amplify/DataStore metadata
|
|
@@ -92,7 +92,6 @@ export declare class AsyncCollection<T> implements AsyncIterable<T> {
|
|
|
92
92
|
}): Promise<T[]>;
|
|
93
93
|
}
|
|
94
94
|
declare class DataStore {
|
|
95
|
-
private Auth;
|
|
96
95
|
private InternalAPI;
|
|
97
96
|
private Cache;
|
|
98
97
|
private amplifyConfig;
|