Skip to content

Commit cc11cf2

Browse files
authored
Merge pull request #525 from unit-finance/version-bump-1.3.5
Version 1.3.5
2 parents 80e355b + 856a30d commit cc11cf2

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@unit-finance/unit-node-sdk",
3-
"version": "1.3.4",
3+
"version": "1.3.5",
44
"description": "",
55
"main": "dist/unit.js",
66
"types": "dist/unit.d.ts",

tests/orgTokens.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ describe("Create API Tokens", () => {
1414
"attributes": {
1515
"description": "test token",
1616
"scope": "customers applications",
17-
"expiration": "2025-09-01T13:47:17.000Z",
17+
"expiration": "2026-09-01T13:47:17.000Z",
1818
"resources": [resource]
1919
}
2020
}

types/applicationForm.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -346,47 +346,47 @@ export interface ApplicationFormSettingsOverride {
346346
/**
347347
* URL that is presented to the user when an application has been submitted
348348
*/
349-
redirectUrl: string
349+
redirectUrl?: string
350350

351351
/**
352352
* Privacy Policy
353353
*/
354-
privacyPolicyUrl: string
354+
privacyPolicyUrl?: string
355355

356356
/**
357357
* Consent to Electronic Disclosures
358358
*/
359-
electronicDisclosuresUrl: string
359+
electronicDisclosuresUrl?: string
360360

361361
/**
362362
* Deposit Terms & Conditions
363363
*/
364-
depositTermsUrl: string
364+
depositTermsUrl?: string
365365

366366
/**
367367
* Client Terms of Service
368368
*/
369-
clientTermsUrl: string
369+
clientTermsUrl?: string
370370

371371
/**
372372
* Cardholder Terms and Conditions
373373
*/
374-
cardholderTermsUrl: string
374+
cardholderTermsUrl?: string
375375

376376
/**
377377
* Cash Advance Terms and Conditions
378378
*/
379-
cashAdvancedTermsUrl: string
379+
cashAdvancedTermsUrl?: string
380380

381381
/**
382382
* Debit Card Disclosure
383383
*/
384-
debitCardDisclosureUrl: string
384+
debitCardDisclosureUrl?: string
385385

386386
/**
387387
* Array of additional disclosures that were not covered by the above links
388388
*/
389-
additionalDisclosures: Record<string, string>[]
389+
additionalDisclosures?: Record<string, string>[]
390390

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

0 commit comments

Comments
 (0)