Skip to content

Commit a308575

Browse files
committed
Naming
1 parent e5caee2 commit a308575

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Sources/LiveKit/Agent/Conversation+Environment.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public extension EnvironmentValues {
3535

3636
@MainActor
3737
@propertyWrapper
38-
public struct LKConversation: DynamicProperty {
38+
public struct LiveKitConversation: DynamicProperty {
3939
@EnvironmentObject private var conversation: Conversation
4040

4141
public init() {}
@@ -47,7 +47,7 @@ public struct LKConversation: DynamicProperty {
4747

4848
@MainActor
4949
@propertyWrapper
50-
public struct LKLocalMedia: DynamicProperty {
50+
public struct LiveKitLocalMedia: DynamicProperty {
5151
@EnvironmentObject private var localMedia: LocalMedia
5252

5353
public init() {}
@@ -59,13 +59,13 @@ public struct LKLocalMedia: DynamicProperty {
5959

6060
@MainActor
6161
@propertyWrapper
62-
public struct LKAgent: DynamicProperty {
62+
public struct LiveKitAgent: DynamicProperty {
6363
@EnvironmentObject private var conversation: Conversation
6464
@Environment(\.agentName) private var environmentName
6565

6666
let agentName: String?
6767

68-
public init(named agentName: String? = nil) {
68+
public init(_ agentName: String? = nil) {
6969
self.agentName = agentName
7070
}
7171

0 commit comments

Comments
 (0)