Skip to content

Commit

Permalink
Release v0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Jul 19, 2023
1 parent e597ac0 commit c972ed0
Show file tree
Hide file tree
Showing 27 changed files with 114 additions and 78 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mercoa/javascript",
"version": "v0.2.3",
"version": "v0.2.4",
"private": false,
"repository": "https://github.com/mercoa-finance/javascript",
"main": "./index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/api/resources/bankLookup/client/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class BankLookup {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
queryParameters: _queryParams,
Expand Down
24 changes: 12 additions & 12 deletions src/api/resources/entity/client/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class Entity {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
queryParameters: _queryParams,
Expand Down Expand Up @@ -172,7 +172,7 @@ export class Entity {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
queryParameters: _queryParams,
Expand Down Expand Up @@ -248,7 +248,7 @@ export class Entity {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
body: await serializers.EntityRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
Expand Down Expand Up @@ -325,7 +325,7 @@ export class Entity {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -404,7 +404,7 @@ export class Entity {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
body: await serializers.EntityUpdateRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
Expand Down Expand Up @@ -481,7 +481,7 @@ export class Entity {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -552,7 +552,7 @@ export class Entity {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -622,7 +622,7 @@ export class Entity {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -693,7 +693,7 @@ export class Entity {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -769,7 +769,7 @@ export class Entity {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -844,7 +844,7 @@ export class Entity {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -920,7 +920,7 @@ export class Entity {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
body: await serializers.EntityAddPayeesRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class ApprovalPolicy {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -117,7 +117,7 @@ export class ApprovalPolicy {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
body: await serializers.ApprovalPolicyRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
Expand Down Expand Up @@ -217,7 +217,7 @@ export class ApprovalPolicy {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -301,7 +301,7 @@ export class ApprovalPolicy {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
body: await serializers.ApprovalPolicyUpdateRequest.jsonOrThrow(request, {
Expand Down Expand Up @@ -400,7 +400,7 @@ export class ApprovalPolicy {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class Counterparty {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
queryParameters: _queryParams,
Expand Down
4 changes: 2 additions & 2 deletions src/api/resources/entity/resources/invoice/client/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class Invoice {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
queryParameters: _queryParams,
Expand Down Expand Up @@ -193,7 +193,7 @@ export class Invoice {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
queryParameters: _queryParams,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class NotificationPolicy {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -117,7 +117,7 @@ export class NotificationPolicy {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -199,7 +199,7 @@ export class NotificationPolicy {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
body: await serializers.NotificationPolicyRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class PaymentMethod {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
queryParameters: _queryParams,
Expand Down Expand Up @@ -131,7 +131,7 @@ export class PaymentMethod {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
body: await serializers.PaymentMethodRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
Expand Down Expand Up @@ -213,7 +213,7 @@ export class PaymentMethod {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -295,7 +295,7 @@ export class PaymentMethod {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
body: await serializers.PaymentMethodUpdateRequest.jsonOrThrow(request, {
Expand Down Expand Up @@ -376,7 +376,7 @@ export class PaymentMethod {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -452,7 +452,7 @@ export class PaymentMethod {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -529,7 +529,7 @@ export class PaymentMethod {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
body: await serializers.entity.CompleteMicroDepositsRequest.jsonOrThrow(request, {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class Representative {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -115,7 +115,7 @@ export class Representative {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
body: await serializers.RepresentativeRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
Expand Down Expand Up @@ -197,7 +197,7 @@ export class Representative {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -275,7 +275,7 @@ export class Representative {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down
12 changes: 6 additions & 6 deletions src/api/resources/entity/resources/user/client/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class User {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -115,7 +115,7 @@ export class User {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
body: await serializers.EntityUserRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
Expand Down Expand Up @@ -194,7 +194,7 @@ export class User {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -276,7 +276,7 @@ export class User {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
body: await serializers.EntityUserRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
Expand Down Expand Up @@ -355,7 +355,7 @@ export class User {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down Expand Up @@ -428,7 +428,7 @@ export class User {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class Notifications {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
queryParameters: _queryParams,
Expand Down Expand Up @@ -150,7 +150,7 @@ export class Notifications {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mercoa/javascript",
"X-Fern-SDK-Version": "v0.2.3",
"X-Fern-SDK-Version": "v0.2.4",
},
contentType: "application/json",
timeoutMs: 60000,
Expand Down
Loading

0 comments on commit c972ed0

Please sign in to comment.