Skip to content

Commit

Permalink
✨ Release 1.2.14
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
joao-muniz-efi committed Dec 27, 2024
1 parent ce2b506 commit b4d4981
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions dist/cjs/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ var exports$1 = {
}
};
var description = "Module for integration with Efi Bank API";
var version = "1.2.13";
var version = "1.2.14";
var author = "Efi Bank - Consultoria Técnica | João Vitor Oliveira | João Lucas";
var license = "MIT";
var repository = "efipay/sdk-node-apis-efi";
Expand Down Expand Up @@ -1107,7 +1107,7 @@ class CobrancasMethods extends ExtratosMethods {
* email: string,
* phone_number?: string,
* birth?: string,
* address: {
* address?: {
* street: string,
* number: string,
* neighborhood: string,
Expand All @@ -1126,7 +1126,7 @@ class CobrancasMethods extends ExtratosMethods {
* type: 'percentage' | 'currency',
* value: number
* },
* billing_address: {
* billing_address?: {
* street: string,
* number: string,
* neighborhood: string,
Expand Down
6 changes: 3 additions & 3 deletions dist/esm/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ var exports = {
}
};
var description = "Module for integration with Efi Bank API";
var version = "1.2.13";
var version = "1.2.14";
var author = "Efi Bank - Consultoria Técnica | João Vitor Oliveira | João Lucas";
var license = "MIT";
var repository = "efipay/sdk-node-apis-efi";
Expand Down Expand Up @@ -1098,7 +1098,7 @@ class CobrancasMethods extends ExtratosMethods {
* email: string,
* phone_number?: string,
* birth?: string,
* address: {
* address?: {
* street: string,
* number: string,
* neighborhood: string,
Expand All @@ -1117,7 +1117,7 @@ class CobrancasMethods extends ExtratosMethods {
* type: 'percentage' | 'currency',
* value: number
* },
* billing_address: {
* billing_address?: {
* street: string,
* number: string,
* neighborhood: string,
Expand Down
8 changes: 4 additions & 4 deletions dist/types/methods/cobrancas.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export class CobrancasMethods extends ExtratosMethods {
* email: string,
* phone_number?: string,
* birth?: string,
* address: {
* address?: {
* street: string,
* number: string,
* neighborhood: string,
Expand All @@ -102,7 +102,7 @@ export class CobrancasMethods extends ExtratosMethods {
* type: 'percentage' | 'currency',
* value: number
* },
* billing_address: {
* billing_address?: {
* street: string,
* number: string,
* neighborhood: string,
Expand Down Expand Up @@ -216,7 +216,7 @@ export class CobrancasMethods extends ExtratosMethods {
email: string;
phone_number?: string;
birth?: string;
address: {
address?: {
street: string;
number: string;
neighborhood: string;
Expand All @@ -235,7 +235,7 @@ export class CobrancasMethods extends ExtratosMethods {
type: 'percentage' | 'currency';
value: number;
};
billing_address: {
billing_address?: {
street: string;
number: string;
neighborhood: string;
Expand Down
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
Expand Up @@ -10,7 +10,7 @@
}
},
"description": "Module for integration with Efi Bank API",
"version": "1.2.13",
"version": "1.2.14",
"author": "Efi Bank - Consultoria Técnica | João Vitor Oliveira | João Lucas",
"license": "MIT",
"repository": "efipay/sdk-node-apis-efi",
Expand Down
4 changes: 2 additions & 2 deletions src/methods/cobrancas.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export class CobrancasMethods extends ExtratosMethods {
* email: string,
* phone_number?: string,
* birth?: string,
* address: {
* address?: {
* street: string,
* number: string,
* neighborhood: string,
Expand All @@ -106,7 +106,7 @@ export class CobrancasMethods extends ExtratosMethods {
* type: 'percentage' | 'currency',
* value: number
* },
* billing_address: {
* billing_address?: {
* street: string,
* number: string,
* neighborhood: string,
Expand Down

0 comments on commit b4d4981

Please sign in to comment.