Skip to content
This repository was archived by the owner on Aug 10, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/data/languages/languageData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default {
},
liveObjects: {
javascript: '2.21',
swift: '0.4',
swift: '1.2',

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
swift: '1.2',
swift: '1.3',

Is this supposed to be 1.3 since we are introducing new plugin API to cocoa library.
cc @lawrence-forooghian @maratal

java: '1.8',
},
liveSync: {
Expand Down
5 changes: 3 additions & 2 deletions src/data/nav/liveobjects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,9 @@ export default {
external: true,
},
{
link: 'https://sdk.ably.com/builds/ably/ably-liveobjects-swift-plugin/main/AblyLiveObjects/documentation/ablyliveobjects/',
name: 'Swift plugin',
// TODO: verify this URL resolves once the ably-cocoa-hosted AblyLiveObjects DocC is published
link: 'https://sdk.ably.com/builds/ably/ably-cocoa/main/AblyLiveObjects/documentation/ablyliveobjects/',
name: 'Swift SDK',
external: true,
},
{
Expand Down
9 changes: 3 additions & 6 deletions src/pages/docs/api/realtime-sdk/channels.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -103,18 +103,15 @@ Provides access to the [`RealtimeAnnotations`](#realtime-annotations) object for

</If>

<If lang="java">
<If lang="swift,java">
#### object <a id="object" />

<If lang="java">
A public field providing access to the [RealtimeObject](/docs/liveobjects) for this channel, which can be used to read, modify and subscribe to LiveObjects on a channel.
</If>
</If>

<If lang="swift">
#### objects <a id="objects" />

Provides access to the [Objects](/docs/liveobjects) object for this channel which can be used to read, modify and subscribe to LiveObjects on a channel.
An extension property provided by the AblyLiveObjects plugin, giving access to the [RealtimeObject](/docs/liveobjects) for this channel, which can be used to read, modify and subscribe to LiveObjects on a channel.
</If>
</If>

### Channel Methods
Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/liveobjects/batch.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ meta_description: "Group multiple objects operations into a single channel messa

<If lang="swift">
<Aside data-type="note">
Batch operations are not yet supported in LiveObjects Swift; support is coming soon.
Batch operations are not supported in LiveObjects Swift. Each mutation (`set`, `remove`, `increment`, `decrement`) publishes as its own message and is individually atomic. See the [LiveMap](/docs/liveobjects/map?lang=swift) and [LiveCounter](/docs/liveobjects/counter?lang=swift) documentation for the single-operation methods. To apply multiple operations atomically, use [batch operations via the LiveObjects REST API](/docs/liveobjects/rest-api-usage#batch-operations) instead.
</Aside>
</If>

Expand Down
Loading