Skip to content

Commit

Permalink
Fix return type of batchPresence
Browse files Browse the repository at this point in the history
This was a mistake in 038b50e; the API response is a single BatchResult. RSC23
was already correct, just the IDL needs changing.
  • Loading branch information
lawrence-forooghian committed Jul 26, 2023
1 parent c2155c5 commit 595fdce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion textile/features.textile
Original file line number Diff line number Diff line change
Expand Up @@ -1806,7 +1806,7 @@ class RestClient: // RSC*
time() => io Time // RSC16
batchPublish(BatchPublishSpec) => io BatchResult<BatchPublishSuccessResult | BatchPublishFailureResult> // RSC22
batchPublish(BatchPublishSpec[]) => io BatchResult<BatchPublishSuccessResult | BatchPublishFailureResult>[] // RSC22
batchPresence(string[]) => io BatchResult<BatchPresenceSuccessResult | BatchPresenceFailureResult>[] // RSC23
batchPresence(string[]) => io BatchResult<BatchPresenceSuccessResult | BatchPresenceFailureResult> // RSC23

class RealtimeClient: // RTC*
constructor(keyOrTokenStr: String) // RTC12
Expand Down

0 comments on commit 595fdce

Please sign in to comment.