Skip to content

Commit 5582316

Browse files
authored
Merge pull request #1077 from Backbase/chore/fix-open-swift-apiclients
Make APIClient open to allow for overriding
2 parents f1cfe4a + 73ab73c commit 5582316

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

boat-scaffold/src/main/templates/boat-swift5/api.mustache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ extension {{moduleName}}Client {
2222
{{/swiftUseApiNamespace}}
2323

2424
/// {{classname}} protocol defines a blueprint of methods, properties, and other requirements for {{classname}} functionality.
25-
{{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}public{{/nonPublicApi}} protocol {{classname}}Protocol {
25+
{{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}open{{/nonPublicApi}} protocol {{classname}}Protocol {
2626
{{#operation}}
2727

2828
/**
@@ -53,7 +53,7 @@ extension {{moduleName}}Client {
5353

5454
{{#description}}
5555
/** {{description}} */{{/description}}
56-
{{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}public{{/nonPublicApi}} class {{classname}}: NSObject, DBSClient, {{classname}}Protocol {
56+
{{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}open{{/nonPublicApi}} class {{classname}}: NSObject, DBSClient, {{classname}}Protocol {
5757
{{#useMsdkSwift}}
5858
public var dataProvider: BackbaseSDK.DBSDataProvider?
5959
{{/useMsdkSwift}}

0 commit comments

Comments
 (0)