Hiromi Ogawa
Hiromi Ogawa
- [ ] `pages/` https://github.com/coord-e/misskey-rs/pull/65 - [ ] `admin/` - [ ] `games/` - [ ] `auth/` - [ ] `room/` - [ ] `federation/`
Currently `Aid`, `Meid` and `ObjectId` exposes their (parsed) fields publicly. If we can stop exposing them we can rely on the format of string representation to limit the range of...
https://doc.rust-lang.org/std/time/struct.SystemTime.html
v0.3.0
- `misskey` 0.3.0 - `misskey-api` 0.3.0 - `misskey-core` 0.3.0 - `misskey-http` 0.3.0 - `misskey-websocket` 0.3.0 - `misskey-util` 0.2.0
You can't have more than two connections to the "shouldShare" channel. https://github.com/syuilo/misskey/blob/572e475b394aab0fd752783da8648b4f096653fd/src/server/api/stream/index.ts#L220-L222 Quoting the current behavior from the [documentation](https://docs.rs/misskey/0.2.0/misskey/trait.StreamingClientExt.html#method.main_stream): > Note that currently it is not possible to have multiple...
e.g. https://docs.rs/misskey/0.2.0/misskey/model/user/struct.User.html The possible cause is that `docsrs` flag is not propagated to `misskey_api` docs while building `misskey` docs.
`ApiErrorId` is just a newtype of `String`. https://github.com/coord-e/misskey-rs/blob/273c28a43b60da6ad0946d91f5bc62238fdc3e00/misskey-core/src/model.rs#L13 However, it seems that Misskey's error ID is actually a UUID. Implementing `ApiErrorID` with `Uuid` has a big advantage, especially in terms...
- We only support fixed set of root-level message type (`subnote`, `channel`, `api`, etc..) - `typingOnMesssage` and `typingOnChannel` are added in v12.71.0 - It is nice to support arbitrary message...
- Save API responses and use it for testing - This can bring back per-version / ID method `misskey-api` testing to the stable CI
Some of the current model types are based on the "packed" representation in misskey. There are `pack` functions that take parameters, and the form of the packed representation returned depends...