@@ -20,12 +20,12 @@ final class ViewsAssembly {
2020 self . servicesAssembly = servicesAssembly
2121 }
2222
23- func viewController( with screenId: String , delegate: NoCodesViewControllerDelegate , purchaseDelegate: NoCodesPurchaseDelegate ? , screenCustomizationDelegate: NoCodesScreenCustomizationDelegate ? , presentationConfiguration: NoCodesPresentationConfiguration , customLocale: String ? = nil , theme: NoCodesTheme = . auto) -> NoCodesViewController {
24- return NoCodesViewController ( screenId: screenId, contextKey: nil , delegate: delegate, purchaseDelegate: purchaseDelegate, screenCustomizationDelegate: screenCustomizationDelegate, noCodesMapper: miscAssembly. noCodesMapper ( ) , noCodesService: servicesAssembly. noCodesService ( ) , screenEventsService: servicesAssembly. screenEventsService ( ) , viewsAssembly: self , logger: miscAssembly. loggerWrapper ( ) , presentationConfiguration: presentationConfiguration, contextBuilder: miscAssembly. contextBuilder ( ) , htmlInjector: miscAssembly. htmlInjector ( ) , customLocale: customLocale, theme: theme)
23+ func viewController( with screenId: String , delegate: NoCodesViewControllerDelegate , purchaseDelegate: NoCodesPurchaseDelegate ? , screenCustomizationDelegate: NoCodesScreenCustomizationDelegate ? , customVariablesDelegate : NoCodesCustomVariablesDelegate ? , presentationConfiguration: NoCodesPresentationConfiguration , customLocale: String ? = nil , theme: NoCodesTheme = . auto) -> NoCodesViewController {
24+ return NoCodesViewController ( screenId: screenId, contextKey: nil , delegate: delegate, purchaseDelegate: purchaseDelegate, screenCustomizationDelegate: screenCustomizationDelegate, customVariablesDelegate : customVariablesDelegate , noCodesMapper: miscAssembly. noCodesMapper ( ) , noCodesService: servicesAssembly. noCodesService ( ) , screenEventsService: servicesAssembly. screenEventsService ( ) , viewsAssembly: self , logger: miscAssembly. loggerWrapper ( ) , presentationConfiguration: presentationConfiguration, contextBuilder: miscAssembly. contextBuilder ( ) , htmlInjector: miscAssembly. htmlInjector ( ) , customLocale: customLocale, theme: theme)
2525 }
2626
27- func viewController( withContextKey contextKey: String , delegate: NoCodesViewControllerDelegate , purchaseDelegate: NoCodesPurchaseDelegate ? , screenCustomizationDelegate: NoCodesScreenCustomizationDelegate ? , presentationConfiguration: NoCodesPresentationConfiguration , customLocale: String ? = nil , theme: NoCodesTheme = . auto) -> NoCodesViewController {
28- return NoCodesViewController ( screenId: nil , contextKey: contextKey, delegate: delegate, purchaseDelegate: purchaseDelegate, screenCustomizationDelegate: screenCustomizationDelegate, noCodesMapper: miscAssembly. noCodesMapper ( ) , noCodesService: servicesAssembly. noCodesService ( ) , screenEventsService: servicesAssembly. screenEventsService ( ) , viewsAssembly: self , logger: miscAssembly. loggerWrapper ( ) , presentationConfiguration: presentationConfiguration, contextBuilder: miscAssembly. contextBuilder ( ) , htmlInjector: miscAssembly. htmlInjector ( ) , customLocale: customLocale, theme: theme)
27+ func viewController( withContextKey contextKey: String , delegate: NoCodesViewControllerDelegate , purchaseDelegate: NoCodesPurchaseDelegate ? , screenCustomizationDelegate: NoCodesScreenCustomizationDelegate ? , customVariablesDelegate : NoCodesCustomVariablesDelegate ? , presentationConfiguration: NoCodesPresentationConfiguration , customLocale: String ? = nil , theme: NoCodesTheme = . auto) -> NoCodesViewController {
28+ return NoCodesViewController ( screenId: nil , contextKey: contextKey, delegate: delegate, purchaseDelegate: purchaseDelegate, screenCustomizationDelegate: screenCustomizationDelegate, customVariablesDelegate : customVariablesDelegate , noCodesMapper: miscAssembly. noCodesMapper ( ) , noCodesService: servicesAssembly. noCodesService ( ) , screenEventsService: servicesAssembly. screenEventsService ( ) , viewsAssembly: self , logger: miscAssembly. loggerWrapper ( ) , presentationConfiguration: presentationConfiguration, contextBuilder: miscAssembly. contextBuilder ( ) , htmlInjector: miscAssembly. htmlInjector ( ) , customLocale: customLocale, theme: theme)
2929 }
3030}
3131
0 commit comments