entropic-bond 1.50.0 → 1.50.1
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/lib/auth/auth-mock.d.ts +22 -0
- package/lib/auth/auth-mock.spec.d.ts +1 -0
- package/lib/auth/auth.d.ts +131 -0
- package/lib/auth/user-auth-types.d.ts +19 -0
- package/lib/cloud-functions/cloud-functions-mock.d.ts +11 -0
- package/lib/cloud-functions/cloud-functions-mock.spec.d.ts +1 -0
- package/lib/cloud-functions/cloud-functions.d.ts +19 -0
- package/lib/cloud-storage/cloud-storage.d.ts +24 -0
- package/lib/cloud-storage/cloud-storage.spec.d.ts +1 -0
- package/lib/cloud-storage/mock-cloud-storage.d.ts +20 -0
- package/lib/cloud-storage/stored-file.d.ts +39 -0
- package/lib/entropic-bond.js +1667 -0
- package/lib/entropic-bond.umd.cjs +7 -0
- package/lib/index.d.ts +19 -0
- package/lib/observable/observable.d.ts +52 -0
- package/lib/observable/observable.spec.d.ts +1 -0
- package/lib/persistent/entropic-component.d.ts +76 -0
- package/lib/persistent/entropic-component.spec.d.ts +1 -0
- package/lib/persistent/persistent.d.ts +281 -0
- package/lib/persistent/persistent.spec.d.ts +67 -0
- package/lib/server-auth/server-auth-mock.d.ts +12 -0
- package/lib/server-auth/server-auth-mock.spec.d.ts +1 -0
- package/lib/server-auth/server-auth.d.ts +24 -0
- package/lib/store/data-source.d.ts +137 -0
- package/lib/store/json-data-source.d.ts +68 -0
- package/lib/store/json-data-source.spec.d.ts +1 -0
- package/lib/store/mocks/test-user.d.ts +49 -0
- package/lib/store/model.d.ts +238 -0
- package/lib/store/model.spec.d.ts +1 -0
- package/lib/store/store.d.ts +62 -0
- package/lib/store/store.spec.d.ts +1 -0
- package/lib/types/utility-types.d.ts +45 -0
- package/lib/types/utility-types.spec.d.ts +1 -0
- package/lib/utils/test-utils/test-person.d.ts +33 -0
- package/{src/utils/utils.ts → lib/utils/utils.d.ts} +10 -34
- package/lib/utils/utils.spec.d.ts +1 -0
- package/package.json +4 -1
- package/.github/workflows/release.yml +0 -26
- package/CHANGELOG.md +0 -1151
- package/docs/.nojekyll +0 -1
- package/docs/README.md +0 -94
- package/docs/classes/Auth.md +0 -391
- package/docs/classes/AuthMock.md +0 -278
- package/docs/classes/AuthService.md +0 -188
- package/docs/classes/CloudFunctions.md +0 -123
- package/docs/classes/CloudFunctionsMock.md +0 -97
- package/docs/classes/CloudStorage.md +0 -215
- package/docs/classes/DataSource.md +0 -248
- package/docs/classes/EntropicComponent.md +0 -666
- package/docs/classes/JsonDataSource.md +0 -328
- package/docs/classes/MockCloudStorage.md +0 -279
- package/docs/classes/Model.md +0 -274
- package/docs/classes/Observable.md +0 -120
- package/docs/classes/Persistent.md +0 -420
- package/docs/classes/ServerAuth.md +0 -211
- package/docs/classes/ServerAuthMock.md +0 -176
- package/docs/classes/ServerAuthService.md +0 -130
- package/docs/classes/Store.md +0 -218
- package/docs/classes/StoredFile.md +0 -636
- package/docs/enums/StoredFileEvent.md +0 -41
- package/docs/interfaces/AuthError.md +0 -30
- package/docs/interfaces/CloudFunctionsService.md +0 -69
- package/docs/interfaces/Collection.md +0 -13
- package/docs/interfaces/CustomCredentials.md +0 -7
- package/docs/interfaces/DocumentReference.md +0 -49
- package/docs/interfaces/JsonRawData.md +0 -7
- package/docs/interfaces/SignData.md +0 -63
- package/docs/interfaces/StoreParams.md +0 -52
- package/docs/interfaces/StoredFileChange.md +0 -41
- package/docs/interfaces/UploadControl.md +0 -90
- package/docs/interfaces/UserCredentials.md +0 -113
- package/docs/interfaces/Values.md +0 -17
- package/docs/modules.md +0 -1273
- package/src/auth/auth-mock.spec.ts +0 -168
- package/src/auth/auth-mock.ts +0 -129
- package/src/auth/auth.ts +0 -185
- package/src/auth/user-auth-types.ts +0 -21
- package/src/cloud-functions/cloud-functions-mock.spec.ts +0 -136
- package/src/cloud-functions/cloud-functions-mock.ts +0 -23
- package/src/cloud-functions/cloud-functions.ts +0 -83
- package/src/cloud-storage/cloud-storage.spec.ts +0 -207
- package/src/cloud-storage/cloud-storage.ts +0 -60
- package/src/cloud-storage/mock-cloud-storage.ts +0 -72
- package/src/cloud-storage/stored-file.ts +0 -102
- package/src/index.ts +0 -19
- package/src/observable/observable.spec.ts +0 -105
- package/src/observable/observable.ts +0 -67
- package/src/persistent/entropic-component.spec.ts +0 -143
- package/src/persistent/entropic-component.ts +0 -135
- package/src/persistent/persistent.spec.ts +0 -828
- package/src/persistent/persistent.ts +0 -650
- package/src/server-auth/server-auth-mock.spec.ts +0 -53
- package/src/server-auth/server-auth-mock.ts +0 -45
- package/src/server-auth/server-auth.ts +0 -49
- package/src/store/data-source.ts +0 -186
- package/src/store/json-data-source.spec.ts +0 -100
- package/src/store/json-data-source.ts +0 -256
- package/src/store/mocks/mock-data.json +0 -155
- package/src/store/mocks/test-user.ts +0 -122
- package/src/store/model.spec.ts +0 -659
- package/src/store/model.ts +0 -462
- package/src/store/store.spec.ts +0 -30
- package/src/store/store.ts +0 -113
- package/src/types/utility-types.spec.ts +0 -117
- package/src/types/utility-types.ts +0 -116
- package/src/utils/test-utils/test-person.ts +0 -44
- package/src/utils/utils.spec.ts +0 -95
- package/tsconfig-build.json +0 -7
- package/tsconfig-cjs.json +0 -9
- package/tsconfig.json +0 -33
- package/vite.config.ts +0 -22
package/CHANGELOG.md
DELETED
|
@@ -1,1151 +0,0 @@
|
|
|
1
|
-
# [1.50.0](https://github.com/entropic-bond/entropic-bond/compare/v1.49.0...v1.50.0) (2024-02-07)
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Bug Fixes
|
|
5
|
-
|
|
6
|
-
* outdir ([fa27208](https://github.com/entropic-bond/entropic-bond/commit/fa2720865002d25ca284ad079343a786e393c8af))
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
### Features
|
|
10
|
-
|
|
11
|
-
* esm and cjs ([9b79d7d](https://github.com/entropic-bond/entropic-bond/commit/9b79d7dbdf6747ed616d729151d4dc9f56127e00))
|
|
12
|
-
|
|
13
|
-
# [1.49.0](https://github.com/entropic-bond/entropic-bond/compare/v1.48.1...v1.49.0) (2024-02-01)
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
### Features
|
|
17
|
-
|
|
18
|
-
* refresh token ([d3cabc7](https://github.com/entropic-bond/entropic-bond/commit/d3cabc75d904a886b986f2f4bfe2879294a77ace))
|
|
19
|
-
|
|
20
|
-
## [1.48.1](https://github.com/entropic-bond/entropic-bond/compare/v1.48.0...v1.48.1) (2023-11-21)
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
### Bug Fixes
|
|
24
|
-
|
|
25
|
-
* typed validator function ([91a6c0a](https://github.com/entropic-bond/entropic-bond/commit/91a6c0a7dc38540861df2966fe069b49a47c4f64))
|
|
26
|
-
|
|
27
|
-
# [1.48.0](https://github.com/entropic-bond/entropic-bond/compare/v1.47.0...v1.48.0) (2023-11-21)
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
### Features
|
|
31
|
-
|
|
32
|
-
* Add requiredWithValidator decorator to persistent ([bef5054](https://github.com/entropic-bond/entropic-bond/commit/bef5054dbdab307568f51e1c8030e3cc5ff38400))
|
|
33
|
-
|
|
34
|
-
# [1.47.0](https://github.com/entropic-bond/entropic-bond/compare/v1.46.2...v1.47.0) (2023-10-28)
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
### Features
|
|
38
|
-
|
|
39
|
-
* and and andDeepProp ([60dfe42](https://github.com/entropic-bond/entropic-bond/commit/60dfe4295288b9bd12116d0bb02a55e4627d8c1b))
|
|
40
|
-
|
|
41
|
-
## [1.46.2](https://github.com/entropic-bond/entropic-bond/compare/v1.46.1...v1.46.2) (2023-09-30)
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
### Bug Fixes
|
|
45
|
-
|
|
46
|
-
* export Query class ([139cca0](https://github.com/entropic-bond/entropic-bond/commit/139cca0c316508c19f8766027824d33eacc455c7))
|
|
47
|
-
|
|
48
|
-
## [1.46.1](https://github.com/entropic-bond/entropic-bond/compare/v1.46.0...v1.46.1) (2023-09-25)
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
### Bug Fixes
|
|
52
|
-
|
|
53
|
-
* npm upgrade ([0206584](https://github.com/entropic-bond/entropic-bond/commit/02065849ad8487e27dbb50bc9a8e0d32f70f63d6))
|
|
54
|
-
|
|
55
|
-
# [1.46.0](https://github.com/entropic-bond/entropic-bond/compare/v1.45.1...v1.46.0) (2023-09-25)
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
### Features
|
|
59
|
-
|
|
60
|
-
* required prop ([5570518](https://github.com/entropic-bond/entropic-bond/commit/55705186318544e032e2fdfea30ff15b0a9534b8))
|
|
61
|
-
|
|
62
|
-
## [1.45.1](https://github.com/entropic-bond/entropic-bond/compare/v1.45.0...v1.45.1) (2023-08-24)
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
### Bug Fixes
|
|
66
|
-
|
|
67
|
-
* simulateDelay in MockCloudStorage ([61f5422](https://github.com/entropic-bond/entropic-bond/commit/61f5422ab268a1e6fc1361c4baf96d6392bc91c8))
|
|
68
|
-
|
|
69
|
-
# [1.45.0](https://github.com/entropic-bond/entropic-bond/compare/v1.44.7...v1.45.0) (2023-08-17)
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
### Features
|
|
73
|
-
|
|
74
|
-
* mimeType ([c1a2a0f](https://github.com/entropic-bond/entropic-bond/commit/c1a2a0f7cd0414e483829d3465bba4fcaf080cc8))
|
|
75
|
-
|
|
76
|
-
## [1.44.7](https://github.com/entropic-bond/entropic-bond/compare/v1.44.6...v1.44.7) (2023-06-26)
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
### Bug Fixes
|
|
80
|
-
|
|
81
|
-
* bug affecting preprocessQueryObject ([91349b8](https://github.com/entropic-bond/entropic-bond/commit/91349b8e7f449aa8a3d81bdc693c625e285fc318))
|
|
82
|
-
|
|
83
|
-
## [1.44.6](https://github.com/entropic-bond/entropic-bond/compare/v1.44.5...v1.44.6) (2023-06-25)
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
### Bug Fixes
|
|
87
|
-
|
|
88
|
-
* contains operator ([7011f7a](https://github.com/entropic-bond/entropic-bond/commit/7011f7a741ac9a18570ba1e325589e0883842d35))
|
|
89
|
-
|
|
90
|
-
## [1.44.5](https://github.com/entropic-bond/entropic-bond/compare/v1.44.4...v1.44.5) (2023-06-25)
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
### Bug Fixes
|
|
94
|
-
|
|
95
|
-
* don't process arrays in property path determination ([c32c6fd](https://github.com/entropic-bond/entropic-bond/commit/c32c6fd2f77e822d33477d7066e191b9ee783412))
|
|
96
|
-
|
|
97
|
-
## [1.44.4](https://github.com/entropic-bond/entropic-bond/compare/v1.44.3...v1.44.4) (2023-06-25)
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
### Bug Fixes
|
|
101
|
-
|
|
102
|
-
* preprocessQueryObject ([6a7b5be](https://github.com/entropic-bond/entropic-bond/commit/6a7b5bea6685019d22d786b7bcce7c9f3bdb9c2f))
|
|
103
|
-
|
|
104
|
-
## [1.44.3](https://github.com/entropic-bond/entropic-bond/compare/v1.44.2...v1.44.3) (2023-06-23)
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
### Bug Fixes
|
|
108
|
-
|
|
109
|
-
* convert values from searchable array to strings ([83c1d94](https://github.com/entropic-bond/entropic-bond/commit/83c1d94b51a5c0a884331c59bed8052d59aa03e6))
|
|
110
|
-
|
|
111
|
-
## [1.44.2](https://github.com/entropic-bond/entropic-bond/compare/v1.44.1...v1.44.2) (2023-06-23)
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
### Bug Fixes
|
|
115
|
-
|
|
116
|
-
* rename array operators ([e1f2365](https://github.com/entropic-bond/entropic-bond/commit/e1f2365755d8f5e27f856cbf1dc5889d6ed9d8e6))
|
|
117
|
-
|
|
118
|
-
## [1.44.1](https://github.com/entropic-bond/entropic-bond/compare/v1.44.0...v1.44.1) (2023-06-23)
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
### Bug Fixes
|
|
122
|
-
|
|
123
|
-
* propInfo ([faa4a98](https://github.com/entropic-bond/entropic-bond/commit/faa4a98f5c47bdbb0904d3dd92a0df0b60fc511c))
|
|
124
|
-
|
|
125
|
-
# [1.44.0](https://github.com/entropic-bond/entropic-bond/compare/v1.43.1...v1.44.0) (2023-06-23)
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
### Features
|
|
129
|
-
|
|
130
|
-
* searchableArray decorator ([db6f45a](https://github.com/entropic-bond/entropic-bond/commit/db6f45a7a7185561128a452907d013fad8abb109))
|
|
131
|
-
|
|
132
|
-
## [1.43.1](https://github.com/entropic-bond/entropic-bond/compare/v1.43.0...v1.43.1) (2023-06-21)
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
### Bug Fixes
|
|
136
|
-
|
|
137
|
-
* missing operation.aggregate chain ([c073705](https://github.com/entropic-bond/entropic-bond/commit/c073705c510f33b02afae9b94dfd3769e051fd4f))
|
|
138
|
-
|
|
139
|
-
# [1.43.0](https://github.com/entropic-bond/entropic-bond/compare/v1.42.4...v1.43.0) (2023-06-20)
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
### Features
|
|
143
|
-
|
|
144
|
-
* or query ([887cef2](https://github.com/entropic-bond/entropic-bond/commit/887cef23369fe8f71f7764876eb2754b4c09cc1f))
|
|
145
|
-
|
|
146
|
-
## [1.42.4](https://github.com/entropic-bond/entropic-bond/compare/v1.42.3...v1.42.4) (2023-05-28)
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
### Bug Fixes
|
|
150
|
-
|
|
151
|
-
* add password to sendVerificationEmail ([f403c38](https://github.com/entropic-bond/entropic-bond/commit/f403c3844ba13662913e37fb8b8a8fe30432d17d))
|
|
152
|
-
|
|
153
|
-
## [1.42.3](https://github.com/entropic-bond/entropic-bond/compare/v1.42.2...v1.42.3) (2023-05-25)
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
### Bug Fixes
|
|
157
|
-
|
|
158
|
-
* typo ([671f529](https://github.com/entropic-bond/entropic-bond/commit/671f529f7cc9f06f88a7149898809b9c83540e63))
|
|
159
|
-
* typo in auth mock ([1536dd3](https://github.com/entropic-bond/entropic-bond/commit/1536dd3930ed3b010ce542837d0f2c68f7340927))
|
|
160
|
-
|
|
161
|
-
## [1.42.2](https://github.com/entropic-bond/entropic-bond/compare/v1.42.1...v1.42.2) (2023-05-25)
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
### Bug Fixes
|
|
165
|
-
|
|
166
|
-
* missed verification link param ([a17afa3](https://github.com/entropic-bond/entropic-bond/commit/a17afa319021febf408b77d141551ac26ae4fea0))
|
|
167
|
-
|
|
168
|
-
## [1.42.1](https://github.com/entropic-bond/entropic-bond/compare/v1.42.0...v1.42.1) (2023-05-25)
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
### Bug Fixes
|
|
172
|
-
|
|
173
|
-
* update npm ([062d0f8](https://github.com/entropic-bond/entropic-bond/commit/062d0f8cb69b9153e271fc965fbe8e34e0901ef6))
|
|
174
|
-
|
|
175
|
-
# [1.42.0](https://github.com/entropic-bond/entropic-bond/compare/v1.41.4...v1.42.0) (2023-05-25)
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
### Bug Fixes
|
|
179
|
-
|
|
180
|
-
* implement AuthMock resendEmailVerification ([e5440c5](https://github.com/entropic-bond/entropic-bond/commit/e5440c596d63cc6cdcdf834c000fa7f6214f10b5))
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
### Features
|
|
184
|
-
|
|
185
|
-
* resend verification email ([1281357](https://github.com/entropic-bond/entropic-bond/commit/1281357cefd545cd97117424068ebb7f8dbadae4))
|
|
186
|
-
|
|
187
|
-
## [1.41.4](https://github.com/entropic-bond/entropic-bond/compare/v1.41.3...v1.41.4) (2023-04-18)
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
### Bug Fixes
|
|
191
|
-
|
|
192
|
-
* create reference ([2d104f6](https://github.com/entropic-bond/entropic-bond/commit/2d104f68165a7af998f6bfb116d4e224420d02b4))
|
|
193
|
-
|
|
194
|
-
## [1.41.3](https://github.com/entropic-bond/entropic-bond/compare/v1.41.2...v1.41.3) (2023-04-10)
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
### Bug Fixes
|
|
198
|
-
|
|
199
|
-
* fromObject to accept arbitrary objects ([17ef567](https://github.com/entropic-bond/entropic-bond/commit/17ef5678c31d719f029ee5d130199148ccec03c1))
|
|
200
|
-
|
|
201
|
-
## [1.41.2](https://github.com/entropic-bond/entropic-bond/compare/v1.41.1...v1.41.2) (2023-04-09)
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
### Bug Fixes
|
|
205
|
-
|
|
206
|
-
* callback parameter to be only of type T ([f17fc4a](https://github.com/entropic-bond/entropic-bond/commit/f17fc4a066714526ada3cbf74262c1909ecb7ce7))
|
|
207
|
-
|
|
208
|
-
## [1.41.1](https://github.com/entropic-bond/entropic-bond/compare/v1.41.0...v1.41.1) (2023-04-09)
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
### Bug Fixes
|
|
212
|
-
|
|
213
|
-
* onAuthStateChange to accept undefined ([1d537c2](https://github.com/entropic-bond/entropic-bond/commit/1d537c200f6ece25ceaffdf76c29611f1a324cdd))
|
|
214
|
-
|
|
215
|
-
# [1.41.0](https://github.com/entropic-bond/entropic-bond/compare/v1.40.8...v1.41.0) (2023-04-09)
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
### Features
|
|
219
|
-
|
|
220
|
-
* strictNullCheck compliant ([7797aa1](https://github.com/entropic-bond/entropic-bond/commit/7797aa167190405fc551a71e200a34e5ec08fde0))
|
|
221
|
-
|
|
222
|
-
## [1.40.8](https://github.com/entropic-bond/entropic-bond/compare/v1.40.7...v1.40.8) (2023-04-06)
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
### Bug Fixes
|
|
226
|
-
|
|
227
|
-
* before and after serializer hooks for inner persistent objects ([08392a0](https://github.com/entropic-bond/entropic-bond/commit/08392a08563b221c680b3eb05bf20d8f8dc43ffd))
|
|
228
|
-
|
|
229
|
-
## [1.40.7](https://github.com/entropic-bond/entropic-bond/compare/v1.40.6...v1.40.7) (2023-04-06)
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
### Bug Fixes
|
|
233
|
-
|
|
234
|
-
* simulate error ([c3693c4](https://github.com/entropic-bond/entropic-bond/commit/c3693c44bb7054eb5321da31882266a789ca4bb5))
|
|
235
|
-
|
|
236
|
-
## [1.40.6](https://github.com/entropic-bond/entropic-bond/compare/v1.40.5...v1.40.6) (2023-04-06)
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
### Bug Fixes
|
|
240
|
-
|
|
241
|
-
* Observable to return the number of subscribers ([22b354d](https://github.com/entropic-bond/entropic-bond/commit/22b354d4985462c3218ed04b81a6d1c2573ba91f))
|
|
242
|
-
|
|
243
|
-
## [1.40.5](https://github.com/entropic-bond/entropic-bond/compare/v1.40.4...v1.40.5) (2023-04-02)
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
### Bug Fixes
|
|
247
|
-
|
|
248
|
-
* remove empty props from error message ([fc33524](https://github.com/entropic-bond/entropic-bond/commit/fc33524c812a6cc658e2d5f35533e5c6378a1838))
|
|
249
|
-
|
|
250
|
-
## [1.40.4](https://github.com/entropic-bond/entropic-bond/compare/v1.40.3...v1.40.4) (2023-04-02)
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
### Bug Fixes
|
|
254
|
-
|
|
255
|
-
* format error message ([75c8043](https://github.com/entropic-bond/entropic-bond/commit/75c8043f3397dffba54392e6db6f3c52568ea44f))
|
|
256
|
-
|
|
257
|
-
## [1.40.3](https://github.com/entropic-bond/entropic-bond/compare/v1.40.2...v1.40.3) (2023-04-02)
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
### Bug Fixes
|
|
261
|
-
|
|
262
|
-
* give more info on createInstance error ([d48b260](https://github.com/entropic-bond/entropic-bond/commit/d48b26091ad7cd5c59357988f7a85497ce8e3464))
|
|
263
|
-
|
|
264
|
-
## [1.40.2](https://github.com/entropic-bond/entropic-bond/compare/v1.40.1...v1.40.2) (2023-04-01)
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
### Bug Fixes
|
|
268
|
-
|
|
269
|
-
* remove JSON dependency ([849fe38](https://github.com/entropic-bond/entropic-bond/commit/849fe38c46a3513480e03621f74c59c2be9d7c84))
|
|
270
|
-
|
|
271
|
-
## [1.40.1](https://github.com/entropic-bond/entropic-bond/compare/v1.40.0...v1.40.1) (2023-03-25)
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
### Bug Fixes
|
|
275
|
-
|
|
276
|
-
* clone to return this ([c9efedb](https://github.com/entropic-bond/entropic-bond/commit/c9efedb5aa4f0c8aee49cbb2b89c6aabeb3b1a2e))
|
|
277
|
-
|
|
278
|
-
# [1.40.0](https://github.com/entropic-bond/entropic-bond/compare/v1.39.1...v1.40.0) (2023-03-22)
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
### Features
|
|
282
|
-
|
|
283
|
-
* afterDeserialize ([5741675](https://github.com/entropic-bond/entropic-bond/commit/5741675b176192c958942180949a2ccec7c624b4))
|
|
284
|
-
|
|
285
|
-
## [1.39.1](https://github.com/entropic-bond/entropic-bond/compare/v1.39.0...v1.39.1) (2023-03-20)
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
### Bug Fixes
|
|
289
|
-
|
|
290
|
-
* npm update ([250cdee](https://github.com/entropic-bond/entropic-bond/commit/250cdeeb972e1dd9056acad7a4105cabaa8d31a7))
|
|
291
|
-
|
|
292
|
-
# [1.39.0](https://github.com/entropic-bond/entropic-bond/compare/v1.38.1...v1.39.0) (2023-03-12)
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
### Features
|
|
296
|
-
|
|
297
|
-
* implement registerLegacyClassName ([3dc80d2](https://github.com/entropic-bond/entropic-bond/commit/3dc80d20f005549cb52290cd5d9aa376a1c1f294))
|
|
298
|
-
|
|
299
|
-
## [1.38.1](https://github.com/entropic-bond/entropic-bond/compare/v1.38.0...v1.38.1) (2023-03-11)
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
### Bug Fixes
|
|
303
|
-
|
|
304
|
-
* populate to return instance type promise ([c1d68a1](https://github.com/entropic-bond/entropic-bond/commit/c1d68a1bf325fec1750723c8730b6aa287655320))
|
|
305
|
-
|
|
306
|
-
# [1.38.0](https://github.com/entropic-bond/entropic-bond/compare/v1.37.0...v1.38.0) (2023-02-23)
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
### Features
|
|
310
|
-
|
|
311
|
-
* clone ([3ec86f8](https://github.com/entropic-bond/entropic-bond/commit/3ec86f812eb761a512aadb2d31d13eb4c6abbe8a))
|
|
312
|
-
|
|
313
|
-
# [1.37.0](https://github.com/entropic-bond/entropic-bond/compare/v1.36.1...v1.37.0) (2023-01-29)
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
### Bug Fixes
|
|
317
|
-
|
|
318
|
-
* type improvements ([acda0ad](https://github.com/entropic-bond/entropic-bond/commit/acda0adbb837ca9411368a03964002afc6f12187))
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
### Features
|
|
322
|
-
|
|
323
|
-
* PropPath to optionally filter subprops by type ([490e616](https://github.com/entropic-bond/entropic-bond/commit/490e6169a522574c5ccd99fc4249d36f5651f7c0))
|
|
324
|
-
|
|
325
|
-
## [1.36.1](https://github.com/entropic-bond/entropic-bond/compare/v1.36.0...v1.36.1) (2023-01-18)
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
### Bug Fixes
|
|
329
|
-
|
|
330
|
-
* upgrade npm ([6863091](https://github.com/entropic-bond/entropic-bond/commit/68630917bef522c982c83d47464306c00d7e583c))
|
|
331
|
-
|
|
332
|
-
# [1.36.0](https://github.com/entropic-bond/entropic-bond/compare/v1.35.3...v1.36.0) (2023-01-17)
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
### Features
|
|
336
|
-
|
|
337
|
-
* implement query result set count ([b7273c9](https://github.com/entropic-bond/entropic-bond/commit/b7273c9f4bf64aa80b0a025a652d2cc9aef412b4))
|
|
338
|
-
|
|
339
|
-
## [1.35.3](https://github.com/entropic-bond/entropic-bond/compare/v1.35.2...v1.35.3) (2022-11-15)
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
### Bug Fixes
|
|
343
|
-
|
|
344
|
-
* type setCustomCredentials ([9a2a6b0](https://github.com/entropic-bond/entropic-bond/commit/9a2a6b0fdc3536de4ae8d738928ca55e095e8830))
|
|
345
|
-
|
|
346
|
-
## [1.35.2](https://github.com/entropic-bond/entropic-bond/compare/v1.35.1...v1.35.2) (2022-11-14)
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
### Bug Fixes
|
|
350
|
-
|
|
351
|
-
* errors on missing password or email ([d21881f](https://github.com/entropic-bond/entropic-bond/commit/d21881f4e06ffb89d07c38f453688158b587b87e))
|
|
352
|
-
|
|
353
|
-
## [1.35.1](https://github.com/entropic-bond/entropic-bond/compare/v1.35.0...v1.35.1) (2022-11-14)
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
### Bug Fixes
|
|
357
|
-
|
|
358
|
-
* add missing password error ([484f245](https://github.com/entropic-bond/entropic-bond/commit/484f245470e7c0e8845ee32546d6ad89e670a440))
|
|
359
|
-
|
|
360
|
-
# [1.35.0](https://github.com/entropic-bond/entropic-bond/compare/v1.34.15...v1.35.0) (2022-11-05)
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
### Bug Fixes
|
|
364
|
-
|
|
365
|
-
* SubProperties Path Types ([1586f16](https://github.com/entropic-bond/entropic-bond/commit/1586f169a0eb6b24b59a4d553b21a036b64e7a63))
|
|
366
|
-
* test ([ecab755](https://github.com/entropic-bond/entropic-bond/commit/ecab7558205bee644199826cb7b5c848d0ad4f10))
|
|
367
|
-
* whereDeepProp validates subproperty type ([74de91a](https://github.com/entropic-bond/entropic-bond/commit/74de91ab317228f1a33efed42d9901e6acf503d0))
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
### Features
|
|
371
|
-
|
|
372
|
-
* getDeepProp ([ce9abda](https://github.com/entropic-bond/entropic-bond/commit/ce9abdaf8abe644b8f0e87bccafa8c34cc172617))
|
|
373
|
-
|
|
374
|
-
## [1.34.15](https://github.com/entropic-bond/entropic-bond/compare/v1.34.14...v1.34.15) (2022-10-30)
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
### Bug Fixes
|
|
378
|
-
|
|
379
|
-
* better ClassPropNamesOfType type ([35714ac](https://github.com/entropic-bond/entropic-bond/commit/35714acba8e54f156737e061dc3b69c1606cc6b2))
|
|
380
|
-
|
|
381
|
-
## [1.34.14](https://github.com/entropic-bond/entropic-bond/compare/v1.34.13...v1.34.14) (2022-10-29)
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
### Bug Fixes
|
|
385
|
-
|
|
386
|
-
* more utility types ([dcc5df8](https://github.com/entropic-bond/entropic-bond/commit/dcc5df8c07b244d64c4cd7d4b6a9edde32495eb6))
|
|
387
|
-
|
|
388
|
-
## [1.34.13](https://github.com/entropic-bond/entropic-bond/compare/v1.34.12...v1.34.13) (2022-10-21)
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
### Bug Fixes
|
|
392
|
-
|
|
393
|
-
* allow pure references to specify storedInCollection ([b093fed](https://github.com/entropic-bond/entropic-bond/commit/b093fedbdb8845cf9816fe3cc622f115dd3a0791))
|
|
394
|
-
|
|
395
|
-
## [1.34.12](https://github.com/entropic-bond/entropic-bond/compare/v1.34.11...v1.34.12) (2022-10-18)
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
### Bug Fixes
|
|
399
|
-
|
|
400
|
-
* implement deleteUser for admin ([00f252e](https://github.com/entropic-bond/entropic-bond/commit/00f252e467960a0d096d550757acdad7aa8d9f53))
|
|
401
|
-
|
|
402
|
-
## [1.34.11](https://github.com/entropic-bond/entropic-bond/compare/v1.34.10...v1.34.11) (2022-10-17)
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
### Bug Fixes
|
|
406
|
-
|
|
407
|
-
* improved MakePersistentObjects ([68230fc](https://github.com/entropic-bond/entropic-bond/commit/68230fc0eb8da611c0cc2da5d80032621f12320e))
|
|
408
|
-
|
|
409
|
-
## [1.34.10](https://github.com/entropic-bond/entropic-bond/compare/v1.34.9...v1.34.10) (2022-10-17)
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
### Bug Fixes
|
|
413
|
-
|
|
414
|
-
* allow cloud functions to work with Persistent annidated types ([eaaa66b](https://github.com/entropic-bond/entropic-bond/commit/eaaa66be074b987aaf331517074318389ca7562d))
|
|
415
|
-
|
|
416
|
-
## [1.34.9](https://github.com/entropic-bond/entropic-bond/compare/v1.34.8...v1.34.9) (2022-10-16)
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
### Bug Fixes
|
|
420
|
-
|
|
421
|
-
* getFunction to deal with plain and persistent types ([1ca80e5](https://github.com/entropic-bond/entropic-bond/commit/1ca80e576519121f37dc26ede362800bacb9ab5a))
|
|
422
|
-
|
|
423
|
-
## [1.34.8](https://github.com/entropic-bond/entropic-bond/compare/v1.34.7...v1.34.8) (2022-10-15)
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
### Bug Fixes
|
|
427
|
-
|
|
428
|
-
* call function adapter ([744ead2](https://github.com/entropic-bond/entropic-bond/commit/744ead2a6627215f5b07a566a621ced4954f156e))
|
|
429
|
-
|
|
430
|
-
## [1.34.7](https://github.com/entropic-bond/entropic-bond/compare/v1.34.6...v1.34.7) (2022-10-14)
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
### Bug Fixes
|
|
434
|
-
|
|
435
|
-
* problem with types ([09757aa](https://github.com/entropic-bond/entropic-bond/commit/09757aa7cba2b2f1e93a904b3b1909eb2b965e52))
|
|
436
|
-
* some types ([bff08ee](https://github.com/entropic-bond/entropic-bond/commit/bff08eed9244f0e80031c7808e8fcecb1eae57d9))
|
|
437
|
-
|
|
438
|
-
## [1.34.6](https://github.com/entropic-bond/entropic-bond/compare/v1.34.5...v1.34.6) (2022-10-14)
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
### Bug Fixes
|
|
442
|
-
|
|
443
|
-
* cloudFunctions to manage persistents ([176b48e](https://github.com/entropic-bond/entropic-bond/commit/176b48eb1c91b22c17d717bae78f908be191415c))
|
|
444
|
-
|
|
445
|
-
## [1.34.5](https://github.com/entropic-bond/entropic-bond/compare/v1.34.4...v1.34.5) (2022-10-13)
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
### Bug Fixes
|
|
449
|
-
|
|
450
|
-
* remove __from_auth in user id ([10f1555](https://github.com/entropic-bond/entropic-bond/commit/10f1555e448beb4ae5f1f6ef9df2dcac0ab0a9f0))
|
|
451
|
-
|
|
452
|
-
## [1.34.4](https://github.com/entropic-bond/entropic-bond/compare/v1.34.3...v1.34.4) (2022-10-13)
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
### Bug Fixes
|
|
456
|
-
|
|
457
|
-
* return undefined if user does not exist in ServerAuthMock ([ffad7b9](https://github.com/entropic-bond/entropic-bond/commit/ffad7b9077995951284c9d5cab8a2711cbfaa133))
|
|
458
|
-
|
|
459
|
-
## [1.34.3](https://github.com/entropic-bond/entropic-bond/compare/v1.34.2...v1.34.3) (2022-10-13)
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
### Bug Fixes
|
|
463
|
-
|
|
464
|
-
* throw when getting instance ServerAuth if not has registered service ([d393d3f](https://github.com/entropic-bond/entropic-bond/commit/d393d3f061af184a45a0ac4d821d3278acfc18f9))
|
|
465
|
-
* wording ([2361bd7](https://github.com/entropic-bond/entropic-bond/commit/2361bd712999f347d97f4ca274dea79ede8ddb01))
|
|
466
|
-
|
|
467
|
-
## [1.34.2](https://github.com/entropic-bond/entropic-bond/compare/v1.34.1...v1.34.2) (2022-10-13)
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
### Bug Fixes
|
|
471
|
-
|
|
472
|
-
* get fake registered users ([29dace6](https://github.com/entropic-bond/entropic-bond/commit/29dace604e4cf5df2bd59e8d9866b6be633d1e8c))
|
|
473
|
-
|
|
474
|
-
## [1.34.1](https://github.com/entropic-bond/entropic-bond/compare/v1.34.0...v1.34.1) (2022-10-13)
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
### Bug Fixes
|
|
478
|
-
|
|
479
|
-
* better server auth mocks ([78d77b4](https://github.com/entropic-bond/entropic-bond/commit/78d77b44ecebfbe5c870f77ce7310f6bf94274b9))
|
|
480
|
-
|
|
481
|
-
# [1.34.0](https://github.com/entropic-bond/entropic-bond/compare/v1.33.1...v1.34.0) (2022-10-12)
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
### Features
|
|
485
|
-
|
|
486
|
-
* MakePersistentObjects ([7877757](https://github.com/entropic-bond/entropic-bond/commit/7877757230803085ed80642e6b7c8beb42b60a4e))
|
|
487
|
-
|
|
488
|
-
## [1.33.1](https://github.com/entropic-bond/entropic-bond/compare/v1.33.0...v1.33.1) (2022-10-12)
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
### Bug Fixes
|
|
492
|
-
|
|
493
|
-
* server auth to have generics for custom claims ([44ceeed](https://github.com/entropic-bond/entropic-bond/commit/44ceeed09c8ba1fe0e9b5f3625b16d621f64ce17))
|
|
494
|
-
|
|
495
|
-
# [1.33.0](https://github.com/entropic-bond/entropic-bond/compare/v1.32.2...v1.33.0) (2022-10-12)
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
### Features
|
|
499
|
-
|
|
500
|
-
* generic custom claims in UserCredentials ([69a0b18](https://github.com/entropic-bond/entropic-bond/commit/69a0b18e3656c1987a8bbbb390f096cf486eb05f))
|
|
501
|
-
|
|
502
|
-
## [1.32.2](https://github.com/entropic-bond/entropic-bond/compare/v1.32.1...v1.32.2) (2022-10-10)
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
### Bug Fixes
|
|
506
|
-
|
|
507
|
-
* should throw with error message if Auth service not set ([d383f5f](https://github.com/entropic-bond/entropic-bond/commit/d383f5f0652a7ade7e74c40306fef7202cd97157))
|
|
508
|
-
|
|
509
|
-
## [1.32.1](https://github.com/entropic-bond/entropic-bond/compare/v1.32.0...v1.32.1) (2022-10-10)
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
### Bug Fixes
|
|
513
|
-
|
|
514
|
-
* Singleton initialization ([a0d2bd2](https://github.com/entropic-bond/entropic-bond/commit/a0d2bd26e8baa951af363a875ce838d1813cb0bb))
|
|
515
|
-
* throw if not registered server auth service ([94fcd2c](https://github.com/entropic-bond/entropic-bond/commit/94fcd2cb7ce74f1e6eb591f0813ee2923df8ad15))
|
|
516
|
-
|
|
517
|
-
# [1.32.0](https://github.com/entropic-bond/entropic-bond/compare/v1.31.1...v1.32.0) (2022-10-02)
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
### Features
|
|
521
|
-
|
|
522
|
-
* server auth mock ([476b857](https://github.com/entropic-bond/entropic-bond/commit/476b857c6347102e06264837b76d5d25e20d4c3e))
|
|
523
|
-
|
|
524
|
-
## [1.31.1](https://github.com/entropic-bond/entropic-bond/compare/v1.31.0...v1.31.1) (2022-10-02)
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
### Bug Fixes
|
|
528
|
-
|
|
529
|
-
* missing export ([376c364](https://github.com/entropic-bond/entropic-bond/commit/376c364ecd0dd86a58257d218f7d2f8d29dacb40))
|
|
530
|
-
|
|
531
|
-
# [1.31.0](https://github.com/entropic-bond/entropic-bond/compare/v1.30.0...v1.31.0) (2022-10-02)
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
### Features
|
|
535
|
-
|
|
536
|
-
* server auth ([51ee8bb](https://github.com/entropic-bond/entropic-bond/commit/51ee8bbc51009eaea47df784898f9ee318d628b0))
|
|
537
|
-
|
|
538
|
-
# [1.30.0](https://github.com/entropic-bond/entropic-bond/compare/v1.29.1...v1.30.0) (2022-09-30)
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
### Features
|
|
542
|
-
|
|
543
|
-
* extended info passed to storeInCollection callback ([461fdc6](https://github.com/entropic-bond/entropic-bond/commit/461fdc677b40bfa31f0beac062783ae2b1dfd1a7))
|
|
544
|
-
|
|
545
|
-
## [1.29.1](https://github.com/entropic-bond/entropic-bond/compare/v1.29.0...v1.29.1) (2022-08-15)
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
### Bug Fixes
|
|
549
|
-
|
|
550
|
-
* export cloud functions ([728efb6](https://github.com/entropic-bond/entropic-bond/commit/728efb66cfb60d5cc2f07506167b0c3721cef2d0))
|
|
551
|
-
|
|
552
|
-
# [1.29.0](https://github.com/entropic-bond/entropic-bond/compare/v1.28.3...v1.29.0) (2022-08-15)
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
### Features
|
|
556
|
-
|
|
557
|
-
* cloud-functions ([41cfc37](https://github.com/entropic-bond/entropic-bond/commit/41cfc372c6a24c6aac702d3f79aac3d1b3bd4bf9))
|
|
558
|
-
|
|
559
|
-
## [1.28.3](https://github.com/entropic-bond/entropic-bond/compare/v1.28.2...v1.28.3) (2022-08-08)
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
### Bug Fixes
|
|
563
|
-
|
|
564
|
-
* remove properties with undefined value in reference with persistent props ([2d25b87](https://github.com/entropic-bond/entropic-bond/commit/2d25b871330656135f0a103063583831c0d9d32b))
|
|
565
|
-
|
|
566
|
-
## [1.28.2](https://github.com/entropic-bond/entropic-bond/compare/v1.28.1...v1.28.2) (2022-08-05)
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
### Bug Fixes
|
|
570
|
-
|
|
571
|
-
* create instance from references having forcedProps ([f3229e5](https://github.com/entropic-bond/entropic-bond/commit/f3229e5d5c6faad406d333c275b28fb3b9935810))
|
|
572
|
-
|
|
573
|
-
## [1.28.1](https://github.com/entropic-bond/entropic-bond/compare/v1.28.0...v1.28.1) (2022-08-04)
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
### Bug Fixes
|
|
577
|
-
|
|
578
|
-
* problem with pure references and selected values ([228f5a3](https://github.com/entropic-bond/entropic-bond/commit/228f5a38bdd416722be521c70f06d5ca7b963f5a))
|
|
579
|
-
|
|
580
|
-
# [1.28.0](https://github.com/entropic-bond/entropic-bond/compare/v1.27.1...v1.28.0) (2022-08-03)
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
### Features
|
|
584
|
-
|
|
585
|
-
* references to contain selected values ([33d9b4d](https://github.com/entropic-bond/entropic-bond/commit/33d9b4d77f4710177a2efe25d5ca9dc3ac7b8db6))
|
|
586
|
-
|
|
587
|
-
## [1.27.1](https://github.com/entropic-bond/entropic-bond/compare/v1.27.0...v1.27.1) (2022-07-24)
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
### Bug Fixes
|
|
591
|
-
|
|
592
|
-
* make some UserCredential fields optional ([0f13d38](https://github.com/entropic-bond/entropic-bond/commit/0f13d38f3bed34fe98da91878979241f6b554f04))
|
|
593
|
-
|
|
594
|
-
# [1.27.0](https://github.com/entropic-bond/entropic-bond/compare/v1.26.0...v1.27.0) (2022-07-19)
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
### Features
|
|
598
|
-
|
|
599
|
-
* persistentPureReference decorator ([6bec42f](https://github.com/entropic-bond/entropic-bond/commit/6bec42fb94ee31d051e8d1f2e7c4eaafbc1c8629))
|
|
600
|
-
|
|
601
|
-
# [1.26.0](https://github.com/entropic-bond/entropic-bond/compare/v1.25.1...v1.26.0) (2022-07-17)
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
### Features
|
|
605
|
-
|
|
606
|
-
* persistentReferenceAt decorator to accept function as parameter ([662ea8e](https://github.com/entropic-bond/entropic-bond/commit/662ea8eb4e817cde2585f4395984149297d9a3e7))
|
|
607
|
-
|
|
608
|
-
## [1.25.1](https://github.com/entropic-bond/entropic-bond/compare/v1.25.0...v1.25.1) (2022-07-16)
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
### Bug Fixes
|
|
612
|
-
|
|
613
|
-
* clean ref data structure ([4dcae0f](https://github.com/entropic-bond/entropic-bond/commit/4dcae0fa36ef474fea0abbe1eb70299dc6119be1))
|
|
614
|
-
* return proper structure for deep references ([12324ea](https://github.com/entropic-bond/entropic-bond/commit/12324eaf9955cbf64683f2aacf805833470eb844))
|
|
615
|
-
|
|
616
|
-
# [1.25.0](https://github.com/entropic-bond/entropic-bond/compare/v1.24.1...v1.25.0) (2022-07-16)
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
### Features
|
|
620
|
-
|
|
621
|
-
* allow deep not persisted references ([0b9a722](https://github.com/entropic-bond/entropic-bond/commit/0b9a7222fd63de22fc83e9a6d23268441da84f0a))
|
|
622
|
-
|
|
623
|
-
## [1.24.1](https://github.com/entropic-bond/entropic-bond/compare/v1.24.0...v1.24.1) (2022-06-25)
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
### Bug Fixes
|
|
627
|
-
|
|
628
|
-
* reject on non existing user when resetEmaiPassword ([e74f4ce](https://github.com/entropic-bond/entropic-bond/commit/e74f4ce4abf64688c21e5150288f4bb635b675ac))
|
|
629
|
-
|
|
630
|
-
# [1.24.0](https://github.com/entropic-bond/entropic-bond/compare/v1.23.0...v1.24.0) (2022-06-22)
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
### Features
|
|
634
|
-
|
|
635
|
-
* beforeSerialize onSerialized ([b6ffc10](https://github.com/entropic-bond/entropic-bond/commit/b6ffc108391b9030440e9bed9ae9f03e11f625a2))
|
|
636
|
-
|
|
637
|
-
# [1.23.0](https://github.com/entropic-bond/entropic-bond/compare/v1.22.6...v1.23.0) (2022-06-11)
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
### Features
|
|
641
|
-
|
|
642
|
-
* model for subcollections ([9b758bb](https://github.com/entropic-bond/entropic-bond/commit/9b758bb467e11380a2da317c5a90892113e3fe2b))
|
|
643
|
-
|
|
644
|
-
## [1.22.6](https://github.com/entropic-bond/entropic-bond/compare/v1.22.5...v1.22.6) (2022-06-08)
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
### Bug Fixes
|
|
648
|
-
|
|
649
|
-
* export PersistentConstructor ([9d1a39f](https://github.com/entropic-bond/entropic-bond/commit/9d1a39f233885109fc424409c54691fb586bc4ee))
|
|
650
|
-
|
|
651
|
-
## [1.22.5](https://github.com/entropic-bond/entropic-bond/compare/v1.22.4...v1.22.5) (2022-05-28)
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
### Bug Fixes
|
|
655
|
-
|
|
656
|
-
* upgrade ts4.7 ([e1a0987](https://github.com/entropic-bond/entropic-bond/commit/e1a09874604276e36abc417443fa24fd62bc79f0))
|
|
657
|
-
|
|
658
|
-
## [1.22.4](https://github.com/entropic-bond/entropic-bond/compare/v1.22.3...v1.22.4) (2022-05-24)
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
### Bug Fixes
|
|
662
|
-
|
|
663
|
-
* allow to pass abstract class as parameter ([203da9a](https://github.com/entropic-bond/entropic-bond/commit/203da9aec49a52c9ac5c3d1e6bb52c9983301937))
|
|
664
|
-
|
|
665
|
-
## [1.22.3](https://github.com/entropic-bond/entropic-bond/compare/v1.22.2...v1.22.3) (2022-04-25)
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
### Bug Fixes
|
|
669
|
-
|
|
670
|
-
* numbers with value 0 fromObject ([e26f2a3](https://github.com/entropic-bond/entropic-bond/commit/e26f2a3631bbc621be7951182349c3cfc2391049))
|
|
671
|
-
|
|
672
|
-
## [1.22.2](https://github.com/entropic-bond/entropic-bond/compare/v1.22.1...v1.22.2) (2022-04-25)
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
### Bug Fixes
|
|
676
|
-
|
|
677
|
-
* streaming numbers with value 0 didn't work ([ee781bc](https://github.com/entropic-bond/entropic-bond/commit/ee781bc159b1aca8a75d075a6cb58abd14d0e2b3))
|
|
678
|
-
|
|
679
|
-
## [1.22.1](https://github.com/entropic-bond/entropic-bond/compare/v1.22.0...v1.22.1) (2022-04-09)
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
### Bug Fixes
|
|
683
|
-
|
|
684
|
-
* better mock logout ([1cfdd8c](https://github.com/entropic-bond/entropic-bond/commit/1cfdd8c3158f04c21c7d0eb02ab8995c54eb4f16))
|
|
685
|
-
|
|
686
|
-
# [1.22.0](https://github.com/entropic-bond/entropic-bond/compare/v1.21.1...v1.22.0) (2022-04-08)
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
### Features
|
|
690
|
-
|
|
691
|
-
* reset password ([e2e38a8](https://github.com/entropic-bond/entropic-bond/commit/e2e38a8537d6dd43b26209b9404ec7b4a57afd6d))
|
|
692
|
-
|
|
693
|
-
## [1.21.1](https://github.com/entropic-bond/entropic-bond/compare/v1.21.0...v1.21.1) (2022-04-03)
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
### Bug Fixes
|
|
697
|
-
|
|
698
|
-
* resolve/reject mock auth before notify ([be78937](https://github.com/entropic-bond/entropic-bond/commit/be78937788a86ec61fbcab1f5a82c6663c586356))
|
|
699
|
-
|
|
700
|
-
# [1.21.0](https://github.com/entropic-bond/entropic-bond/compare/v1.20.1...v1.21.0) (2022-03-29)
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
### Features
|
|
704
|
-
|
|
705
|
-
* check if reference is populated ([3aec3d2](https://github.com/entropic-bond/entropic-bond/commit/3aec3d2a1981fe57b0a6162427f3325dd455b1f4))
|
|
706
|
-
|
|
707
|
-
## [1.20.1](https://github.com/entropic-bond/entropic-bond/compare/v1.20.0...v1.20.1) (2022-03-01)
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
### Bug Fixes
|
|
711
|
-
|
|
712
|
-
* exception on class not found shows object producing the error. ([07468ac](https://github.com/entropic-bond/entropic-bond/commit/07468ac08844158cdf4bed8da40535131de489df))
|
|
713
|
-
|
|
714
|
-
# [1.20.0](https://github.com/entropic-bond/entropic-bond/compare/v1.19.0...v1.20.0) (2022-02-24)
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
### Features
|
|
718
|
-
|
|
719
|
-
* camelCase and snakeCase to deal with spaces ([5653e66](https://github.com/entropic-bond/entropic-bond/commit/5653e663602fddb1a0e8390c64ad5e5357dfac72))
|
|
720
|
-
|
|
721
|
-
# [1.19.0](https://github.com/entropic-bond/entropic-bond/compare/v1.18.0...v1.19.0) (2022-01-14)
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
### Features
|
|
725
|
-
|
|
726
|
-
* introduce wait to wait for pending promises ([20aa832](https://github.com/entropic-bond/entropic-bond/commit/20aa8325fcd36e92ae3be215db769ccc4a632c0f))
|
|
727
|
-
|
|
728
|
-
# [1.18.0](https://github.com/entropic-bond/entropic-bond/compare/v1.17.2...v1.18.0) (2022-01-14)
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
### Features
|
|
732
|
-
|
|
733
|
-
* JsonDataSource can return delayed promises ([b99c558](https://github.com/entropic-bond/entropic-bond/commit/b99c55810982a2e385041f5f2ef5a6e345b2459f))
|
|
734
|
-
|
|
735
|
-
## [1.17.2](https://github.com/entropic-bond/entropic-bond/compare/v1.17.1...v1.17.2) (2022-01-14)
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
### Bug Fixes
|
|
739
|
-
|
|
740
|
-
* npm update ([6ea9b94](https://github.com/entropic-bond/entropic-bond/commit/6ea9b94ae0d43b2454d1203c5b1123b7e1ca9e10))
|
|
741
|
-
|
|
742
|
-
## [1.17.1](https://github.com/entropic-bond/entropic-bond/compare/v1.17.0...v1.17.1) (2022-01-13)
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
### Bug Fixes
|
|
746
|
-
|
|
747
|
-
* export utils ([fc2657f](https://github.com/entropic-bond/entropic-bond/commit/fc2657f68ebf6e29978ab8126a5ce01d63e09d6b))
|
|
748
|
-
|
|
749
|
-
# [1.17.0](https://github.com/entropic-bond/entropic-bond/compare/v1.16.0...v1.17.0) (2022-01-13)
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
### Features
|
|
753
|
-
|
|
754
|
-
* introduce utils ([ebe7fa8](https://github.com/entropic-bond/entropic-bond/commit/ebe7fa8e5d9f39fff6c2492ff6d50a6920f54561))
|
|
755
|
-
|
|
756
|
-
# [1.16.0](https://github.com/entropic-bond/entropic-bond/compare/v1.15.3...v1.16.0) (2021-12-01)
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
### Features
|
|
760
|
-
|
|
761
|
-
* remove deleted references from populate ([f96891f](https://github.com/entropic-bond/entropic-bond/commit/f96891ff89fe2836e8948473024bcfdbf141b158))
|
|
762
|
-
|
|
763
|
-
## [1.15.3](https://github.com/entropic-bond/entropic-bond/compare/v1.15.2...v1.15.3) (2021-11-22)
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
### Bug Fixes
|
|
767
|
-
|
|
768
|
-
* not to throw on non-existing references when populate ([87d0388](https://github.com/entropic-bond/entropic-bond/commit/87d0388e057c8fe8f5981a59a9d324ed1a7c157f))
|
|
769
|
-
|
|
770
|
-
## [1.15.2](https://github.com/entropic-bond/entropic-bond/compare/v1.15.1...v1.15.2) (2021-11-16)
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
### Bug Fixes
|
|
774
|
-
|
|
775
|
-
* bug on null properties ([7936924](https://github.com/entropic-bond/entropic-bond/commit/7936924cf5eb564e1cffac43f6af9ce77d343e62))
|
|
776
|
-
|
|
777
|
-
## [1.15.1](https://github.com/entropic-bond/entropic-bond/compare/v1.15.0...v1.15.1) (2021-10-07)
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
### Bug Fixes
|
|
781
|
-
|
|
782
|
-
* trhow on empty query object ([fd63b3a](https://github.com/entropic-bond/entropic-bond/commit/fd63b3a15cae569587fb9a577aaa8edb1637c236))
|
|
783
|
-
|
|
784
|
-
# [1.15.0](https://github.com/entropic-bond/entropic-bond/compare/v1.14.4...v1.15.0) (2021-09-19)
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
### Features
|
|
788
|
-
|
|
789
|
-
* getPersistentProperties and query by instance ([24fc650](https://github.com/entropic-bond/entropic-bond/commit/24fc650dee1c390ace570172c249d88d99e2496c))
|
|
790
|
-
|
|
791
|
-
## [1.14.4](https://github.com/entropic-bond/entropic-bond/compare/v1.14.3...v1.14.4) (2021-09-16)
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
### Bug Fixes
|
|
795
|
-
|
|
796
|
-
* remove additional providers return type ([7e98131](https://github.com/entropic-bond/entropic-bond/commit/7e981317b9251368c4f4f43eaf2f8051b9bff0b1))
|
|
797
|
-
|
|
798
|
-
## [1.14.3](https://github.com/entropic-bond/entropic-bond/compare/v1.14.2...v1.14.3) (2021-09-16)
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
### Bug Fixes
|
|
802
|
-
|
|
803
|
-
* generics in link provider ([c23a96e](https://github.com/entropic-bond/entropic-bond/commit/c23a96eb8713e4a6839abee0eb88767b187ba78c))
|
|
804
|
-
|
|
805
|
-
## [1.14.2](https://github.com/entropic-bond/entropic-bond/compare/v1.14.1...v1.14.2) (2021-09-16)
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
### Bug Fixes
|
|
809
|
-
|
|
810
|
-
* removed additionalProvider type ([3cc8a83](https://github.com/entropic-bond/entropic-bond/commit/3cc8a83d038242841d437c18a5ac4e9f9ee593e5))
|
|
811
|
-
|
|
812
|
-
## [1.14.1](https://github.com/entropic-bond/entropic-bond/compare/v1.14.0...v1.14.1) (2021-09-16)
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
### Bug Fixes
|
|
816
|
-
|
|
817
|
-
* AuthMock to implement unlinkProvider ([adf2913](https://github.com/entropic-bond/entropic-bond/commit/adf2913b2f6b28e7558d6b946574e307e6e05260))
|
|
818
|
-
* unlinkProvider ([3a5daca](https://github.com/entropic-bond/entropic-bond/commit/3a5daca88aa20bcb83711c26a07d3f545000a74a))
|
|
819
|
-
|
|
820
|
-
# [1.14.0](https://github.com/entropic-bond/entropic-bond/compare/v1.13.1...v1.14.0) (2021-09-14)
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
### Bug Fixes
|
|
824
|
-
|
|
825
|
-
* link additional auth provider ([f0e9e7e](https://github.com/entropic-bond/entropic-bond/commit/f0e9e7e9740eb2a42b9338ee14dc6a894cad2206))
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
### Features
|
|
829
|
-
|
|
830
|
-
* link additional provider ([f17be50](https://github.com/entropic-bond/entropic-bond/commit/f17be50c8b5ba88db01a754c818964b6eafc86bd))
|
|
831
|
-
|
|
832
|
-
## [1.13.1](https://github.com/entropic-bond/entropic-bond/compare/v1.13.0...v1.13.1) (2021-09-11)
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
### Bug Fixes
|
|
836
|
-
|
|
837
|
-
* bug on undefined subproperties ([ac710fb](https://github.com/entropic-bond/entropic-bond/commit/ac710fbf1283ea416631b111b5a21511dabc78de))
|
|
838
|
-
* optional email and password in SignData ([bef39f7](https://github.com/entropic-bond/entropic-bond/commit/bef39f70e48ed1346e457d145ed2df22b3ddf877))
|
|
839
|
-
|
|
840
|
-
# [1.13.0](https://github.com/entropic-bond/entropic-bond/compare/v1.12.0...v1.13.0) (2021-08-30)
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
### Features
|
|
844
|
-
|
|
845
|
-
* improve onProgress notification. ([aaa1588](https://github.com/entropic-bond/entropic-bond/commit/aaa1588f73f405a08f151668a63f4e6542590ac3))
|
|
846
|
-
|
|
847
|
-
# [1.12.0](https://github.com/entropic-bond/entropic-bond/compare/v1.11.0...v1.12.0) (2021-08-28)
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
### Features
|
|
851
|
-
|
|
852
|
-
* better annotation access and registered class browsing ([b956300](https://github.com/entropic-bond/entropic-bond/commit/b9563005675ab04d1dc0881ddeb40823175cc0ec))
|
|
853
|
-
|
|
854
|
-
# [1.11.0](https://github.com/entropic-bond/entropic-bond/compare/v1.10.0...v1.11.0) (2021-08-27)
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
### Features
|
|
858
|
-
|
|
859
|
-
* force update ([08cf031](https://github.com/entropic-bond/entropic-bond/commit/08cf031d7216427bde60453b4a4bf28131615474))
|
|
860
|
-
|
|
861
|
-
# [1.10.0](https://github.com/entropic-bond/entropic-bond/compare/v1.9.10...v1.10.0) (2021-08-22)
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
### Features
|
|
865
|
-
|
|
866
|
-
* Annotations ([477f891](https://github.com/entropic-bond/entropic-bond/commit/477f8911916f3e755fcf4741f33f989c7801a59d))
|
|
867
|
-
|
|
868
|
-
## [1.9.10](https://github.com/entropic-bond/entropic-bond/compare/v1.9.9...v1.9.10) (2021-08-12)
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
### Bug Fixes
|
|
872
|
-
|
|
873
|
-
* populate throws on subsequent calls on same object ([6cdaf7b](https://github.com/entropic-bond/entropic-bond/commit/6cdaf7ba73de3d76d83468a39673153ba8c7eb86))
|
|
874
|
-
|
|
875
|
-
## [1.9.9](https://github.com/entropic-bond/entropic-bond/compare/v1.9.8...v1.9.9) (2021-07-31)
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
### Bug Fixes
|
|
879
|
-
|
|
880
|
-
* export AuthProvider ([b47fb80](https://github.com/entropic-bond/entropic-bond/commit/b47fb80845173ab286baf42ee8f945be854413ba))
|
|
881
|
-
|
|
882
|
-
## [1.9.8](https://github.com/entropic-bond/entropic-bond/compare/v1.9.7...v1.9.8) (2021-07-27)
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
### Bug Fixes
|
|
886
|
-
|
|
887
|
-
* derived persistent classes can change id ([68b2d93](https://github.com/entropic-bond/entropic-bond/commit/68b2d93fed6100da18388afcaf784d70260a1a2a))
|
|
888
|
-
|
|
889
|
-
## [1.9.7](https://github.com/entropic-bond/entropic-bond/compare/v1.9.6...v1.9.7) (2021-07-23)
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
### Bug Fixes
|
|
893
|
-
|
|
894
|
-
* downgrade to ES5 ([d9b40f8](https://github.com/entropic-bond/entropic-bond/commit/d9b40f8438a1ee1aa4a27a2322f70ef66be2a1b5))
|
|
895
|
-
|
|
896
|
-
## [1.9.6](https://github.com/entropic-bond/entropic-bond/compare/v1.9.5...v1.9.6) (2021-07-23)
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
### Bug Fixes
|
|
900
|
-
|
|
901
|
-
* multiple fake users allowed ([6a595c0](https://github.com/entropic-bond/entropic-bond/commit/6a595c05f85d32a3ec0e7d40ecd8bb674c89d953))
|
|
902
|
-
|
|
903
|
-
## [1.9.5](https://github.com/entropic-bond/entropic-bond/compare/v1.9.4...v1.9.5) (2021-07-22)
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
### Bug Fixes
|
|
907
|
-
|
|
908
|
-
* auth errors ([abb0bbf](https://github.com/entropic-bond/entropic-bond/commit/abb0bbf4406e42dd0809a0eb34b8e5fe2295cb11))
|
|
909
|
-
|
|
910
|
-
## [1.9.4](https://github.com/entropic-bond/entropic-bond/compare/v1.9.3...v1.9.4) (2021-07-22)
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
### Bug Fixes
|
|
914
|
-
|
|
915
|
-
* id can be optionally passed in persistent constructor ([03ed481](https://github.com/entropic-bond/entropic-bond/commit/03ed4815188956a71be9f3e80894245fdb2924f8))
|
|
916
|
-
|
|
917
|
-
## [1.9.3](https://github.com/entropic-bond/entropic-bond/compare/v1.9.2...v1.9.3) (2021-07-22)
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
### Bug Fixes
|
|
921
|
-
|
|
922
|
-
* credentials rename ([7ab7f70](https://github.com/entropic-bond/entropic-bond/commit/7ab7f701271ce7e5fc98b95304af107e96abea76))
|
|
923
|
-
|
|
924
|
-
## [1.9.2](https://github.com/entropic-bond/entropic-bond/compare/v1.9.1...v1.9.2) (2021-07-22)
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
### Bug Fixes
|
|
928
|
-
|
|
929
|
-
* export auth ([168d75c](https://github.com/entropic-bond/entropic-bond/commit/168d75c97c6387a02c26ce58348220859331cd1a))
|
|
930
|
-
|
|
931
|
-
## [1.9.1](https://github.com/entropic-bond/entropic-bond/compare/v1.9.0...v1.9.1) (2021-07-22)
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
### Bug Fixes
|
|
935
|
-
|
|
936
|
-
* toObject producing incorrect reference ([064588d](https://github.com/entropic-bond/entropic-bond/commit/064588d4f9539c168a5f90a09568fa07afed9c05))
|
|
937
|
-
|
|
938
|
-
# [1.9.0](https://github.com/entropic-bond/entropic-bond/compare/v1.8.3...v1.9.0) (2021-07-21)
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
### Bug Fixes
|
|
942
|
-
|
|
943
|
-
* populate to accept readonly arrays ([eda99fe](https://github.com/entropic-bond/entropic-bond/commit/eda99fe540b5af18d2bef74943805830f7ee46c9))
|
|
944
|
-
* renamed to entropic bond ([34b2af5](https://github.com/entropic-bond/entropic-bond/commit/34b2af5da5d616e34f2e3f81c2968e62c39c2b06))
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
### Features
|
|
948
|
-
|
|
949
|
-
* auth ([e7f97c1](https://github.com/entropic-bond/entropic-bond/commit/e7f97c1f03e3986241d97b83de5fb08ca5f78afe))
|
|
950
|
-
|
|
951
|
-
## [1.8.3](https://github.com/entropic-bond/entropic-bond/compare/v1.8.2...v1.8.3) (2021-06-24)
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
### Bug Fixes
|
|
955
|
-
|
|
956
|
-
* datasource does not enforce implementing prev method anymore ([419bd62](https://github.com/entropic-bond/entropic-bond/commit/419bd62a044f0ee0a772f7daeb008cb53f5e05b2))
|
|
957
|
-
* prev is not enforced to be implemented ([6cd2b2a](https://github.com/entropic-bond/entropic-bond/commit/6cd2b2a880e838817d3227d1f414053eb1b237b0))
|
|
958
|
-
|
|
959
|
-
## [1.8.2](https://github.com/entropic-bond/entropic-bond/compare/v1.8.1...v1.8.2) (2021-06-24)
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
### Bug Fixes
|
|
963
|
-
|
|
964
|
-
* removed unneed prev method ([a85f8a1](https://github.com/entropic-bond/entropic-bond/commit/a85f8a18def32903a4e359b231264ff0b5c4f1ef))
|
|
965
|
-
|
|
966
|
-
## [1.8.1](https://github.com/entropic-bond/entropic-bond/compare/v1.8.0...v1.8.1) (2021-06-23)
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
### Bug Fixes
|
|
970
|
-
|
|
971
|
-
* model to work with generic descendants ([bc1d369](https://github.com/entropic-bond/entropic-bond/commit/bc1d36900ecbbb3d6d969c49c03896cec1a32013))
|
|
972
|
-
|
|
973
|
-
# [1.8.0](https://github.com/entropic-bond/entropic-bond/compare/v1.7.6...v1.8.0) (2021-06-20)
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
### Features
|
|
977
|
-
|
|
978
|
-
* refactor QueryOperation ([85bba4e](https://github.com/entropic-bond/entropic-bond/commit/85bba4e92825055468d090f2ea1a999d11cfb8a9))
|
|
979
|
-
|
|
980
|
-
## [1.7.6](https://github.com/entropic-bond/entropic-bond/compare/v1.7.5...v1.7.6) (2021-06-16)
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
### Bug Fixes
|
|
984
|
-
|
|
985
|
-
* reference returning a Persistent descendent. Should return a plain object ([a22a803](https://github.com/entropic-bond/entropic-bond/commit/a22a803841f78e8aacae11c21847d139afd7e04b))
|
|
986
|
-
|
|
987
|
-
## [1.7.5](https://github.com/entropic-bond/entropic-bond/compare/v1.7.4...v1.7.5) (2021-06-16)
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
### Bug Fixes
|
|
991
|
-
|
|
992
|
-
* toReferenceObj returning an incorrect value ([293c400](https://github.com/entropic-bond/entropic-bond/commit/293c400470458206f4906f4945a27052a55f6b72))
|
|
993
|
-
|
|
994
|
-
## [1.7.4](https://github.com/entropic-bond/entropic-bond/compare/v1.7.3...v1.7.4) (2021-06-16)
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
### Bug Fixes
|
|
998
|
-
|
|
999
|
-
* create rootCollections with null id for unfilled refs ([7fcbf1b](https://github.com/entropic-bond/entropic-bond/commit/7fcbf1b2736c2571db3ecc9423a23a85f077bbbd))
|
|
1000
|
-
|
|
1001
|
-
## [1.7.3](https://github.com/entropic-bond/entropic-bond/compare/v1.7.2...v1.7.3) (2021-06-16)
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
### Bug Fixes
|
|
1005
|
-
|
|
1006
|
-
* saving unmodified refs overwrite original data in the database ([6880c3c](https://github.com/entropic-bond/entropic-bond/commit/6880c3cc0eb707dbdbd6ee1a06d494db37b76278))
|
|
1007
|
-
|
|
1008
|
-
## [1.7.2](https://github.com/entropic-bond/entropic-bond/compare/v1.7.1...v1.7.2) (2021-06-15)
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
### Bug Fixes
|
|
1012
|
-
|
|
1013
|
-
* [@persistent](https://github.com/persistent)At not setting proper storing collection ([33ee00e](https://github.com/entropic-bond/entropic-bond/commit/33ee00e5dc05f0fbc57eed3a92a0591a792aa7a5))
|
|
1014
|
-
|
|
1015
|
-
## [1.7.1](https://github.com/entropic-bond/entropic-bond/compare/v1.7.0...v1.7.1) (2021-06-13)
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
### Bug Fixes
|
|
1019
|
-
|
|
1020
|
-
* renamed to pushAndNotify and removeAndNotify ([1fc2e04](https://github.com/entropic-bond/entropic-bond/commit/1fc2e04e24d6d441a6f959e0c4ab1214e2c50ce6))
|
|
1021
|
-
|
|
1022
|
-
# [1.7.0](https://github.com/entropic-bond/entropic-bond/compare/v1.6.0...v1.7.0) (2021-06-13)
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
### Bug Fixes
|
|
1026
|
-
|
|
1027
|
-
* bug in MockCloudStorage ([c14a764](https://github.com/entropic-bond/entropic-bond/commit/c14a764bad258f296f7ef58b4fa93086ebb5c0c1))
|
|
1028
|
-
* some model methods can typecast at prefix ([2b60d26](https://github.com/entropic-bond/entropic-bond/commit/2b60d26bf1c0a66267b8f8f3d255a1c11a47de28))
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
### Features
|
|
1032
|
-
|
|
1033
|
-
* pushElement ([53398cc](https://github.com/entropic-bond/entropic-bond/commit/53398cc61dfaa1395381ba67e161da99349b4328))
|
|
1034
|
-
* removeElement ([410a45d](https://github.com/entropic-bond/entropic-bond/commit/410a45d8c055fcee7d6fb55f6fa58459336f4a92))
|
|
1035
|
-
|
|
1036
|
-
# [1.6.0](https://github.com/entropic-bond/entropic-bond/compare/v1.5.0...v1.6.0) (2021-06-11)
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
### Bug Fixes
|
|
1040
|
-
|
|
1041
|
-
* instanceOf not working ([852235f](https://github.com/entropic-bond/entropic-bond/commit/852235f26f6a70e74157020f597312bd6d7c5b1b))
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
### Features
|
|
1045
|
-
|
|
1046
|
-
* StoredFile notifies on change ([1cce47e](https://github.com/entropic-bond/entropic-bond/commit/1cce47e4a541276468c606fc440a0e9190169cc0))
|
|
1047
|
-
|
|
1048
|
-
# [1.5.0](https://github.com/entropic-bond/entropic-bond/compare/v1.4.4...v1.5.0) (2021-06-04)
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
### Features
|
|
1052
|
-
|
|
1053
|
-
* reads filename from File ([e55e7cd](https://github.com/entropic-bond/entropic-bond/commit/e55e7cdb0d9dfa2d2b3b4b9fb2eb5a9bee856af1))
|
|
1054
|
-
|
|
1055
|
-
## [1.4.4](https://github.com/entropic-bond/entropic-bond/compare/v1.4.3...v1.4.4) (2021-06-02)
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
### Bug Fixes
|
|
1059
|
-
|
|
1060
|
-
* removed uneed refreshUrl ([52348c6](https://github.com/entropic-bond/entropic-bond/commit/52348c6d3b4193bd4749d73fbd9965f1d4f78339))
|
|
1061
|
-
|
|
1062
|
-
## [1.4.3](https://github.com/entropic-bond/entropic-bond/compare/v1.4.2...v1.4.3) (2021-06-02)
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
### Bug Fixes
|
|
1066
|
-
|
|
1067
|
-
* stroger typing in store ([2b77e45](https://github.com/entropic-bond/entropic-bond/commit/2b77e450fae3b86106fd071caeaaf78a4bf21356))
|
|
1068
|
-
|
|
1069
|
-
## [1.4.2](https://github.com/entropic-bond/entropic-bond/compare/v1.4.1...v1.4.2) (2021-06-02)
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
### Bug Fixes
|
|
1073
|
-
|
|
1074
|
-
* on delete reference and url still existed ([b97644a](https://github.com/entropic-bond/entropic-bond/commit/b97644af836eefb485ea403c15a47a5e7c9bf033))
|
|
1075
|
-
|
|
1076
|
-
## [1.4.1](https://github.com/entropic-bond/entropic-bond/compare/v1.4.0...v1.4.1) (2021-06-01)
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
### Bug Fixes
|
|
1080
|
-
|
|
1081
|
-
* missed exports ([123100e](https://github.com/entropic-bond/entropic-bond/commit/123100e80c63737b6fa6fa05643f4e63d04172fd))
|
|
1082
|
-
|
|
1083
|
-
# [1.4.0](https://github.com/entropic-bond/entropic-bond/compare/v1.3.0...v1.4.0) (2021-06-01)
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
### Features
|
|
1087
|
-
|
|
1088
|
-
* cloud storage ([51175e0](https://github.com/entropic-bond/entropic-bond/commit/51175e090b9dcbda87354b2a727c544ad861cd5e))
|
|
1089
|
-
|
|
1090
|
-
# [1.3.0](https://github.com/entropic-bond/entropic-bond/compare/v1.2.0...v1.3.0) (2021-05-31)
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
### Features
|
|
1094
|
-
|
|
1095
|
-
* helper functions ([3a1a023](https://github.com/entropic-bond/entropic-bond/commit/3a1a023405b0d97fc365990abd819bb7591c62c1))
|
|
1096
|
-
|
|
1097
|
-
# [1.2.0](https://github.com/entropic-bond/entropic-bond/compare/v1.1.3...v1.2.0) (2021-05-30)
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
### Features
|
|
1101
|
-
|
|
1102
|
-
* find by deep properties, next, prev, sort, limit ([8dee858](https://github.com/entropic-bond/entropic-bond/commit/8dee8584fa70a3ecde6fe4b6da784980beae4b0d))
|
|
1103
|
-
|
|
1104
|
-
## [1.1.3](https://github.com/entropic-bond/entropic-bond/compare/v1.1.2...v1.1.3) (2021-05-29)
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
### Bug Fixes
|
|
1108
|
-
|
|
1109
|
-
* missing export type ([5234e64](https://github.com/entropic-bond/entropic-bond/commit/5234e64468d21c6ab37ac18a3eeb8839c80833a7))
|
|
1110
|
-
|
|
1111
|
-
## [1.1.2](https://github.com/entropic-bond/entropic-bond/compare/v1.1.1...v1.1.2) (2021-05-28)
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
### Bug Fixes
|
|
1115
|
-
|
|
1116
|
-
* build only cjs for compatibility reasons ([5836933](https://github.com/entropic-bond/entropic-bond/commit/58369336577964304a461e810b0f11aeb2c9de8d))
|
|
1117
|
-
|
|
1118
|
-
## [1.1.1](https://github.com/entropic-bond/entropic-bond/compare/v1.1.0...v1.1.1) (2021-05-28)
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
### Bug Fixes
|
|
1122
|
-
|
|
1123
|
-
* missed dependency uuid ([3df1492](https://github.com/entropic-bond/entropic-bond/commit/3df1492a0c9132f43e01965771a7bb19e69ae3ba))
|
|
1124
|
-
|
|
1125
|
-
# [1.1.0](https://github.com/entropic-bond/entropic-bond/compare/v1.0.2...v1.1.0) (2021-05-28)
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
### Features
|
|
1129
|
-
|
|
1130
|
-
* have vanill ts and commonJS modules ([5c38c35](https://github.com/entropic-bond/entropic-bond/commit/5c38c35ecaa2ada02455affb1627ae7912209aa7))
|
|
1131
|
-
|
|
1132
|
-
## [1.0.2](https://github.com/entropic-bond/entropic-bond/compare/v1.0.1...v1.0.2) (2021-05-28)
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
### Bug Fixes
|
|
1136
|
-
|
|
1137
|
-
* export missed types ([44a3b56](https://github.com/entropic-bond/entropic-bond/commit/44a3b56f59359f49fbdbe50e6aeb8d80181adbc7))
|
|
1138
|
-
|
|
1139
|
-
## [1.0.1](https://github.com/jseto/entropic-bond/compare/v1.0.0...v1.0.1) (2021-05-28)
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
### Bug Fixes
|
|
1143
|
-
|
|
1144
|
-
* set dark ages ([d96276a](https://github.com/jseto/entropic-bond/commit/d96276a681f3862ef13c2c0c37df97576dd71f11))
|
|
1145
|
-
|
|
1146
|
-
# 1.0.0 (2021-05-28)
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
### Bug Fixes
|
|
1150
|
-
|
|
1151
|
-
* to test CI ([4aafd83](https://github.com/jseto/entropic-bond/commit/4aafd8352cc944433088059e3a01c0433e18a003))
|