Skip to content

Commit b4d4981

Browse files
✨ Release 1.2.14
- Tipagem de emissão de cobranças de cartão não exige mais endereço de cobrança e endereço do cliente, são dados opcionais agora
1 parent ce2b506 commit b4d4981

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

dist/cjs/index.cjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ var exports$1 = {
620620
}
621621
};
622622
var description = "Module for integration with Efi Bank API";
623-
var version = "1.2.13";
623+
var version = "1.2.14";
624624
var author = "Efi Bank - Consultoria Técnica | João Vitor Oliveira | João Lucas";
625625
var license = "MIT";
626626
var repository = "efipay/sdk-node-apis-efi";
@@ -1107,7 +1107,7 @@ class CobrancasMethods extends ExtratosMethods {
11071107
* email: string,
11081108
* phone_number?: string,
11091109
* birth?: string,
1110-
* address: {
1110+
* address?: {
11111111
* street: string,
11121112
* number: string,
11131113
* neighborhood: string,
@@ -1126,7 +1126,7 @@ class CobrancasMethods extends ExtratosMethods {
11261126
* type: 'percentage' | 'currency',
11271127
* value: number
11281128
* },
1129-
* billing_address: {
1129+
* billing_address?: {
11301130
* street: string,
11311131
* number: string,
11321132
* neighborhood: string,

dist/esm/index.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ var exports = {
611611
}
612612
};
613613
var description = "Module for integration with Efi Bank API";
614-
var version = "1.2.13";
614+
var version = "1.2.14";
615615
var author = "Efi Bank - Consultoria Técnica | João Vitor Oliveira | João Lucas";
616616
var license = "MIT";
617617
var repository = "efipay/sdk-node-apis-efi";
@@ -1098,7 +1098,7 @@ class CobrancasMethods extends ExtratosMethods {
10981098
* email: string,
10991099
* phone_number?: string,
11001100
* birth?: string,
1101-
* address: {
1101+
* address?: {
11021102
* street: string,
11031103
* number: string,
11041104
* neighborhood: string,
@@ -1117,7 +1117,7 @@ class CobrancasMethods extends ExtratosMethods {
11171117
* type: 'percentage' | 'currency',
11181118
* value: number
11191119
* },
1120-
* billing_address: {
1120+
* billing_address?: {
11211121
* street: string,
11221122
* number: string,
11231123
* neighborhood: string,

dist/types/methods/cobrancas.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export class CobrancasMethods extends ExtratosMethods {
8383
* email: string,
8484
* phone_number?: string,
8585
* birth?: string,
86-
* address: {
86+
* address?: {
8787
* street: string,
8888
* number: string,
8989
* neighborhood: string,
@@ -102,7 +102,7 @@ export class CobrancasMethods extends ExtratosMethods {
102102
* type: 'percentage' | 'currency',
103103
* value: number
104104
* },
105-
* billing_address: {
105+
* billing_address?: {
106106
* street: string,
107107
* number: string,
108108
* neighborhood: string,
@@ -216,7 +216,7 @@ export class CobrancasMethods extends ExtratosMethods {
216216
email: string;
217217
phone_number?: string;
218218
birth?: string;
219-
address: {
219+
address?: {
220220
street: string;
221221
number: string;
222222
neighborhood: string;
@@ -235,7 +235,7 @@ export class CobrancasMethods extends ExtratosMethods {
235235
type: 'percentage' | 'currency';
236236
value: number;
237237
};
238-
billing_address: {
238+
billing_address?: {
239239
street: string;
240240
number: string;
241241
neighborhood: string;

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
@@ -10,7 +10,7 @@
1010
}
1111
},
1212
"description": "Module for integration with Efi Bank API",
13-
"version": "1.2.13",
13+
"version": "1.2.14",
1414
"author": "Efi Bank - Consultoria Técnica | João Vitor Oliveira | João Lucas",
1515
"license": "MIT",
1616
"repository": "efipay/sdk-node-apis-efi",

src/methods/cobrancas.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export class CobrancasMethods extends ExtratosMethods {
8787
* email: string,
8888
* phone_number?: string,
8989
* birth?: string,
90-
* address: {
90+
* address?: {
9191
* street: string,
9292
* number: string,
9393
* neighborhood: string,
@@ -106,7 +106,7 @@ export class CobrancasMethods extends ExtratosMethods {
106106
* type: 'percentage' | 'currency',
107107
* value: number
108108
* },
109-
* billing_address: {
109+
* billing_address?: {
110110
* street: string,
111111
* number: string,
112112
* neighborhood: string,

0 commit comments

Comments
 (0)