@iebh/tera-fy 1.15.9 → 2.0.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/CHANGELOG.md +51 -0
- package/api.md +620 -494
- package/dist/plugin.vue2.es2019.js +2294 -1
- package/dist/terafy.es2019.js +2 -2
- package/dist/terafy.js +2 -2
- package/documentation.yml +9 -1
- package/lib/syncro.js +592 -0
- package/lib/terafy.client.js +153 -24
- package/lib/terafy.server.js +61 -21
- package/package.json +5 -1
- package/plugins/firebase.js +122 -0
- package/plugins/vue2.js +83 -94
- package/plugins/vue3.js +38 -142
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,56 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.1](https://github.com/IEBH/TERA-fy/compare/v2.0.0...v2.0.1) (2025-02-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### devops
|
|
7
|
+
|
|
8
|
+
* Added flushState() handlers to all entities ([a6717a8](https://github.com/IEBH/TERA-fy/commit/a6717a892738b816ebcf3dc9b29367a6e5eec73d))
|
|
9
|
+
|
|
10
|
+
### feat
|
|
11
|
+
|
|
12
|
+
* Can now export the Syncro library directly ([d7de07b](https://github.com/IEBH/TERA-fy/commit/d7de07b8c8dc4661e4d22aa29dd68a4e6e5a00c4))
|
|
13
|
+
* fromFirestoreFields() utility function ([ac5fd38](https://github.com/IEBH/TERA-fy/commit/ac5fd381486b68cd8e43b6fb6ea2ad553a0deaac))
|
|
14
|
+
* Presence / Heartbeat functionality ([d5812fd](https://github.com/IEBH/TERA-fy/commit/d5812fdbb8ccd295a048dcef5f1a21e5f8e8dc9d))
|
|
15
|
+
* Syncro.destroy() ([66f7d30](https://github.com/IEBH/TERA-fy/commit/66f7d30700b10618d778104452009381c7934bae))
|
|
16
|
+
|
|
17
|
+
### fix
|
|
18
|
+
|
|
19
|
+
* Bump NPM:@mfdc/marshal to fix downstream problem with non-string seralized data ([47eb955](https://github.com/IEBH/TERA-fy/commit/47eb9555587716039b60fc57b17a7df861a3aafa))
|
|
20
|
+
* Various documentation tidyups ([9e81dc4](https://github.com/IEBH/TERA-fy/commit/9e81dc4a53a0b4e81056c61b1be61e9c13e515b0))
|
|
21
|
+
|
|
22
|
+
### refactor
|
|
23
|
+
|
|
24
|
+
* Moved session initalizer from classdef into constructor - Cloudflare gets upset when trying to use Crypto outside of a function ([4473db4](https://github.com/IEBH/TERA-fy/commit/4473db4a7b99090bf34262dc536dcde71cad7cc4))
|
|
25
|
+
* Remove unnecessary cleaning function when using {from,to}Firestore() ([b81396d](https://github.com/IEBH/TERA-fy/commit/b81396d3a6d206b95eca58e4168a0f94f78932db))
|
|
26
|
+
* Removed useless presence syncro entity as its just as likely to cause issues in the future anyway ([761c373](https://github.com/IEBH/TERA-fy/commit/761c37322402d850bbeb0a534029250b11572ceb))
|
|
27
|
+
|
|
28
|
+
# [2.0.0](https://github.com/IEBH/TERA-fy/compare/v1.15.9...v2.0.0) (2025-02-16)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### feat
|
|
32
|
+
|
|
33
|
+
* getCredentials() ([c4dfabd](https://github.com/IEBH/TERA-fy/commit/c4dfabd54772ea61f360021d98df7d54c1702000))
|
|
34
|
+
* getCredentials() ([afa601e](https://github.com/IEBH/TERA-fy/commit/afa601e0601c12f7e1fc6c4c31e19a0b041e2f21))
|
|
35
|
+
* listNamespaces() ([40239c5](https://github.com/IEBH/TERA-fy/commit/40239c5feb3724da3efc05e638329cdfafc93340))
|
|
36
|
+
* Prorotype usage for new Firestore mounting ([0b25973](https://github.com/IEBH/TERA-fy/commit/0b259730cd64e1f9ec101f8da8969f269ba3222e))
|
|
37
|
+
|
|
38
|
+
### fix
|
|
39
|
+
|
|
40
|
+
* Confision between isHtml & bodyHtml -> isHtml ([60a479e](https://github.com/IEBH/TERA-fy/commit/60a479ecf84181f52e9a4fa70b248c07f6b91bd6))
|
|
41
|
+
* mixin() now supports layered class inheritence ([dd8c5d7](https://github.com/IEBH/TERA-fy/commit/dd8c5d78e7d06be755513fb2e218f1a6ba9d8bf1))
|
|
42
|
+
* mixin() now supports non-function inheritence ([02ff2c2](https://github.com/IEBH/TERA-fy/commit/02ff2c2d8b74289227bde62e8f042480a0d3d84f))
|
|
43
|
+
* Various copy-paste typos ([c6198c8](https://github.com/IEBH/TERA-fy/commit/c6198c8246a9e96295619983356e6bad9f4c418f))
|
|
44
|
+
|
|
45
|
+
### refactor
|
|
46
|
+
|
|
47
|
+
* Depreciate setProjectStateFlush() ([64530d5](https://github.com/IEBH/TERA-fy/commit/64530d53d907ff5c5dd012bdc40bc9fc07b9d5b4))
|
|
48
|
+
|
|
49
|
+
### task
|
|
50
|
+
|
|
51
|
+
* Beginning of Firebase implementation core ([d65b9c0](https://github.com/IEBH/TERA-fy/commit/d65b9c0cb095c717b9a2192e979f296598f38765))
|
|
52
|
+
* Vue@2 plugin now working ([437a414](https://github.com/IEBH/TERA-fy/commit/437a4140bf321d23e4842bce2cb6d3d4d82c66dd))
|
|
53
|
+
|
|
3
54
|
## [1.15.9](https://github.com/IEBH/TERA-fy/compare/v1.15.8...v1.15.9) (2025-01-22)
|
|
4
55
|
|
|
5
56
|
|