@aws-amplify/datastore 3.12.12 → 3.12.13-ds-allow-applicable-data.6

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.
Files changed (131) hide show
  1. package/CHANGELOG.md +19 -114
  2. package/dist/aws-amplify-datastore.js +4815 -2572
  3. package/dist/aws-amplify-datastore.js.map +1 -1
  4. package/dist/aws-amplify-datastore.min.js +9 -9
  5. package/dist/aws-amplify-datastore.min.js.map +1 -1
  6. package/lib/authModeStrategies/multiAuthStrategy.d.ts +11 -0
  7. package/lib/authModeStrategies/multiAuthStrategy.js +11 -0
  8. package/lib/authModeStrategies/multiAuthStrategy.js.map +1 -1
  9. package/lib/datastore/datastore.d.ts +91 -17
  10. package/lib/datastore/datastore.js +535 -332
  11. package/lib/datastore/datastore.js.map +1 -1
  12. package/lib/index.d.ts +3 -19
  13. package/lib/predicates/index.d.ts +3 -2
  14. package/lib/predicates/index.js +12 -2
  15. package/lib/predicates/index.js.map +1 -1
  16. package/lib/storage/adapter/AsyncStorageAdapter.d.ts +4 -3
  17. package/lib/storage/adapter/AsyncStorageAdapter.js +354 -203
  18. package/lib/storage/adapter/AsyncStorageAdapter.js.map +1 -1
  19. package/lib/storage/adapter/AsyncStorageDatabase.d.ts +14 -4
  20. package/lib/storage/adapter/AsyncStorageDatabase.js +65 -28
  21. package/lib/storage/adapter/AsyncStorageDatabase.js.map +1 -1
  22. package/lib/storage/adapter/IndexedDBAdapter.d.ts +5 -4
  23. package/lib/storage/adapter/IndexedDBAdapter.js +389 -267
  24. package/lib/storage/adapter/IndexedDBAdapter.js.map +1 -1
  25. package/lib/storage/adapter/index.d.ts +1 -1
  26. package/lib/storage/storage.d.ts +1 -1
  27. package/lib/storage/storage.js +93 -28
  28. package/lib/storage/storage.js.map +1 -1
  29. package/lib/sync/datastoreConnectivity.d.ts +1 -0
  30. package/lib/sync/datastoreConnectivity.js +45 -0
  31. package/lib/sync/datastoreConnectivity.js.map +1 -1
  32. package/lib/sync/index.d.ts +27 -4
  33. package/lib/sync/index.js +354 -210
  34. package/lib/sync/index.js.map +1 -1
  35. package/lib/sync/merger.d.ts +9 -3
  36. package/lib/sync/merger.js +13 -6
  37. package/lib/sync/merger.js.map +1 -1
  38. package/lib/sync/outbox.d.ts +2 -2
  39. package/lib/sync/outbox.js +77 -71
  40. package/lib/sync/outbox.js.map +1 -1
  41. package/lib/sync/processors/mutation.d.ts +2 -0
  42. package/lib/sync/processors/mutation.js +256 -200
  43. package/lib/sync/processors/mutation.js.map +1 -1
  44. package/lib/sync/processors/subscription.d.ts +2 -0
  45. package/lib/sync/processors/subscription.js +212 -171
  46. package/lib/sync/processors/subscription.js.map +1 -1
  47. package/lib/sync/processors/sync.d.ts +2 -1
  48. package/lib/sync/processors/sync.js +88 -67
  49. package/lib/sync/processors/sync.js.map +1 -1
  50. package/lib/sync/utils.d.ts +3 -2
  51. package/lib/sync/utils.js +59 -8
  52. package/lib/sync/utils.js.map +1 -1
  53. package/lib/types.d.ts +64 -25
  54. package/lib/types.js +10 -1
  55. package/lib/types.js.map +1 -1
  56. package/lib/util.d.ts +56 -24
  57. package/lib/util.js +334 -170
  58. package/lib/util.js.map +1 -1
  59. package/lib-esm/authModeStrategies/multiAuthStrategy.d.ts +11 -0
  60. package/lib-esm/authModeStrategies/multiAuthStrategy.js +11 -0
  61. package/lib-esm/authModeStrategies/multiAuthStrategy.js.map +1 -1
  62. package/lib-esm/datastore/datastore.d.ts +91 -17
  63. package/lib-esm/datastore/datastore.js +537 -334
  64. package/lib-esm/datastore/datastore.js.map +1 -1
  65. package/lib-esm/index.d.ts +3 -19
  66. package/lib-esm/predicates/index.d.ts +3 -2
  67. package/lib-esm/predicates/index.js +13 -3
  68. package/lib-esm/predicates/index.js.map +1 -1
  69. package/lib-esm/storage/adapter/AsyncStorageAdapter.d.ts +4 -3
  70. package/lib-esm/storage/adapter/AsyncStorageAdapter.js +355 -204
  71. package/lib-esm/storage/adapter/AsyncStorageAdapter.js.map +1 -1
  72. package/lib-esm/storage/adapter/AsyncStorageDatabase.d.ts +14 -4
  73. package/lib-esm/storage/adapter/AsyncStorageDatabase.js +66 -29
  74. package/lib-esm/storage/adapter/AsyncStorageDatabase.js.map +1 -1
  75. package/lib-esm/storage/adapter/IndexedDBAdapter.d.ts +5 -4
  76. package/lib-esm/storage/adapter/IndexedDBAdapter.js +390 -268
  77. package/lib-esm/storage/adapter/IndexedDBAdapter.js.map +1 -1
  78. package/lib-esm/storage/adapter/index.d.ts +1 -1
  79. package/lib-esm/storage/storage.d.ts +1 -1
  80. package/lib-esm/storage/storage.js +93 -28
  81. package/lib-esm/storage/storage.js.map +1 -1
  82. package/lib-esm/sync/datastoreConnectivity.d.ts +1 -0
  83. package/lib-esm/sync/datastoreConnectivity.js +45 -0
  84. package/lib-esm/sync/datastoreConnectivity.js.map +1 -1
  85. package/lib-esm/sync/index.d.ts +27 -4
  86. package/lib-esm/sync/index.js +357 -213
  87. package/lib-esm/sync/index.js.map +1 -1
  88. package/lib-esm/sync/merger.d.ts +9 -3
  89. package/lib-esm/sync/merger.js +13 -6
  90. package/lib-esm/sync/merger.js.map +1 -1
  91. package/lib-esm/sync/outbox.d.ts +2 -2
  92. package/lib-esm/sync/outbox.js +78 -72
  93. package/lib-esm/sync/outbox.js.map +1 -1
  94. package/lib-esm/sync/processors/mutation.d.ts +2 -0
  95. package/lib-esm/sync/processors/mutation.js +258 -202
  96. package/lib-esm/sync/processors/mutation.js.map +1 -1
  97. package/lib-esm/sync/processors/subscription.d.ts +2 -0
  98. package/lib-esm/sync/processors/subscription.js +213 -172
  99. package/lib-esm/sync/processors/subscription.js.map +1 -1
  100. package/lib-esm/sync/processors/sync.d.ts +2 -1
  101. package/lib-esm/sync/processors/sync.js +89 -68
  102. package/lib-esm/sync/processors/sync.js.map +1 -1
  103. package/lib-esm/sync/utils.d.ts +3 -2
  104. package/lib-esm/sync/utils.js +60 -10
  105. package/lib-esm/sync/utils.js.map +1 -1
  106. package/lib-esm/types.d.ts +64 -25
  107. package/lib-esm/types.js +9 -2
  108. package/lib-esm/types.js.map +1 -1
  109. package/lib-esm/util.d.ts +56 -24
  110. package/lib-esm/util.js +334 -170
  111. package/lib-esm/util.js.map +1 -1
  112. package/not-tsconfig.json +32 -0
  113. package/package.json +7 -7
  114. package/src/authModeStrategies/multiAuthStrategy.ts +11 -0
  115. package/src/datastore/datastore.ts +672 -391
  116. package/src/predicates/index.ts +32 -10
  117. package/src/storage/adapter/AsyncStorageAdapter.ts +309 -93
  118. package/src/storage/adapter/AsyncStorageDatabase.ts +74 -26
  119. package/src/storage/adapter/IndexedDBAdapter.ts +319 -136
  120. package/src/storage/adapter/index.ts +1 -1
  121. package/src/storage/storage.ts +69 -22
  122. package/src/sync/datastoreConnectivity.ts +6 -0
  123. package/src/sync/index.ts +473 -353
  124. package/src/sync/merger.ts +20 -4
  125. package/src/sync/outbox.ts +22 -9
  126. package/src/sync/processors/mutation.ts +194 -149
  127. package/src/sync/processors/subscription.ts +279 -246
  128. package/src/sync/processors/sync.ts +162 -138
  129. package/src/sync/utils.ts +67 -12
  130. package/src/types.ts +181 -29
  131. package/src/util.ts +415 -176
