Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@unit-finance/unit-node-sdk",
"version": "1.3.4",
"version": "1.3.5",
"description": "",
"main": "dist/unit.js",
"types": "dist/unit.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion tests/orgTokens.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe("Create API Tokens", () => {
"attributes": {
"description": "test token",
"scope": "customers applications",
"expiration": "2025-09-01T13:47:17.000Z",
"expiration": "2026-09-01T13:47:17.000Z",
"resources": [resource]
}
}
Expand Down
18 changes: 9 additions & 9 deletions types/applicationForm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -346,47 +346,47 @@ export interface ApplicationFormSettingsOverride {
/**
* URL that is presented to the user when an application has been submitted
*/
redirectUrl: string
redirectUrl?: string

/**
* Privacy Policy
*/
privacyPolicyUrl: string
privacyPolicyUrl?: string

/**
* Consent to Electronic Disclosures
*/
electronicDisclosuresUrl: string
electronicDisclosuresUrl?: string

/**
* Deposit Terms & Conditions
*/
depositTermsUrl: string
depositTermsUrl?: string

/**
* Client Terms of Service
*/
clientTermsUrl: string
clientTermsUrl?: string

/**
* Cardholder Terms and Conditions
*/
cardholderTermsUrl: string
cardholderTermsUrl?: string

/**
* Cash Advance Terms and Conditions
*/
cashAdvancedTermsUrl: string
cashAdvancedTermsUrl?: string

/**
* Debit Card Disclosure
*/
debitCardDisclosureUrl: string
debitCardDisclosureUrl?: string

/**
* Array of additional disclosures that were not covered by the above links
*/
additionalDisclosures: Record<string, string>[]
additionalDisclosures?: Record<string, string>[]

/**
* Optional. If true, the applicant will be required to complete the selfie verification process when an ID document is required.
Expand Down
Loading