-
released this
2024-03-26 13:02:39 +00:00 | 0 commits to main since this releaseAdded auto-reconnect once the Websocket connection to the SignalR-Hub gets dropped for some reason.
What's Changed
- Added automatic reconnect after connection with SignalR-Hub lost by @MarciiTheDev in https://github.com/MarciiTheDev/marcsync-nodejs-client/pull/6
- Added automatic reconnect for Websockets by @MarciiTheDev in https://github.com/MarciiTheDev/marcsync-nodejs-client/pull/7
- Update package.json - Version 1.2.1 by @MarciiTheDev in https://github.com/MarciiTheDev/marcsync-nodejs-client/pull/8
- Update package.json - Version 1.2.1 by @MarciiTheDev in https://github.com/MarciiTheDev/marcsync-nodejs-client/pull/9
Full Changelog: https://github.com/MarciiTheDev/marcsync-nodejs-client/compare/v1.2.0...v1.2.1
Downloads
-
released this
2023-12-06 15:51:55 +00:00 | 6 commits to main since this releaseAdded the ability to generically interact with Entries inside of Collections, which now allows you to specify how entries are structured in your Database via Interfaces.
Example:
interface Dog extends EntryData { name: string, age: number, race: name } const collection = ms.getCollection<Dog>("dog-list"); collection.getEntries({ name: "Bella" }).then(entry => { console.log(`Bella's race is: ${entry.getValue("race")}`) });TypeScript automatically detects the type of all of the entry's values with the help of the interface we have created in the above example.
Changelog:
- Added Generic Types
- Removed
.getValuesAs<T>
What's Changed
- Added Generic Types - Version 2.0.0 by @MarciiTheDev in https://github.com/MarciiTheDev/marcsync-nodejs-client/pull/4
- Version 2.0.0 Release Merge by @MarciiTheDev in https://github.com/MarciiTheDev/marcsync-nodejs-client/pull/5
New Contributors
- @MarciiTheDev made their first contribution in https://github.com/MarciiTheDev/marcsync-nodejs-client/pull/4
Full Changelog: https://github.com/MarciiTheDev/marcsync-nodejs-client/compare/v1.1.4-dev...v1.2.0
Downloads
-
Fixed Issues Pre-Release
released this
2023-08-22 19:08:47 +00:00 | 9 commits to main since this releaseIssues fixed:
https://github.com/MarciiTheDev/marcsync-nodejs-client/issues/3Full Changelog: https://github.com/MarciiTheDev/marcsync-nodejs-client/compare/v1.1.3-dev...v1.1.4-dev
Downloads
-
Fixed Issues Pre-Release
released this
2023-07-19 14:13:12 +00:00 | 10 commits to main since this releaseIssues fixed:
#2Downloads
-
Fixed Issues Pre-Release
released this
2023-07-18 15:37:18 +00:00 | 12 commits to main since this releaseIssus fixed:
#1Downloads
-
Bug Fix: Query Without Arguments Pre-Release
released this
2023-07-12 16:13:10 +00:00 | 13 commits to main since this releaseFixed the issue where you couldn't query without proving the 'filter' argument.
You should now instead get a list of all documents found inside that collection. (just like in the Roblox Client)
Downloads
-
Websocket Support Pre-Release
released this
2023-07-03 19:41:47 +00:00 | 15 commits to main since this releaseAdded Websocket Support, meaning that you can now subscribe to the following events:
- entryCreated
- entryUpdated
- entryDeleted
More subscribe options (collectionCreated, collectionUpdated, collectionDeleted) will follow soon.
Downloads
-
Setup basic functionality Pre-Release
released this
2023-06-30 19:38:35 +00:00 | 19 commits to main since this releaseIn this first pre-release, and after some asking, I have setup some basic functionality similar to the MarcSync Roblox Client.
This build is not production ready and issues must be expected, as this is the first release.
If you are faceing any issues, you are free to report them on the Discord or via GitHub Issues and you can, as always, contribute the the project at any time.
Downloads