package/CHANGELOG.md CHANGED
@@ -7,216 +7,121 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
7
7
 
8
8
  **Note:** Version bump only for package @aws-amplify/datastore
9
9
 
10
-
11
-
12
-
13
-
14
10
  ## [3.12.11](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.12.10...@aws-amplify/datastore@3.12.11) (2022-09-20)
15
11
 
16
12
  **Note:** Version bump only for package @aws-amplify/datastore
17
13
 
18
-
19
-
20
-
21
-
22
14
  ## [3.12.10](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.12.9...@aws-amplify/datastore@3.12.10) (2022-09-08)
23
15
 
24
16
  **Note:** Version bump only for package @aws-amplify/datastore
25
17
 
26
-
27
-
28
-
29
-
30
18
  ## [3.12.9](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.12.8...@aws-amplify/datastore@3.12.9) (2022-09-01)
31
19
 
32
-
33
20
  ### Bug Fixes
34
21
 
35
- * **datastore:** clear before start with nextjs ([#10234](https://github.com/aws-amplify/amplify-js/issues/10234)) ([98dd9f2](https://github.com/aws-amplify/amplify-js/commit/98dd9f27fe798d4337201d082e9f65d785366f8b))
36
-
37
-
38
-
39
-
22
+ - **datastore:** clear before start with nextjs ([#10234](https://github.com/aws-amplify/amplify-js/issues/10234)) ([98dd9f2](https://github.com/aws-amplify/amplify-js/commit/98dd9f27fe798d4337201d082e9f65d785366f8b))
40
23
 
41
24
  ## [3.12.8](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.12.7...@aws-amplify/datastore@3.12.8) (2022-08-23)
42
25
 
43
26
  **Note:** Version bump only for package @aws-amplify/datastore
44
27
 
45
-
46
-
47
-
48
-
49
28
  ## [3.12.7](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.12.6...@aws-amplify/datastore@3.12.7) (2022-08-18)
50
29
 
51
30
  **Note:** Version bump only for package @aws-amplify/datastore
52
31
 
53
-
54
-
55
-
56
-
57
32
  ## [3.12.6](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.12.5...@aws-amplify/datastore@3.12.6) (2022-08-16)
58
33
 
59
-
60
34
  ### Bug Fixes
61
35
 
62
- * **datastore:** make di context fields private ([#10162](https://github.com/aws-amplify/amplify-js/issues/10162)) ([88a9ec9](https://github.com/aws-amplify/amplify-js/commit/88a9ec97fca2eb19c9cc9496b8b7d25b75f02073))
63
-
64
-
65
-
66
-
36
+ - **datastore:** make di context fields private ([#10162](https://github.com/aws-amplify/amplify-js/issues/10162)) ([88a9ec9](https://github.com/aws-amplify/amplify-js/commit/88a9ec97fca2eb19c9cc9496b8b7d25b75f02073))
67
37
 
68
38
  ## [3.12.5](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.12.4...@aws-amplify/datastore@3.12.5) (2022-08-01)
69
39
 
70
40
  **Note:** Version bump only for package @aws-amplify/datastore
71
41
 
72
-
73
-
74
-
75
-
76
42
  ## [3.12.4](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.12.3...@aws-amplify/datastore@3.12.4) (2022-07-28)
77
43
 
78
44
  **Note:** Version bump only for package @aws-amplify/datastore
79
45
 
80
-
81
-
82
-
83
-
84
46
  ## [3.12.3](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.12.2...@aws-amplify/datastore@3.12.3) (2022-07-21)
85
47
 
86
-
87
48
  ### Bug Fixes
88
49
 
89
- * preserve ssr context when using DataStore ([#10088](https://github.com/aws-amplify/amplify-js/issues/10088)) ([a10d920](https://github.com/aws-amplify/amplify-js/commit/a10d920f7fb6199539fb8d9cec2cb4426dbfd47b))
90
-
91
-
92
-
93
-
50
+ - preserve ssr context when using DataStore ([#10088](https://github.com/aws-amplify/amplify-js/issues/10088)) ([a10d920](https://github.com/aws-amplify/amplify-js/commit/a10d920f7fb6199539fb8d9cec2cb4426dbfd47b))
94
51
 
95
52
  ## [3.12.2](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.12.1...@aws-amplify/datastore@3.12.2) (2022-07-07)
96
53
 
97
-
98
54
  ### Bug Fixes
99
55
 
100
- * decrease error handler verbosity on self recovering errors ([#10030](https://github.com/aws-amplify/amplify-js/issues/10030)) ([fb1f02c](https://github.com/aws-amplify/amplify-js/commit/fb1f02cfa914b81fe0411e8f4d654c69aed22385))
101
-
102
-
103
-
104
-
56
+ - decrease error handler verbosity on self recovering errors ([#10030](https://github.com/aws-amplify/amplify-js/issues/10030)) ([fb1f02c](https://github.com/aws-amplify/amplify-js/commit/fb1f02cfa914b81fe0411e8f4d654c69aed22385))
105
57
 
106
58
  ## [3.12.1](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.12.0...@aws-amplify/datastore@3.12.1) (2022-06-18)
107
59
 
108
-
109
60
  ### Bug Fixes
110
61
 
111
- * decrease error handler verbosity on self recovering errors ([#9987](https://github.com/aws-amplify/amplify-js/issues/9987)) ([67ccf09](https://github.com/aws-amplify/amplify-js/commit/67ccf09a93221a06d4560300cfd67fdd9efeda71))
112
-
62
+ - decrease error handler verbosity on self recovering errors ([#9987](https://github.com/aws-amplify/amplify-js/issues/9987)) ([67ccf09](https://github.com/aws-amplify/amplify-js/commit/67ccf09a93221a06d4560300cfd67fdd9efeda71))
113
63
 
114
64
  ### Reverts
115
65
 
116
- * Revert "fix: decrease error handler verbosity on self recovering errors (#9987)" (#10004) ([eb73ad7](https://github.com/aws-amplify/amplify-js/commit/eb73ad70b3eee0632eaed4bae00f1d2179ae45b5)), closes [#9987](https://github.com/aws-amplify/amplify-js/issues/9987) [#10004](https://github.com/aws-amplify/amplify-js/issues/10004)
117
-
118
-
119
-
120
-
66
+ - Revert "fix: decrease error handler verbosity on self recovering errors (#9987)" (#10004) ([eb73ad7](https://github.com/aws-amplify/amplify-js/commit/eb73ad70b3eee0632eaed4bae00f1d2179ae45b5)), closes [#9987](https://github.com/aws-amplify/amplify-js/issues/9987) [#10004](https://github.com/aws-amplify/amplify-js/issues/10004)
121
67
 
122
68
  # [3.12.0](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.11.3...@aws-amplify/datastore@3.12.0) (2022-06-15)
123
69
 
124
-
125
70
  ### Bug Fixes
126
71
 
127
- * **@aws-amplify/datastore:** adds missing fields to items sent through observe/observeQuery ([#9973](https://github.com/aws-amplify/amplify-js/issues/9973)) ([ca2a11b](https://github.com/aws-amplify/amplify-js/commit/ca2a11b5bc987e71ce3344058a4886bf067cb17b))
128
- * merge patches for consecutive copyOf ([#9936](https://github.com/aws-amplify/amplify-js/issues/9936)) ([d5dd9cb](https://github.com/aws-amplify/amplify-js/commit/d5dd9cb5bf46131fb046cfe55e4899444f9d789e))
129
- * **@aws-amplify/datastore:** fixes observeQuery not removing newly-filtered items from snapshot ([#9879](https://github.com/aws-amplify/amplify-js/issues/9879)) ([d1356b1](https://github.com/aws-amplify/amplify-js/commit/d1356b1e498eb71a4902892afbb41f6ff88abb6f))
130
-
72
+ - **@aws-amplify/datastore:** adds missing fields to items sent through observe/observeQuery ([#9973](https://github.com/aws-amplify/amplify-js/issues/9973)) ([ca2a11b](https://github.com/aws-amplify/amplify-js/commit/ca2a11b5bc987e71ce3344058a4886bf067cb17b))
73
+ - merge patches for consecutive copyOf ([#9936](https://github.com/aws-amplify/amplify-js/issues/9936)) ([d5dd9cb](https://github.com/aws-amplify/amplify-js/commit/d5dd9cb5bf46131fb046cfe55e4899444f9d789e))
74
+ - **@aws-amplify/datastore:** fixes observeQuery not removing newly-filtered items from snapshot ([#9879](https://github.com/aws-amplify/amplify-js/issues/9879)) ([d1356b1](https://github.com/aws-amplify/amplify-js/commit/d1356b1e498eb71a4902892afbb41f6ff88abb6f))
131
75
 
132
76
  ### Features
133
77
 
134
- * **datastore:** add error maps for error handler ([#9918](https://github.com/aws-amplify/amplify-js/issues/9918)) ([3a27096](https://github.com/aws-amplify/amplify-js/commit/3a270969b6e097eeed73368091ace191cbc05511))
135
-
136
-
137
-
138
-
78
+ - **datastore:** add error maps for error handler ([#9918](https://github.com/aws-amplify/amplify-js/issues/9918)) ([3a27096](https://github.com/aws-amplify/amplify-js/commit/3a270969b6e097eeed73368091ace191cbc05511))
139
79
 
140
80
  ## [3.11.3](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.11.2...@aws-amplify/datastore@3.11.3) (2022-05-24)
141
81
 
142
82
  **Note:** Version bump only for package @aws-amplify/datastore
143
83
 
144
-
145
-
146
-
147
-
148
84
  ## [3.11.2](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.11.1...@aws-amplify/datastore@3.11.2) (2022-05-23)
149
85
 
150
-
151
86
  ### Bug Fixes
152
87
 
153
- * **@aws-amplify/datastore-storage-adapter:** remove extra, invalid sqlite mutations again ([#9921](https://github.com/aws-amplify/amplify-js/issues/9921)) ([00923cf](https://github.com/aws-amplify/amplify-js/commit/00923cfaeafcee97a0f54cc6aa04724f7155e75d))
154
-
155
-
156
-
157
-
88
+ - **@aws-amplify/datastore-storage-adapter:** remove extra, invalid sqlite mutations again ([#9921](https://github.com/aws-amplify/amplify-js/issues/9921)) ([00923cf](https://github.com/aws-amplify/amplify-js/commit/00923cfaeafcee97a0f54cc6aa04724f7155e75d))
158
89
 
159
90
  ## [3.11.1](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.11.0...@aws-amplify/datastore@3.11.1) (2022-05-12)
160
91
 
161
-
162
92
  ### Bug Fixes
163
93
 
164
- * add error for when schema is not initialized ([#9874](https://github.com/aws-amplify/amplify-js/issues/9874)) ([a63f0ee](https://github.com/aws-amplify/amplify-js/commit/a63f0eec70b96dba2d220f3eeb0c799af8622b5c))
165
-
166
-
167
-
168
-
94
+ - add error for when schema is not initialized ([#9874](https://github.com/aws-amplify/amplify-js/issues/9874)) ([a63f0ee](https://github.com/aws-amplify/amplify-js/commit/a63f0eec70b96dba2d220f3eeb0c799af8622b5c))
169
95
 
170
96
  # [3.11.0](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.10.0...@aws-amplify/datastore@3.11.0) (2022-05-03)
171
97
 
172
-
173
98
  ### Bug Fixes
174
99
 
175
- * add newly created models to IDB during migration ([#9754](https://github.com/aws-amplify/amplify-js/issues/9754)) ([58d7e00](https://github.com/aws-amplify/amplify-js/commit/58d7e003463e1cabe3a4bb5601a2cdf11736150d))
176
- * **@aws-amplify/datastore-storage-adapter:** SQLite adapter NULL handling and mutation queue management bugs ([#9813](https://github.com/aws-amplify/amplify-js/issues/9813)) ([fe691fd](https://github.com/aws-amplify/amplify-js/commit/fe691fd4f67adc6ac973dd12ca056563d0720d69))
177
-
100
+ - add newly created models to IDB during migration ([#9754](https://github.com/aws-amplify/amplify-js/issues/9754)) ([58d7e00](https://github.com/aws-amplify/amplify-js/commit/58d7e003463e1cabe3a4bb5601a2cdf11736150d))
101
+ - **@aws-amplify/datastore-storage-adapter:** SQLite adapter NULL handling and mutation queue management bugs ([#9813](https://github.com/aws-amplify/amplify-js/issues/9813)) ([fe691fd](https://github.com/aws-amplify/amplify-js/commit/fe691fd4f67adc6ac973dd12ca056563d0720d69))
178
102
 
179
103
  ### Features
180
104
 
181
- * clear DataStore without first starting ([#9768](https://github.com/aws-amplify/amplify-js/issues/9768)) ([38bdabd](https://github.com/aws-amplify/amplify-js/commit/38bdabd5408e03595a90d673bbffd963cf432daa))
182
- * rework error handler ([#9861](https://github.com/aws-amplify/amplify-js/issues/9861)) ([6ae8d10](https://github.com/aws-amplify/amplify-js/commit/6ae8d10569abf24559436a46e1723825e6472489))
183
-
184
-
185
-
186
-
105
+ - clear DataStore without first starting ([#9768](https://github.com/aws-amplify/amplify-js/issues/9768)) ([38bdabd](https://github.com/aws-amplify/amplify-js/commit/38bdabd5408e03595a90d673bbffd963cf432daa))
106
+ - rework error handler ([#9861](https://github.com/aws-amplify/amplify-js/issues/9861)) ([6ae8d10](https://github.com/aws-amplify/amplify-js/commit/6ae8d10569abf24559436a46e1723825e6472489))
187
107
 
188
108
  # [3.10.0](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.9.0...@aws-amplify/datastore@3.10.0) (2022-04-14)
189
109
 
190
-
191
110
  ### Features
192
111
 
193
- * **data:** Datastore Docs ([#9753](https://github.com/aws-amplify/amplify-js/issues/9753)) ([4eb824f](https://github.com/aws-amplify/amplify-js/commit/4eb824f168df408469557e6ccc60edfee99953c2))
194
-
195
-
196
-
197
-
112
+ - **data:** Datastore Docs ([#9753](https://github.com/aws-amplify/amplify-js/issues/9753)) ([4eb824f](https://github.com/aws-amplify/amplify-js/commit/4eb824f168df408469557e6ccc60edfee99953c2))
198
113
 
199
114
  # [3.9.0](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.8.0...@aws-amplify/datastore@3.9.0) (2022-04-04)
200
115
 
201
-
202
116
  ### Features
203
117
 
204
- * update DataStore observe / observeQuery to return all fields in local update snapshot ([#9556](https://github.com/aws-amplify/amplify-js/issues/9556)) ([40ee89b](https://github.com/aws-amplify/amplify-js/commit/40ee89b828e859bfaadea2269cce96562ab6c90a))
205
-
206
-
207
-
208
-
118
+ - update DataStore observe / observeQuery to return all fields in local update snapshot ([#9556](https://github.com/aws-amplify/amplify-js/issues/9556)) ([40ee89b](https://github.com/aws-amplify/amplify-js/commit/40ee89b828e859bfaadea2269cce96562ab6c90a))
209
119
 
210
120
  # [3.8.0](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.7.9...@aws-amplify/datastore@3.8.0) (2022-03-28)
211
121
 
212
-
213
122
  ### Features
214
123
 
215
- * PubSub Add Options objects for all Providers and fix: Spelling error and deprecation of old exports ([#9683](https://github.com/aws-amplify/amplify-js/issues/9683)) ([b535af2](https://github.com/aws-amplify/amplify-js/commit/b535af2133b5460c6e8e2fcfd89e1fe235872c27))
216
-
217
-
218
-
219
-
124
+ - PubSub Add Options objects for all Providers and fix: Spelling error and deprecation of old exports ([#9683](https://github.com/aws-amplify/amplify-js/issues/9683)) ([b535af2](https://github.com/aws-amplify/amplify-js/commit/b535af2133b5460c6e8e2fcfd89e1fe235872c27))
220
125
 
221
126
  ## [3.7.9](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.7.8...@aws-amplify/datastore@3.7.9) (2022-03-22)
222
127