-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Package and podspec with version 1.0.0-alpha and checksum 1b84…
…8694116d145e800000d797b93230ed17d51a913c912df88475d0bdb6bd5d
- Loading branch information
1 parent
2c68fec
commit 3ad256b
Showing
5 changed files
with
85 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,76 @@ | ||
// extension required due to limitations of KMM not able to generate default values in obj-c | ||
public extension VaultData { | ||
convenience init( | ||
idAddressLine1: String? = nil, | ||
idAddressLine2: String? = nil, | ||
idCitizenships: [Iso3166TwoDigitCountryCode]? = nil, | ||
idCity: String? = nil, | ||
idCountry: String? = nil, | ||
idDob: String? = nil, | ||
idDriversLicenseNumber: String? = nil, | ||
idDriversLicenseState: String? = nil, | ||
idEmail: String? = nil, | ||
idFirstName: String? = nil, | ||
idItin: String? = nil, | ||
idLastName: String? = nil, | ||
idMiddleName: String? = nil, | ||
idNationality: String? = nil, | ||
idPhoneNumber: String? = nil, | ||
idSsn4: String? = nil, | ||
idSsn9: String? = nil, | ||
idState: String? = nil, | ||
idUsLegalStatus: String? = nil, | ||
idUsTaxId: String? = nil, | ||
idVisaExpirationDate: String? = nil, | ||
idVisaKind: String? = nil, | ||
idZip: String? = nil, | ||
investorProfileAnnualIncome: String? = nil, | ||
investorProfileBrokerageFirmEmployer: String? = nil, | ||
investorProfileDeclarations: [InvestorProfileDeclaration]? = nil, | ||
investorProfileEmployer: String? = nil, | ||
investorProfileEmploymentStatus: String? = nil, | ||
investorProfileFamilyMemberNames: [String]? = nil, | ||
investorProfileFundingSources: [InvestorProfileFundingSource]? = nil, | ||
investorProfileInvestmentGoals: [InvestorProfileInvestmentGoal]? = nil, | ||
investorProfileNetWorth: String? = nil, | ||
investorProfileOccupation: String? = nil, | ||
investorProfilePoliticalOrganization: String? = nil, | ||
investorProfileRiskTolerance: String? = nil, | ||
investorProfileSeniorExecutiveSymbols: [String]? = nil | ||
) { | ||
self.init( | ||
idAddressLine1: idAddressLine1, | ||
idAddressLine2: idAddressLine2, | ||
idCitizenships: idCitizenships, | ||
idCity: idCity, | ||
idCountry: idCountry, | ||
idDob: idDob, | ||
idDriversLicenseNumber: idDriversLicenseNumber, | ||
idDriversLicenseState: idDriversLicenseState, | ||
idEmail: idEmail, | ||
idFirstName: idFirstName, | ||
idItin: idItin, | ||
idLastName: idLastName, | ||
idMiddleName: idMiddleName, | ||
idNationality: idNationality, | ||
idPhoneNumber: idPhoneNumber, | ||
idSsn4: idSsn4, | ||
idSsn9: idSsn9, | ||
idState: idState, | ||
idUsLegalStatus: idUsLegalStatus, | ||
idUsTaxId: idUsTaxId, | ||
idVisaExpirationDate: idVisaExpirationDate, | ||
idVisaKind: idVisaKind, | ||
idZip: idZip, | ||
investorProfileAnnualIncome: investorProfileAnnualIncome, | ||
investorProfileBrokerageFirmEmployer: investorProfileBrokerageFirmEmployer, | ||
investorProfileDeclarations: investorProfileDeclarations, | ||
investorProfileEmployer: investorProfileEmployer, | ||
investorProfileEmploymentStatus: investorProfileEmploymentStatus, | ||
investorProfileFamilyMemberNames: investorProfileFamilyMemberNames, | ||
investorProfileFundingSources: investorProfileFundingSources, | ||
investorProfileInvestmentGoals: investorProfileInvestmentGoals, | ||
investorProfileNetWorth: investorProfileNetWorth, | ||
investorProfileOccupation: investorProfileOccupation, | ||
investorProfilePoliticalOrganization: investorProfilePoliticalOrganization, | ||
investorProfileRiskTolerance: investorProfileRiskTolerance, | ||
investorProfileSeniorExecutiveSymbols: investorProfileSeniorExecutiveSymbols | ||
) | ||
} | ||
} | ||
static func createVault( idAddressLine1: String? = nil, | ||
idAddressLine2: String? = nil, | ||
idCitizenships: [Iso3166TwoDigitCountryCode]? = nil, | ||
idCity: String? = nil, | ||
idCountry: String? = nil, | ||
idDob: String? = nil, | ||
idDriversLicenseNumber: String? = nil, | ||
idDriversLicenseState: String? = nil, | ||
idEmail: String? = nil, | ||
idFirstName: String? = nil, | ||
idItin: String? = nil, | ||
idLastName: String? = nil, | ||
idMiddleName: String? = nil, | ||
idNationality: String? = nil, | ||
idPhoneNumber: String? = nil, | ||
idSsn4: String? = nil, | ||
idSsn9: String? = nil, | ||
idState: String? = nil, | ||
idUsLegalStatus: String? = nil, | ||
idUsTaxId: String? = nil, | ||
idVisaExpirationDate: String? = nil, | ||
idVisaKind: String? = nil, | ||
idZip: String? = nil, | ||
investorProfileAnnualIncome: String? = nil, | ||
investorProfileBrokerageFirmEmployer: String? = nil, | ||
investorProfileDeclarations: [InvestorProfileDeclaration]? = nil, | ||
investorProfileEmployer: String? = nil, | ||
investorProfileEmploymentStatus: String? = nil, | ||
investorProfileFamilyMemberNames: [String]? = nil, | ||
investorProfileFundingSources: [InvestorProfileFundingSource]? = nil, | ||
investorProfileInvestmentGoals: [InvestorProfileInvestmentGoal]? = nil, | ||
investorProfileNetWorth: String? = nil, | ||
investorProfileOccupation: String? = nil, | ||
investorProfilePoliticalOrganization: String? = nil, | ||
investorProfileRiskTolerance: String? = nil, | ||
investorProfileSeniorExecutiveSymbols: [String]? = nil) -> VaultData { | ||
return VaultData( idAddressLine1: idAddressLine1, | ||
idAddressLine2: idAddressLine2, | ||
idCitizenships: idCitizenships, | ||
idCity: idCity, | ||
idCountry: idCountry, | ||
idDob: idDob, | ||
idDriversLicenseNumber: idDriversLicenseNumber, | ||
idDriversLicenseState: idDriversLicenseState, | ||
idEmail: idEmail, | ||
idFirstName: idFirstName, | ||
idItin: idItin, | ||
idLastName: idLastName, | ||
idMiddleName: idMiddleName, | ||
idNationality: idNationality, | ||
idPhoneNumber: idPhoneNumber, | ||
idSsn4: idSsn4, | ||
idSsn9: idSsn9, | ||
idState: idState, | ||
idUsLegalStatus: idUsLegalStatus, | ||
idUsTaxId: idUsTaxId, | ||
idVisaExpirationDate: idVisaExpirationDate, | ||
idVisaKind: idVisaKind, | ||
idZip: idZip, | ||
investorProfileAnnualIncome: investorProfileAnnualIncome, | ||
investorProfileBrokerageFirmEmployer: investorProfileBrokerageFirmEmployer, | ||
investorProfileDeclarations: investorProfileDeclarations, | ||
investorProfileEmployer: investorProfileEmployer, | ||
investorProfileEmploymentStatus: investorProfileEmploymentStatus, | ||
investorProfileFamilyMemberNames: investorProfileFamilyMemberNames, | ||
investorProfileFundingSources: investorProfileFundingSources, | ||
investorProfileInvestmentGoals: investorProfileInvestmentGoals, | ||
investorProfileNetWorth: investorProfileNetWorth, | ||
investorProfileOccupation: investorProfileOccupation, | ||
investorProfilePoliticalOrganization: investorProfilePoliticalOrganization, | ||
investorProfileRiskTolerance: investorProfileRiskTolerance, | ||
investorProfileSeniorExecutiveSymbols: investorProfileSeniorExecutiveSymbols) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
### Changelog for Swift onboarding components SDK | ||
*Updating this file is one of the requirements for GitHub CI/CD for Swift package release* | ||
|
||
# v0.2.42 | ||
Initial test release! | ||
|
||
# v1.0.0-alpha | ||
Initial alpha release | ||
|
||
# v0.2.43 | ||
Initial test release! |