Skip to content
Snippets Groups Projects

Update Bindings

Merged Dariusz Rybicki requested to merge feature/update-bindings into development
2 files
+ 29
0
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -14,6 +14,7 @@ public struct E2E {
@@ -14,6 +14,7 @@ public struct E2E {
public var removeService: E2ERemoveService
public var removeService: E2ERemoveService
public var hasAuthenticatedChannel: E2EHasAuthenticatedChannel
public var hasAuthenticatedChannel: E2EHasAuthenticatedChannel
public var requestAuthenticatedChannel: E2ERequestAuthenticatedChannel
public var requestAuthenticatedChannel: E2ERequestAuthenticatedChannel
 
public var resetAuthenticatedChannel: E2EResetAuthenticatedChannel
public var callAllReceivedRequests: E2ECallAllReceivedRequests
public var callAllReceivedRequests: E2ECallAllReceivedRequests
public var send: E2ESend
public var send: E2ESend
@@ -36,6 +37,7 @@ extension E2E {
@@ -36,6 +37,7 @@ extension E2E {
removeService: .live(bindingsE2E),
removeService: .live(bindingsE2E),
hasAuthenticatedChannel: .live(bindingsE2E),
hasAuthenticatedChannel: .live(bindingsE2E),
requestAuthenticatedChannel: .live(bindingsE2E),
requestAuthenticatedChannel: .live(bindingsE2E),
 
resetAuthenticatedChannel: .live(bindingsE2E),
callAllReceivedRequests: .live(bindingsE2E),
callAllReceivedRequests: .live(bindingsE2E),
send: .live(bindingsE2E)
send: .live(bindingsE2E)
)
)
@@ -57,6 +59,7 @@ extension E2E {
@@ -57,6 +59,7 @@ extension E2E {
removeService: .unimplemented,
removeService: .unimplemented,
hasAuthenticatedChannel: .unimplemented,
hasAuthenticatedChannel: .unimplemented,
requestAuthenticatedChannel: .unimplemented,
requestAuthenticatedChannel: .unimplemented,
 
resetAuthenticatedChannel: .unimplemented,
callAllReceivedRequests: .unimplemented,
callAllReceivedRequests: .unimplemented,
send: .unimplemented
send: .unimplemented
)
)
Loading