next-finance-mcp 0.9.49 → 0.9.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +17 -8
- package/dist/client.js +31 -8
- package/dist/http-index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/tools.d.ts +311 -127
- package/dist/tools.js +34 -16
- package/package.json +1 -1
package/dist/client.d.ts
CHANGED
|
@@ -75,24 +75,33 @@ export declare function listarContasCorrentes(opts?: {
|
|
|
75
75
|
total: number;
|
|
76
76
|
data: string;
|
|
77
77
|
}>;
|
|
78
|
-
export interface
|
|
78
|
+
export interface CriarContaOpts {
|
|
79
|
+
tipo_conta: string;
|
|
79
80
|
nome: string;
|
|
81
|
+
portfolio?: string;
|
|
82
|
+
moeda?: string;
|
|
83
|
+
pais?: string;
|
|
84
|
+
data_inicial?: string;
|
|
85
|
+
saldo_inicial?: number;
|
|
86
|
+
observacoes?: string;
|
|
80
87
|
banco?: string;
|
|
81
88
|
agencia?: string;
|
|
82
89
|
digito_agencia?: string;
|
|
83
90
|
numero_conta?: string;
|
|
84
91
|
digito_conta?: string;
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
+
nib?: string;
|
|
93
|
+
iban?: string;
|
|
94
|
+
swift?: string;
|
|
95
|
+
limite_cheque_especial?: number;
|
|
96
|
+
juros_cheque_especial?: number;
|
|
97
|
+
}
|
|
98
|
+
/** Cria uma CONTA de qualquer tipo na carteira selecionada. */
|
|
99
|
+
export declare function criarConta(o: CriarContaOpts): Promise<{
|
|
92
100
|
sucesso: boolean;
|
|
93
101
|
mensagem: string;
|
|
94
102
|
conta: {
|
|
95
103
|
nome: string;
|
|
104
|
+
tipo: string;
|
|
96
105
|
banco?: string;
|
|
97
106
|
};
|
|
98
107
|
}>;
|
package/dist/client.js
CHANGED
|
@@ -842,16 +842,30 @@ async function resolverMoeda(sigla) {
|
|
|
842
842
|
}
|
|
843
843
|
throw new Error(`Moeda "${sigla}" não encontrada.`);
|
|
844
844
|
}
|
|
845
|
-
/**
|
|
846
|
-
|
|
845
|
+
/** Resolve o nome de um tipo de portfólio → Id (endpoint com grafia "Portifolio"). */
|
|
846
|
+
async function resolverPortfolio(nome) {
|
|
847
|
+
const raw = await apiGet("/api/TipoPortifolio");
|
|
848
|
+
const arr = (Array.isArray(raw) ? raw : Object.values(raw).find(v => Array.isArray(v)) ?? []);
|
|
849
|
+
const termo = normalizar(nome);
|
|
850
|
+
const exata = arr.find(t => normalizar(String(t["Nome"] ?? "")) === termo);
|
|
851
|
+
const m = exata ?? arr.find(t => normalizar(String(t["Nome"] ?? "")).includes(termo));
|
|
852
|
+
if (!m)
|
|
853
|
+
throw new Error(`Portfólio "${nome}" não encontrado. Opções: ${arr.map(t => t["Nome"]).join("; ")}`);
|
|
854
|
+
return String(m["Id"]);
|
|
855
|
+
}
|
|
856
|
+
/** Cria uma CONTA de qualquer tipo na carteira selecionada. */
|
|
857
|
+
export async function criarConta(o) {
|
|
858
|
+
if (!o.tipo_conta?.trim())
|
|
859
|
+
throw new Error("Tipo de conta é obrigatório (ex: 'Conta Corrente', 'Poupança', 'CDB').");
|
|
847
860
|
if (!o.nome?.trim())
|
|
848
861
|
throw new Error("Nome da conta é obrigatório.");
|
|
849
|
-
log("
|
|
862
|
+
log("criar_conta", o.tipo_conta, o.nome);
|
|
850
863
|
const [idPais, idMoeda, idTipoConta] = await Promise.all([
|
|
851
|
-
resolverPais("Brasil"),
|
|
864
|
+
resolverPais(o.pais?.trim() || "Brasil"),
|
|
852
865
|
resolverMoeda(o.moeda?.trim() || "BRL"),
|
|
853
|
-
resolverTipoConta(
|
|
866
|
+
resolverTipoConta(o.tipo_conta),
|
|
854
867
|
]);
|
|
868
|
+
const idPortfolio = o.portfolio?.trim() ? await resolverPortfolio(o.portfolio) : undefined;
|
|
855
869
|
const banco = o.banco?.trim() ? await resolverBanco(o.banco) : null;
|
|
856
870
|
const data = (o.data_inicial && o.data_inicial.trim()) ? o.data_inicial.trim() : new Date().toISOString().slice(0, 10);
|
|
857
871
|
const body = {
|
|
@@ -861,19 +875,28 @@ export async function criarContaCorrente(o) {
|
|
|
861
875
|
IdTipoConta: idTipoConta,
|
|
862
876
|
DataInicialControle: `${data}T00:00:00`,
|
|
863
877
|
SaldoInicial: o.saldo_inicial ?? 0,
|
|
878
|
+
Observacoes: o.observacoes?.trim() || null,
|
|
864
879
|
IdBanco: banco?.id ?? null,
|
|
865
880
|
NumeroAgencia: o.agencia?.trim() || null,
|
|
866
881
|
DigitoAgencia: o.digito_agencia?.trim() || null,
|
|
867
882
|
NumeroContaBancaria: o.numero_conta?.trim() || null,
|
|
868
883
|
DigitoContaBancaria: o.digito_conta?.trim() || null,
|
|
869
|
-
|
|
884
|
+
NIB: o.nib?.trim() || null,
|
|
885
|
+
Iban: o.iban?.trim() || null,
|
|
886
|
+
Swift: o.swift?.trim() || null,
|
|
870
887
|
};
|
|
888
|
+
if (idPortfolio)
|
|
889
|
+
body["IdTipoPortfolio"] = idPortfolio;
|
|
890
|
+
if (o.limite_cheque_especial != null)
|
|
891
|
+
body["LimiteChequeEspecial"] = o.limite_cheque_especial;
|
|
892
|
+
if (o.juros_cheque_especial != null)
|
|
893
|
+
body["JurosChequeEspecial"] = o.juros_cheque_especial;
|
|
871
894
|
await apiPost("/api/Conta", body);
|
|
872
895
|
invalidarCacheContas();
|
|
873
896
|
return {
|
|
874
897
|
sucesso: true,
|
|
875
|
-
mensagem: `Conta
|
|
876
|
-
conta: { nome: o.nome.trim(), banco: banco?.nome },
|
|
898
|
+
mensagem: `Conta "${o.nome.trim()}" (${o.tipo_conta.trim()})${banco ? ` no ${banco.nome}` : ""} criada com sucesso.`,
|
|
899
|
+
conta: { nome: o.nome.trim(), tipo: o.tipo_conta.trim(), banco: banco?.nome },
|
|
877
900
|
};
|
|
878
901
|
}
|
|
879
902
|
export async function listarPlanoDeContas(filtro = {}) {
|
package/dist/http-index.js
CHANGED
|
@@ -17,7 +17,7 @@ import { randomUUID } from "crypto";
|
|
|
17
17
|
import * as client from "./client.js";
|
|
18
18
|
import { enterDefaultCtx } from "./context.js";
|
|
19
19
|
import { toolDefinitions, handleTool, ok } from "./tools.js";
|
|
20
|
-
const VERSION = "0.9.
|
|
20
|
+
const VERSION = "0.9.50";
|
|
21
21
|
// Modo HTTP single-tenant atual (env NEXT_FINANCE_EMAIL/PASSWORD ou sessão salva).
|
|
22
22
|
enterDefaultCtx();
|
|
23
23
|
// ── Configuração ─────────────────────────────────────────────────────────────
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ import { openLoginUI } from "./login-server.js";
|
|
|
13
13
|
import { toolDefinitions, handleTool, ok } from "./tools.js";
|
|
14
14
|
// Modo stdio: ativa um contexto único global no startup. Multi-tenancy só no modo HTTP.
|
|
15
15
|
enterDefaultCtx();
|
|
16
|
-
const VERSION = "0.9.
|
|
16
|
+
const VERSION = "0.9.50";
|
|
17
17
|
const server = new Server({ name: "next-finance-mcp", version: VERSION }, { capabilities: { tools: {} } });
|
|
18
18
|
server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: toolDefinitions }));
|
|
19
19
|
server.setRequestHandler(CallToolRequestSchema, async (req) => {
|
package/dist/tools.d.ts
CHANGED
|
@@ -28,14 +28,20 @@ export declare const toolDefinitions: ({
|
|
|
28
28
|
limite?: undefined;
|
|
29
29
|
incluir_saldo?: undefined;
|
|
30
30
|
nome?: undefined;
|
|
31
|
+
pais?: undefined;
|
|
32
|
+
data_inicial?: undefined;
|
|
33
|
+
saldo_inicial?: undefined;
|
|
34
|
+
observacoes?: undefined;
|
|
31
35
|
banco?: undefined;
|
|
32
36
|
agencia?: undefined;
|
|
33
37
|
digito_agencia?: undefined;
|
|
34
38
|
numero_conta?: undefined;
|
|
35
39
|
digito_conta?: undefined;
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
40
|
+
nib?: undefined;
|
|
41
|
+
iban?: undefined;
|
|
42
|
+
swift?: undefined;
|
|
43
|
+
limite_cheque_especial?: undefined;
|
|
44
|
+
juros_cheque_especial?: undefined;
|
|
39
45
|
nome_conta?: undefined;
|
|
40
46
|
data_inicio?: undefined;
|
|
41
47
|
data_fim?: undefined;
|
|
@@ -92,7 +98,6 @@ export declare const toolDefinitions: ({
|
|
|
92
98
|
bairro?: undefined;
|
|
93
99
|
cidade?: undefined;
|
|
94
100
|
estado?: undefined;
|
|
95
|
-
pais?: undefined;
|
|
96
101
|
nome_contato?: undefined;
|
|
97
102
|
origem?: undefined;
|
|
98
103
|
responsavel?: undefined;
|
|
@@ -122,14 +127,20 @@ export declare const toolDefinitions: ({
|
|
|
122
127
|
limite?: undefined;
|
|
123
128
|
incluir_saldo?: undefined;
|
|
124
129
|
nome?: undefined;
|
|
130
|
+
pais?: undefined;
|
|
131
|
+
data_inicial?: undefined;
|
|
132
|
+
saldo_inicial?: undefined;
|
|
133
|
+
observacoes?: undefined;
|
|
125
134
|
banco?: undefined;
|
|
126
135
|
agencia?: undefined;
|
|
127
136
|
digito_agencia?: undefined;
|
|
128
137
|
numero_conta?: undefined;
|
|
129
138
|
digito_conta?: undefined;
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
139
|
+
nib?: undefined;
|
|
140
|
+
iban?: undefined;
|
|
141
|
+
swift?: undefined;
|
|
142
|
+
limite_cheque_especial?: undefined;
|
|
143
|
+
juros_cheque_especial?: undefined;
|
|
133
144
|
nome_conta?: undefined;
|
|
134
145
|
data_inicio?: undefined;
|
|
135
146
|
data_fim?: undefined;
|
|
@@ -186,7 +197,6 @@ export declare const toolDefinitions: ({
|
|
|
186
197
|
bairro?: undefined;
|
|
187
198
|
cidade?: undefined;
|
|
188
199
|
estado?: undefined;
|
|
189
|
-
pais?: undefined;
|
|
190
200
|
nome_contato?: undefined;
|
|
191
201
|
origem?: undefined;
|
|
192
202
|
responsavel?: undefined;
|
|
@@ -231,14 +241,20 @@ export declare const toolDefinitions: ({
|
|
|
231
241
|
nome_carteira?: undefined;
|
|
232
242
|
incluir_saldo?: undefined;
|
|
233
243
|
nome?: undefined;
|
|
244
|
+
pais?: undefined;
|
|
245
|
+
data_inicial?: undefined;
|
|
246
|
+
saldo_inicial?: undefined;
|
|
247
|
+
observacoes?: undefined;
|
|
234
248
|
banco?: undefined;
|
|
235
249
|
agencia?: undefined;
|
|
236
250
|
digito_agencia?: undefined;
|
|
237
251
|
numero_conta?: undefined;
|
|
238
252
|
digito_conta?: undefined;
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
253
|
+
nib?: undefined;
|
|
254
|
+
iban?: undefined;
|
|
255
|
+
swift?: undefined;
|
|
256
|
+
limite_cheque_especial?: undefined;
|
|
257
|
+
juros_cheque_especial?: undefined;
|
|
242
258
|
nome_conta?: undefined;
|
|
243
259
|
data_inicio?: undefined;
|
|
244
260
|
data_fim?: undefined;
|
|
@@ -295,7 +311,6 @@ export declare const toolDefinitions: ({
|
|
|
295
311
|
bairro?: undefined;
|
|
296
312
|
cidade?: undefined;
|
|
297
313
|
estado?: undefined;
|
|
298
|
-
pais?: undefined;
|
|
299
314
|
nome_contato?: undefined;
|
|
300
315
|
origem?: undefined;
|
|
301
316
|
responsavel?: undefined;
|
|
@@ -328,14 +343,20 @@ export declare const toolDefinitions: ({
|
|
|
328
343
|
pagina?: undefined;
|
|
329
344
|
limite?: undefined;
|
|
330
345
|
nome?: undefined;
|
|
346
|
+
pais?: undefined;
|
|
347
|
+
data_inicial?: undefined;
|
|
348
|
+
saldo_inicial?: undefined;
|
|
349
|
+
observacoes?: undefined;
|
|
331
350
|
banco?: undefined;
|
|
332
351
|
agencia?: undefined;
|
|
333
352
|
digito_agencia?: undefined;
|
|
334
353
|
numero_conta?: undefined;
|
|
335
354
|
digito_conta?: undefined;
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
355
|
+
nib?: undefined;
|
|
356
|
+
iban?: undefined;
|
|
357
|
+
swift?: undefined;
|
|
358
|
+
limite_cheque_especial?: undefined;
|
|
359
|
+
juros_cheque_especial?: undefined;
|
|
339
360
|
nome_conta?: undefined;
|
|
340
361
|
data_inicio?: undefined;
|
|
341
362
|
data_fim?: undefined;
|
|
@@ -392,7 +413,6 @@ export declare const toolDefinitions: ({
|
|
|
392
413
|
bairro?: undefined;
|
|
393
414
|
cidade?: undefined;
|
|
394
415
|
estado?: undefined;
|
|
395
|
-
pais?: undefined;
|
|
396
416
|
nome_contato?: undefined;
|
|
397
417
|
origem?: undefined;
|
|
398
418
|
responsavel?: undefined;
|
|
@@ -410,10 +430,38 @@ export declare const toolDefinitions: ({
|
|
|
410
430
|
inputSchema: {
|
|
411
431
|
type: string;
|
|
412
432
|
properties: {
|
|
433
|
+
tipo_conta: {
|
|
434
|
+
type: string;
|
|
435
|
+
description: string;
|
|
436
|
+
};
|
|
413
437
|
nome: {
|
|
414
438
|
type: string;
|
|
415
439
|
description: string;
|
|
416
440
|
};
|
|
441
|
+
portfolio: {
|
|
442
|
+
type: string;
|
|
443
|
+
description: string;
|
|
444
|
+
};
|
|
445
|
+
moeda: {
|
|
446
|
+
type: string;
|
|
447
|
+
description: string;
|
|
448
|
+
};
|
|
449
|
+
pais: {
|
|
450
|
+
type: string;
|
|
451
|
+
description: string;
|
|
452
|
+
};
|
|
453
|
+
data_inicial: {
|
|
454
|
+
type: string;
|
|
455
|
+
description: string;
|
|
456
|
+
};
|
|
457
|
+
saldo_inicial: {
|
|
458
|
+
type: string;
|
|
459
|
+
description: string;
|
|
460
|
+
};
|
|
461
|
+
observacoes: {
|
|
462
|
+
type: string;
|
|
463
|
+
description: string;
|
|
464
|
+
};
|
|
417
465
|
banco: {
|
|
418
466
|
type: string;
|
|
419
467
|
description: string;
|
|
@@ -434,26 +482,28 @@ export declare const toolDefinitions: ({
|
|
|
434
482
|
type: string;
|
|
435
483
|
description: string;
|
|
436
484
|
};
|
|
437
|
-
|
|
485
|
+
nib: {
|
|
438
486
|
type: string;
|
|
439
487
|
description: string;
|
|
440
488
|
};
|
|
441
|
-
|
|
489
|
+
iban: {
|
|
442
490
|
type: string;
|
|
443
491
|
description: string;
|
|
444
492
|
};
|
|
445
|
-
|
|
493
|
+
swift: {
|
|
446
494
|
type: string;
|
|
447
495
|
description: string;
|
|
448
496
|
};
|
|
449
|
-
|
|
497
|
+
limite_cheque_especial: {
|
|
498
|
+
type: string;
|
|
499
|
+
description: string;
|
|
500
|
+
};
|
|
501
|
+
juros_cheque_especial: {
|
|
450
502
|
type: string;
|
|
451
503
|
description: string;
|
|
452
504
|
};
|
|
453
505
|
nome_carteira?: undefined;
|
|
454
506
|
busca?: undefined;
|
|
455
|
-
portfolio?: undefined;
|
|
456
|
-
tipo_conta?: undefined;
|
|
457
507
|
pagina?: undefined;
|
|
458
508
|
limite?: undefined;
|
|
459
509
|
incluir_saldo?: undefined;
|
|
@@ -513,7 +563,6 @@ export declare const toolDefinitions: ({
|
|
|
513
563
|
bairro?: undefined;
|
|
514
564
|
cidade?: undefined;
|
|
515
565
|
estado?: undefined;
|
|
516
|
-
pais?: undefined;
|
|
517
566
|
nome_contato?: undefined;
|
|
518
567
|
origem?: undefined;
|
|
519
568
|
responsavel?: undefined;
|
|
@@ -543,14 +592,20 @@ export declare const toolDefinitions: ({
|
|
|
543
592
|
limite?: undefined;
|
|
544
593
|
incluir_saldo?: undefined;
|
|
545
594
|
nome?: undefined;
|
|
595
|
+
pais?: undefined;
|
|
596
|
+
data_inicial?: undefined;
|
|
597
|
+
saldo_inicial?: undefined;
|
|
598
|
+
observacoes?: undefined;
|
|
546
599
|
banco?: undefined;
|
|
547
600
|
agencia?: undefined;
|
|
548
601
|
digito_agencia?: undefined;
|
|
549
602
|
numero_conta?: undefined;
|
|
550
603
|
digito_conta?: undefined;
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
604
|
+
nib?: undefined;
|
|
605
|
+
iban?: undefined;
|
|
606
|
+
swift?: undefined;
|
|
607
|
+
limite_cheque_especial?: undefined;
|
|
608
|
+
juros_cheque_especial?: undefined;
|
|
554
609
|
nome_conta?: undefined;
|
|
555
610
|
data_inicio?: undefined;
|
|
556
611
|
data_fim?: undefined;
|
|
@@ -607,7 +662,6 @@ export declare const toolDefinitions: ({
|
|
|
607
662
|
bairro?: undefined;
|
|
608
663
|
cidade?: undefined;
|
|
609
664
|
estado?: undefined;
|
|
610
|
-
pais?: undefined;
|
|
611
665
|
nome_contato?: undefined;
|
|
612
666
|
origem?: undefined;
|
|
613
667
|
responsavel?: undefined;
|
|
@@ -643,14 +697,20 @@ export declare const toolDefinitions: ({
|
|
|
643
697
|
tipo_conta?: undefined;
|
|
644
698
|
incluir_saldo?: undefined;
|
|
645
699
|
nome?: undefined;
|
|
700
|
+
pais?: undefined;
|
|
701
|
+
data_inicial?: undefined;
|
|
702
|
+
saldo_inicial?: undefined;
|
|
703
|
+
observacoes?: undefined;
|
|
646
704
|
banco?: undefined;
|
|
647
705
|
agencia?: undefined;
|
|
648
706
|
digito_agencia?: undefined;
|
|
649
707
|
numero_conta?: undefined;
|
|
650
708
|
digito_conta?: undefined;
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
709
|
+
nib?: undefined;
|
|
710
|
+
iban?: undefined;
|
|
711
|
+
swift?: undefined;
|
|
712
|
+
limite_cheque_especial?: undefined;
|
|
713
|
+
juros_cheque_especial?: undefined;
|
|
654
714
|
nome_conta?: undefined;
|
|
655
715
|
data_inicio?: undefined;
|
|
656
716
|
data_fim?: undefined;
|
|
@@ -707,7 +767,6 @@ export declare const toolDefinitions: ({
|
|
|
707
767
|
bairro?: undefined;
|
|
708
768
|
cidade?: undefined;
|
|
709
769
|
estado?: undefined;
|
|
710
|
-
pais?: undefined;
|
|
711
770
|
nome_contato?: undefined;
|
|
712
771
|
origem?: undefined;
|
|
713
772
|
responsavel?: undefined;
|
|
@@ -779,14 +838,20 @@ export declare const toolDefinitions: ({
|
|
|
779
838
|
tipo_conta?: undefined;
|
|
780
839
|
incluir_saldo?: undefined;
|
|
781
840
|
nome?: undefined;
|
|
841
|
+
pais?: undefined;
|
|
842
|
+
data_inicial?: undefined;
|
|
843
|
+
saldo_inicial?: undefined;
|
|
844
|
+
observacoes?: undefined;
|
|
782
845
|
banco?: undefined;
|
|
783
846
|
agencia?: undefined;
|
|
784
847
|
digito_agencia?: undefined;
|
|
785
848
|
numero_conta?: undefined;
|
|
786
849
|
digito_conta?: undefined;
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
850
|
+
nib?: undefined;
|
|
851
|
+
iban?: undefined;
|
|
852
|
+
swift?: undefined;
|
|
853
|
+
limite_cheque_especial?: undefined;
|
|
854
|
+
juros_cheque_especial?: undefined;
|
|
790
855
|
apenas_vencidos?: undefined;
|
|
791
856
|
apenas_cobranca?: undefined;
|
|
792
857
|
incluir_cobranca?: undefined;
|
|
@@ -834,7 +899,6 @@ export declare const toolDefinitions: ({
|
|
|
834
899
|
bairro?: undefined;
|
|
835
900
|
cidade?: undefined;
|
|
836
901
|
estado?: undefined;
|
|
837
|
-
pais?: undefined;
|
|
838
902
|
nome_contato?: undefined;
|
|
839
903
|
origem?: undefined;
|
|
840
904
|
responsavel?: undefined;
|
|
@@ -885,14 +949,20 @@ export declare const toolDefinitions: ({
|
|
|
885
949
|
tipo_conta?: undefined;
|
|
886
950
|
incluir_saldo?: undefined;
|
|
887
951
|
nome?: undefined;
|
|
952
|
+
pais?: undefined;
|
|
953
|
+
data_inicial?: undefined;
|
|
954
|
+
saldo_inicial?: undefined;
|
|
955
|
+
observacoes?: undefined;
|
|
888
956
|
banco?: undefined;
|
|
889
957
|
agencia?: undefined;
|
|
890
958
|
digito_agencia?: undefined;
|
|
891
959
|
numero_conta?: undefined;
|
|
892
960
|
digito_conta?: undefined;
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
961
|
+
nib?: undefined;
|
|
962
|
+
iban?: undefined;
|
|
963
|
+
swift?: undefined;
|
|
964
|
+
limite_cheque_especial?: undefined;
|
|
965
|
+
juros_cheque_especial?: undefined;
|
|
896
966
|
nome_conta?: undefined;
|
|
897
967
|
plano_de_contas?: undefined;
|
|
898
968
|
centro_de_custo?: undefined;
|
|
@@ -946,7 +1016,6 @@ export declare const toolDefinitions: ({
|
|
|
946
1016
|
bairro?: undefined;
|
|
947
1017
|
cidade?: undefined;
|
|
948
1018
|
estado?: undefined;
|
|
949
|
-
pais?: undefined;
|
|
950
1019
|
nome_contato?: undefined;
|
|
951
1020
|
origem?: undefined;
|
|
952
1021
|
responsavel?: undefined;
|
|
@@ -1005,14 +1074,20 @@ export declare const toolDefinitions: ({
|
|
|
1005
1074
|
tipo_conta?: undefined;
|
|
1006
1075
|
incluir_saldo?: undefined;
|
|
1007
1076
|
nome?: undefined;
|
|
1077
|
+
pais?: undefined;
|
|
1078
|
+
data_inicial?: undefined;
|
|
1079
|
+
saldo_inicial?: undefined;
|
|
1080
|
+
observacoes?: undefined;
|
|
1008
1081
|
banco?: undefined;
|
|
1009
1082
|
agencia?: undefined;
|
|
1010
1083
|
digito_agencia?: undefined;
|
|
1011
1084
|
numero_conta?: undefined;
|
|
1012
1085
|
digito_conta?: undefined;
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1086
|
+
nib?: undefined;
|
|
1087
|
+
iban?: undefined;
|
|
1088
|
+
swift?: undefined;
|
|
1089
|
+
limite_cheque_especial?: undefined;
|
|
1090
|
+
juros_cheque_especial?: undefined;
|
|
1016
1091
|
nome_conta?: undefined;
|
|
1017
1092
|
plano_de_contas?: undefined;
|
|
1018
1093
|
centro_de_custo?: undefined;
|
|
@@ -1064,7 +1139,6 @@ export declare const toolDefinitions: ({
|
|
|
1064
1139
|
bairro?: undefined;
|
|
1065
1140
|
cidade?: undefined;
|
|
1066
1141
|
estado?: undefined;
|
|
1067
|
-
pais?: undefined;
|
|
1068
1142
|
nome_contato?: undefined;
|
|
1069
1143
|
origem?: undefined;
|
|
1070
1144
|
responsavel?: undefined;
|
|
@@ -1097,14 +1171,20 @@ export declare const toolDefinitions: ({
|
|
|
1097
1171
|
limite?: undefined;
|
|
1098
1172
|
incluir_saldo?: undefined;
|
|
1099
1173
|
nome?: undefined;
|
|
1174
|
+
pais?: undefined;
|
|
1175
|
+
data_inicial?: undefined;
|
|
1176
|
+
saldo_inicial?: undefined;
|
|
1177
|
+
observacoes?: undefined;
|
|
1100
1178
|
banco?: undefined;
|
|
1101
1179
|
agencia?: undefined;
|
|
1102
1180
|
digito_agencia?: undefined;
|
|
1103
1181
|
numero_conta?: undefined;
|
|
1104
1182
|
digito_conta?: undefined;
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1183
|
+
nib?: undefined;
|
|
1184
|
+
iban?: undefined;
|
|
1185
|
+
swift?: undefined;
|
|
1186
|
+
limite_cheque_especial?: undefined;
|
|
1187
|
+
juros_cheque_especial?: undefined;
|
|
1108
1188
|
nome_conta?: undefined;
|
|
1109
1189
|
data_inicio?: undefined;
|
|
1110
1190
|
data_fim?: undefined;
|
|
@@ -1161,7 +1241,6 @@ export declare const toolDefinitions: ({
|
|
|
1161
1241
|
bairro?: undefined;
|
|
1162
1242
|
cidade?: undefined;
|
|
1163
1243
|
estado?: undefined;
|
|
1164
|
-
pais?: undefined;
|
|
1165
1244
|
nome_contato?: undefined;
|
|
1166
1245
|
origem?: undefined;
|
|
1167
1246
|
responsavel?: undefined;
|
|
@@ -1200,14 +1279,20 @@ export declare const toolDefinitions: ({
|
|
|
1200
1279
|
limite?: undefined;
|
|
1201
1280
|
incluir_saldo?: undefined;
|
|
1202
1281
|
nome?: undefined;
|
|
1282
|
+
pais?: undefined;
|
|
1283
|
+
data_inicial?: undefined;
|
|
1284
|
+
saldo_inicial?: undefined;
|
|
1285
|
+
observacoes?: undefined;
|
|
1203
1286
|
banco?: undefined;
|
|
1204
1287
|
agencia?: undefined;
|
|
1205
1288
|
digito_agencia?: undefined;
|
|
1206
1289
|
numero_conta?: undefined;
|
|
1207
1290
|
digito_conta?: undefined;
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1291
|
+
nib?: undefined;
|
|
1292
|
+
iban?: undefined;
|
|
1293
|
+
swift?: undefined;
|
|
1294
|
+
limite_cheque_especial?: undefined;
|
|
1295
|
+
juros_cheque_especial?: undefined;
|
|
1211
1296
|
nome_conta?: undefined;
|
|
1212
1297
|
data_inicio?: undefined;
|
|
1213
1298
|
data_fim?: undefined;
|
|
@@ -1262,7 +1347,6 @@ export declare const toolDefinitions: ({
|
|
|
1262
1347
|
bairro?: undefined;
|
|
1263
1348
|
cidade?: undefined;
|
|
1264
1349
|
estado?: undefined;
|
|
1265
|
-
pais?: undefined;
|
|
1266
1350
|
nome_contato?: undefined;
|
|
1267
1351
|
origem?: undefined;
|
|
1268
1352
|
responsavel?: undefined;
|
|
@@ -1301,14 +1385,20 @@ export declare const toolDefinitions: ({
|
|
|
1301
1385
|
tipo_conta?: undefined;
|
|
1302
1386
|
incluir_saldo?: undefined;
|
|
1303
1387
|
nome?: undefined;
|
|
1388
|
+
pais?: undefined;
|
|
1389
|
+
data_inicial?: undefined;
|
|
1390
|
+
saldo_inicial?: undefined;
|
|
1391
|
+
observacoes?: undefined;
|
|
1304
1392
|
banco?: undefined;
|
|
1305
1393
|
agencia?: undefined;
|
|
1306
1394
|
digito_agencia?: undefined;
|
|
1307
1395
|
numero_conta?: undefined;
|
|
1308
1396
|
digito_conta?: undefined;
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1397
|
+
nib?: undefined;
|
|
1398
|
+
iban?: undefined;
|
|
1399
|
+
swift?: undefined;
|
|
1400
|
+
limite_cheque_especial?: undefined;
|
|
1401
|
+
juros_cheque_especial?: undefined;
|
|
1312
1402
|
nome_conta?: undefined;
|
|
1313
1403
|
data_inicio?: undefined;
|
|
1314
1404
|
data_fim?: undefined;
|
|
@@ -1365,7 +1455,6 @@ export declare const toolDefinitions: ({
|
|
|
1365
1455
|
bairro?: undefined;
|
|
1366
1456
|
cidade?: undefined;
|
|
1367
1457
|
estado?: undefined;
|
|
1368
|
-
pais?: undefined;
|
|
1369
1458
|
nome_contato?: undefined;
|
|
1370
1459
|
origem?: undefined;
|
|
1371
1460
|
responsavel?: undefined;
|
|
@@ -1440,13 +1529,19 @@ export declare const toolDefinitions: ({
|
|
|
1440
1529
|
limite?: undefined;
|
|
1441
1530
|
incluir_saldo?: undefined;
|
|
1442
1531
|
nome?: undefined;
|
|
1532
|
+
pais?: undefined;
|
|
1533
|
+
data_inicial?: undefined;
|
|
1534
|
+
saldo_inicial?: undefined;
|
|
1443
1535
|
banco?: undefined;
|
|
1444
1536
|
agencia?: undefined;
|
|
1445
1537
|
digito_agencia?: undefined;
|
|
1446
1538
|
numero_conta?: undefined;
|
|
1447
1539
|
digito_conta?: undefined;
|
|
1448
|
-
|
|
1449
|
-
|
|
1540
|
+
nib?: undefined;
|
|
1541
|
+
iban?: undefined;
|
|
1542
|
+
swift?: undefined;
|
|
1543
|
+
limite_cheque_especial?: undefined;
|
|
1544
|
+
juros_cheque_especial?: undefined;
|
|
1450
1545
|
data_inicio?: undefined;
|
|
1451
1546
|
data_fim?: undefined;
|
|
1452
1547
|
apenas_despesas?: undefined;
|
|
@@ -1492,7 +1587,6 @@ export declare const toolDefinitions: ({
|
|
|
1492
1587
|
bairro?: undefined;
|
|
1493
1588
|
cidade?: undefined;
|
|
1494
1589
|
estado?: undefined;
|
|
1495
|
-
pais?: undefined;
|
|
1496
1590
|
nome_contato?: undefined;
|
|
1497
1591
|
origem?: undefined;
|
|
1498
1592
|
responsavel?: undefined;
|
|
@@ -1543,13 +1637,19 @@ export declare const toolDefinitions: ({
|
|
|
1543
1637
|
limite?: undefined;
|
|
1544
1638
|
incluir_saldo?: undefined;
|
|
1545
1639
|
nome?: undefined;
|
|
1640
|
+
pais?: undefined;
|
|
1641
|
+
data_inicial?: undefined;
|
|
1642
|
+
saldo_inicial?: undefined;
|
|
1546
1643
|
banco?: undefined;
|
|
1547
1644
|
agencia?: undefined;
|
|
1548
1645
|
digito_agencia?: undefined;
|
|
1549
1646
|
numero_conta?: undefined;
|
|
1550
1647
|
digito_conta?: undefined;
|
|
1551
|
-
|
|
1552
|
-
|
|
1648
|
+
nib?: undefined;
|
|
1649
|
+
iban?: undefined;
|
|
1650
|
+
swift?: undefined;
|
|
1651
|
+
limite_cheque_especial?: undefined;
|
|
1652
|
+
juros_cheque_especial?: undefined;
|
|
1553
1653
|
nome_conta?: undefined;
|
|
1554
1654
|
data_inicio?: undefined;
|
|
1555
1655
|
data_fim?: undefined;
|
|
@@ -1601,7 +1701,6 @@ export declare const toolDefinitions: ({
|
|
|
1601
1701
|
bairro?: undefined;
|
|
1602
1702
|
cidade?: undefined;
|
|
1603
1703
|
estado?: undefined;
|
|
1604
|
-
pais?: undefined;
|
|
1605
1704
|
nome_contato?: undefined;
|
|
1606
1705
|
origem?: undefined;
|
|
1607
1706
|
responsavel?: undefined;
|
|
@@ -1691,14 +1790,20 @@ export declare const toolDefinitions: ({
|
|
|
1691
1790
|
limite?: undefined;
|
|
1692
1791
|
incluir_saldo?: undefined;
|
|
1693
1792
|
nome?: undefined;
|
|
1793
|
+
pais?: undefined;
|
|
1794
|
+
data_inicial?: undefined;
|
|
1795
|
+
saldo_inicial?: undefined;
|
|
1796
|
+
observacoes?: undefined;
|
|
1694
1797
|
banco?: undefined;
|
|
1695
1798
|
agencia?: undefined;
|
|
1696
1799
|
digito_agencia?: undefined;
|
|
1697
1800
|
numero_conta?: undefined;
|
|
1698
1801
|
digito_conta?: undefined;
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1802
|
+
nib?: undefined;
|
|
1803
|
+
iban?: undefined;
|
|
1804
|
+
swift?: undefined;
|
|
1805
|
+
limite_cheque_especial?: undefined;
|
|
1806
|
+
juros_cheque_especial?: undefined;
|
|
1702
1807
|
data_inicio?: undefined;
|
|
1703
1808
|
data_fim?: undefined;
|
|
1704
1809
|
plano_de_contas?: undefined;
|
|
@@ -1740,7 +1845,6 @@ export declare const toolDefinitions: ({
|
|
|
1740
1845
|
bairro?: undefined;
|
|
1741
1846
|
cidade?: undefined;
|
|
1742
1847
|
estado?: undefined;
|
|
1743
|
-
pais?: undefined;
|
|
1744
1848
|
nome_contato?: undefined;
|
|
1745
1849
|
origem?: undefined;
|
|
1746
1850
|
responsavel?: undefined;
|
|
@@ -1786,14 +1890,20 @@ export declare const toolDefinitions: ({
|
|
|
1786
1890
|
limite?: undefined;
|
|
1787
1891
|
incluir_saldo?: undefined;
|
|
1788
1892
|
nome?: undefined;
|
|
1893
|
+
pais?: undefined;
|
|
1894
|
+
data_inicial?: undefined;
|
|
1895
|
+
saldo_inicial?: undefined;
|
|
1896
|
+
observacoes?: undefined;
|
|
1789
1897
|
banco?: undefined;
|
|
1790
1898
|
agencia?: undefined;
|
|
1791
1899
|
digito_agencia?: undefined;
|
|
1792
1900
|
numero_conta?: undefined;
|
|
1793
1901
|
digito_conta?: undefined;
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1902
|
+
nib?: undefined;
|
|
1903
|
+
iban?: undefined;
|
|
1904
|
+
swift?: undefined;
|
|
1905
|
+
limite_cheque_especial?: undefined;
|
|
1906
|
+
juros_cheque_especial?: undefined;
|
|
1797
1907
|
data_inicio?: undefined;
|
|
1798
1908
|
data_fim?: undefined;
|
|
1799
1909
|
plano_de_contas?: undefined;
|
|
@@ -1846,7 +1956,6 @@ export declare const toolDefinitions: ({
|
|
|
1846
1956
|
bairro?: undefined;
|
|
1847
1957
|
cidade?: undefined;
|
|
1848
1958
|
estado?: undefined;
|
|
1849
|
-
pais?: undefined;
|
|
1850
1959
|
nome_contato?: undefined;
|
|
1851
1960
|
origem?: undefined;
|
|
1852
1961
|
responsavel?: undefined;
|
|
@@ -1877,14 +1986,20 @@ export declare const toolDefinitions: ({
|
|
|
1877
1986
|
limite?: undefined;
|
|
1878
1987
|
incluir_saldo?: undefined;
|
|
1879
1988
|
nome?: undefined;
|
|
1989
|
+
pais?: undefined;
|
|
1990
|
+
data_inicial?: undefined;
|
|
1991
|
+
saldo_inicial?: undefined;
|
|
1992
|
+
observacoes?: undefined;
|
|
1880
1993
|
banco?: undefined;
|
|
1881
1994
|
agencia?: undefined;
|
|
1882
1995
|
digito_agencia?: undefined;
|
|
1883
1996
|
numero_conta?: undefined;
|
|
1884
1997
|
digito_conta?: undefined;
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1998
|
+
nib?: undefined;
|
|
1999
|
+
iban?: undefined;
|
|
2000
|
+
swift?: undefined;
|
|
2001
|
+
limite_cheque_especial?: undefined;
|
|
2002
|
+
juros_cheque_especial?: undefined;
|
|
1888
2003
|
data_inicio?: undefined;
|
|
1889
2004
|
data_fim?: undefined;
|
|
1890
2005
|
plano_de_contas?: undefined;
|
|
@@ -1940,7 +2055,6 @@ export declare const toolDefinitions: ({
|
|
|
1940
2055
|
bairro?: undefined;
|
|
1941
2056
|
cidade?: undefined;
|
|
1942
2057
|
estado?: undefined;
|
|
1943
|
-
pais?: undefined;
|
|
1944
2058
|
nome_contato?: undefined;
|
|
1945
2059
|
origem?: undefined;
|
|
1946
2060
|
responsavel?: undefined;
|
|
@@ -1975,14 +2089,20 @@ export declare const toolDefinitions: ({
|
|
|
1975
2089
|
limite?: undefined;
|
|
1976
2090
|
incluir_saldo?: undefined;
|
|
1977
2091
|
nome?: undefined;
|
|
2092
|
+
pais?: undefined;
|
|
2093
|
+
data_inicial?: undefined;
|
|
2094
|
+
saldo_inicial?: undefined;
|
|
2095
|
+
observacoes?: undefined;
|
|
1978
2096
|
banco?: undefined;
|
|
1979
2097
|
agencia?: undefined;
|
|
1980
2098
|
digito_agencia?: undefined;
|
|
1981
2099
|
numero_conta?: undefined;
|
|
1982
2100
|
digito_conta?: undefined;
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
2101
|
+
nib?: undefined;
|
|
2102
|
+
iban?: undefined;
|
|
2103
|
+
swift?: undefined;
|
|
2104
|
+
limite_cheque_especial?: undefined;
|
|
2105
|
+
juros_cheque_especial?: undefined;
|
|
1986
2106
|
data_inicio?: undefined;
|
|
1987
2107
|
data_fim?: undefined;
|
|
1988
2108
|
plano_de_contas?: undefined;
|
|
@@ -2037,7 +2157,6 @@ export declare const toolDefinitions: ({
|
|
|
2037
2157
|
bairro?: undefined;
|
|
2038
2158
|
cidade?: undefined;
|
|
2039
2159
|
estado?: undefined;
|
|
2040
|
-
pais?: undefined;
|
|
2041
2160
|
nome_contato?: undefined;
|
|
2042
2161
|
origem?: undefined;
|
|
2043
2162
|
responsavel?: undefined;
|
|
@@ -2068,14 +2187,20 @@ export declare const toolDefinitions: ({
|
|
|
2068
2187
|
limite?: undefined;
|
|
2069
2188
|
incluir_saldo?: undefined;
|
|
2070
2189
|
nome?: undefined;
|
|
2190
|
+
pais?: undefined;
|
|
2191
|
+
data_inicial?: undefined;
|
|
2192
|
+
saldo_inicial?: undefined;
|
|
2193
|
+
observacoes?: undefined;
|
|
2071
2194
|
banco?: undefined;
|
|
2072
2195
|
agencia?: undefined;
|
|
2073
2196
|
digito_agencia?: undefined;
|
|
2074
2197
|
numero_conta?: undefined;
|
|
2075
2198
|
digito_conta?: undefined;
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2199
|
+
nib?: undefined;
|
|
2200
|
+
iban?: undefined;
|
|
2201
|
+
swift?: undefined;
|
|
2202
|
+
limite_cheque_especial?: undefined;
|
|
2203
|
+
juros_cheque_especial?: undefined;
|
|
2079
2204
|
nome_conta?: undefined;
|
|
2080
2205
|
data_inicio?: undefined;
|
|
2081
2206
|
data_fim?: undefined;
|
|
@@ -2131,7 +2256,6 @@ export declare const toolDefinitions: ({
|
|
|
2131
2256
|
bairro?: undefined;
|
|
2132
2257
|
cidade?: undefined;
|
|
2133
2258
|
estado?: undefined;
|
|
2134
|
-
pais?: undefined;
|
|
2135
2259
|
nome_contato?: undefined;
|
|
2136
2260
|
origem?: undefined;
|
|
2137
2261
|
responsavel?: undefined;
|
|
@@ -2180,14 +2304,20 @@ export declare const toolDefinitions: ({
|
|
|
2180
2304
|
pagina?: undefined;
|
|
2181
2305
|
incluir_saldo?: undefined;
|
|
2182
2306
|
nome?: undefined;
|
|
2307
|
+
pais?: undefined;
|
|
2308
|
+
data_inicial?: undefined;
|
|
2309
|
+
saldo_inicial?: undefined;
|
|
2310
|
+
observacoes?: undefined;
|
|
2183
2311
|
banco?: undefined;
|
|
2184
2312
|
agencia?: undefined;
|
|
2185
2313
|
digito_agencia?: undefined;
|
|
2186
2314
|
numero_conta?: undefined;
|
|
2187
2315
|
digito_conta?: undefined;
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2316
|
+
nib?: undefined;
|
|
2317
|
+
iban?: undefined;
|
|
2318
|
+
swift?: undefined;
|
|
2319
|
+
limite_cheque_especial?: undefined;
|
|
2320
|
+
juros_cheque_especial?: undefined;
|
|
2191
2321
|
nome_conta?: undefined;
|
|
2192
2322
|
plano_de_contas?: undefined;
|
|
2193
2323
|
centro_de_custo?: undefined;
|
|
@@ -2240,7 +2370,6 @@ export declare const toolDefinitions: ({
|
|
|
2240
2370
|
bairro?: undefined;
|
|
2241
2371
|
cidade?: undefined;
|
|
2242
2372
|
estado?: undefined;
|
|
2243
|
-
pais?: undefined;
|
|
2244
2373
|
nome_contato?: undefined;
|
|
2245
2374
|
origem?: undefined;
|
|
2246
2375
|
responsavel?: undefined;
|
|
@@ -2287,14 +2416,20 @@ export declare const toolDefinitions: ({
|
|
|
2287
2416
|
limite?: undefined;
|
|
2288
2417
|
incluir_saldo?: undefined;
|
|
2289
2418
|
nome?: undefined;
|
|
2419
|
+
pais?: undefined;
|
|
2420
|
+
data_inicial?: undefined;
|
|
2421
|
+
saldo_inicial?: undefined;
|
|
2422
|
+
observacoes?: undefined;
|
|
2290
2423
|
banco?: undefined;
|
|
2291
2424
|
agencia?: undefined;
|
|
2292
2425
|
digito_agencia?: undefined;
|
|
2293
2426
|
numero_conta?: undefined;
|
|
2294
2427
|
digito_conta?: undefined;
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2428
|
+
nib?: undefined;
|
|
2429
|
+
iban?: undefined;
|
|
2430
|
+
swift?: undefined;
|
|
2431
|
+
limite_cheque_especial?: undefined;
|
|
2432
|
+
juros_cheque_especial?: undefined;
|
|
2298
2433
|
nome_conta?: undefined;
|
|
2299
2434
|
centro_de_custo?: undefined;
|
|
2300
2435
|
excluir_transferencias?: undefined;
|
|
@@ -2346,7 +2481,6 @@ export declare const toolDefinitions: ({
|
|
|
2346
2481
|
bairro?: undefined;
|
|
2347
2482
|
cidade?: undefined;
|
|
2348
2483
|
estado?: undefined;
|
|
2349
|
-
pais?: undefined;
|
|
2350
2484
|
nome_contato?: undefined;
|
|
2351
2485
|
origem?: undefined;
|
|
2352
2486
|
responsavel?: undefined;
|
|
@@ -2385,14 +2519,20 @@ export declare const toolDefinitions: ({
|
|
|
2385
2519
|
limite?: undefined;
|
|
2386
2520
|
incluir_saldo?: undefined;
|
|
2387
2521
|
nome?: undefined;
|
|
2522
|
+
pais?: undefined;
|
|
2523
|
+
data_inicial?: undefined;
|
|
2524
|
+
saldo_inicial?: undefined;
|
|
2525
|
+
observacoes?: undefined;
|
|
2388
2526
|
banco?: undefined;
|
|
2389
2527
|
agencia?: undefined;
|
|
2390
2528
|
digito_agencia?: undefined;
|
|
2391
2529
|
numero_conta?: undefined;
|
|
2392
2530
|
digito_conta?: undefined;
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2531
|
+
nib?: undefined;
|
|
2532
|
+
iban?: undefined;
|
|
2533
|
+
swift?: undefined;
|
|
2534
|
+
limite_cheque_especial?: undefined;
|
|
2535
|
+
juros_cheque_especial?: undefined;
|
|
2396
2536
|
nome_conta?: undefined;
|
|
2397
2537
|
plano_de_contas?: undefined;
|
|
2398
2538
|
apenas_despesas?: undefined;
|
|
@@ -2446,7 +2586,6 @@ export declare const toolDefinitions: ({
|
|
|
2446
2586
|
bairro?: undefined;
|
|
2447
2587
|
cidade?: undefined;
|
|
2448
2588
|
estado?: undefined;
|
|
2449
|
-
pais?: undefined;
|
|
2450
2589
|
nome_contato?: undefined;
|
|
2451
2590
|
origem?: undefined;
|
|
2452
2591
|
responsavel?: undefined;
|
|
@@ -2485,14 +2624,20 @@ export declare const toolDefinitions: ({
|
|
|
2485
2624
|
limite?: undefined;
|
|
2486
2625
|
incluir_saldo?: undefined;
|
|
2487
2626
|
nome?: undefined;
|
|
2627
|
+
pais?: undefined;
|
|
2628
|
+
data_inicial?: undefined;
|
|
2629
|
+
saldo_inicial?: undefined;
|
|
2630
|
+
observacoes?: undefined;
|
|
2488
2631
|
banco?: undefined;
|
|
2489
2632
|
agencia?: undefined;
|
|
2490
2633
|
digito_agencia?: undefined;
|
|
2491
2634
|
numero_conta?: undefined;
|
|
2492
2635
|
digito_conta?: undefined;
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2636
|
+
nib?: undefined;
|
|
2637
|
+
iban?: undefined;
|
|
2638
|
+
swift?: undefined;
|
|
2639
|
+
limite_cheque_especial?: undefined;
|
|
2640
|
+
juros_cheque_especial?: undefined;
|
|
2496
2641
|
plano_de_contas?: undefined;
|
|
2497
2642
|
centro_de_custo?: undefined;
|
|
2498
2643
|
apenas_despesas?: undefined;
|
|
@@ -2546,7 +2691,6 @@ export declare const toolDefinitions: ({
|
|
|
2546
2691
|
bairro?: undefined;
|
|
2547
2692
|
cidade?: undefined;
|
|
2548
2693
|
estado?: undefined;
|
|
2549
|
-
pais?: undefined;
|
|
2550
2694
|
nome_contato?: undefined;
|
|
2551
2695
|
origem?: undefined;
|
|
2552
2696
|
responsavel?: undefined;
|
|
@@ -2598,14 +2742,20 @@ export declare const toolDefinitions: ({
|
|
|
2598
2742
|
tipo_conta?: undefined;
|
|
2599
2743
|
incluir_saldo?: undefined;
|
|
2600
2744
|
nome?: undefined;
|
|
2745
|
+
pais?: undefined;
|
|
2746
|
+
data_inicial?: undefined;
|
|
2747
|
+
saldo_inicial?: undefined;
|
|
2748
|
+
observacoes?: undefined;
|
|
2601
2749
|
banco?: undefined;
|
|
2602
2750
|
agencia?: undefined;
|
|
2603
2751
|
digito_agencia?: undefined;
|
|
2604
2752
|
numero_conta?: undefined;
|
|
2605
2753
|
digito_conta?: undefined;
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2754
|
+
nib?: undefined;
|
|
2755
|
+
iban?: undefined;
|
|
2756
|
+
swift?: undefined;
|
|
2757
|
+
limite_cheque_especial?: undefined;
|
|
2758
|
+
juros_cheque_especial?: undefined;
|
|
2609
2759
|
nome_conta?: undefined;
|
|
2610
2760
|
plano_de_contas?: undefined;
|
|
2611
2761
|
centro_de_custo?: undefined;
|
|
@@ -2658,7 +2808,6 @@ export declare const toolDefinitions: ({
|
|
|
2658
2808
|
bairro?: undefined;
|
|
2659
2809
|
cidade?: undefined;
|
|
2660
2810
|
estado?: undefined;
|
|
2661
|
-
pais?: undefined;
|
|
2662
2811
|
nome_contato?: undefined;
|
|
2663
2812
|
origem?: undefined;
|
|
2664
2813
|
responsavel?: undefined;
|
|
@@ -2706,14 +2855,20 @@ export declare const toolDefinitions: ({
|
|
|
2706
2855
|
tipo_conta?: undefined;
|
|
2707
2856
|
incluir_saldo?: undefined;
|
|
2708
2857
|
nome?: undefined;
|
|
2858
|
+
pais?: undefined;
|
|
2859
|
+
data_inicial?: undefined;
|
|
2860
|
+
saldo_inicial?: undefined;
|
|
2861
|
+
observacoes?: undefined;
|
|
2709
2862
|
banco?: undefined;
|
|
2710
2863
|
agencia?: undefined;
|
|
2711
2864
|
digito_agencia?: undefined;
|
|
2712
2865
|
numero_conta?: undefined;
|
|
2713
2866
|
digito_conta?: undefined;
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2867
|
+
nib?: undefined;
|
|
2868
|
+
iban?: undefined;
|
|
2869
|
+
swift?: undefined;
|
|
2870
|
+
limite_cheque_especial?: undefined;
|
|
2871
|
+
juros_cheque_especial?: undefined;
|
|
2717
2872
|
nome_conta?: undefined;
|
|
2718
2873
|
plano_de_contas?: undefined;
|
|
2719
2874
|
centro_de_custo?: undefined;
|
|
@@ -2767,7 +2922,6 @@ export declare const toolDefinitions: ({
|
|
|
2767
2922
|
bairro?: undefined;
|
|
2768
2923
|
cidade?: undefined;
|
|
2769
2924
|
estado?: undefined;
|
|
2770
|
-
pais?: undefined;
|
|
2771
2925
|
nome_contato?: undefined;
|
|
2772
2926
|
origem?: undefined;
|
|
2773
2927
|
responsavel?: undefined;
|
|
@@ -2815,14 +2969,20 @@ export declare const toolDefinitions: ({
|
|
|
2815
2969
|
tipo_conta?: undefined;
|
|
2816
2970
|
incluir_saldo?: undefined;
|
|
2817
2971
|
nome?: undefined;
|
|
2972
|
+
pais?: undefined;
|
|
2973
|
+
data_inicial?: undefined;
|
|
2974
|
+
saldo_inicial?: undefined;
|
|
2975
|
+
observacoes?: undefined;
|
|
2818
2976
|
banco?: undefined;
|
|
2819
2977
|
agencia?: undefined;
|
|
2820
2978
|
digito_agencia?: undefined;
|
|
2821
2979
|
numero_conta?: undefined;
|
|
2822
2980
|
digito_conta?: undefined;
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2981
|
+
nib?: undefined;
|
|
2982
|
+
iban?: undefined;
|
|
2983
|
+
swift?: undefined;
|
|
2984
|
+
limite_cheque_especial?: undefined;
|
|
2985
|
+
juros_cheque_especial?: undefined;
|
|
2826
2986
|
nome_conta?: undefined;
|
|
2827
2987
|
plano_de_contas?: undefined;
|
|
2828
2988
|
centro_de_custo?: undefined;
|
|
@@ -2876,7 +3036,6 @@ export declare const toolDefinitions: ({
|
|
|
2876
3036
|
bairro?: undefined;
|
|
2877
3037
|
cidade?: undefined;
|
|
2878
3038
|
estado?: undefined;
|
|
2879
|
-
pais?: undefined;
|
|
2880
3039
|
nome_contato?: undefined;
|
|
2881
3040
|
origem?: undefined;
|
|
2882
3041
|
responsavel?: undefined;
|
|
@@ -2987,13 +3146,18 @@ export declare const toolDefinitions: ({
|
|
|
2987
3146
|
pagina?: undefined;
|
|
2988
3147
|
limite?: undefined;
|
|
2989
3148
|
incluir_saldo?: undefined;
|
|
3149
|
+
data_inicial?: undefined;
|
|
3150
|
+
saldo_inicial?: undefined;
|
|
2990
3151
|
banco?: undefined;
|
|
2991
3152
|
agencia?: undefined;
|
|
2992
3153
|
digito_agencia?: undefined;
|
|
2993
3154
|
numero_conta?: undefined;
|
|
2994
3155
|
digito_conta?: undefined;
|
|
2995
|
-
|
|
2996
|
-
|
|
3156
|
+
nib?: undefined;
|
|
3157
|
+
iban?: undefined;
|
|
3158
|
+
swift?: undefined;
|
|
3159
|
+
limite_cheque_especial?: undefined;
|
|
3160
|
+
juros_cheque_especial?: undefined;
|
|
2997
3161
|
nome_conta?: undefined;
|
|
2998
3162
|
data_inicio?: undefined;
|
|
2999
3163
|
data_fim?: undefined;
|
|
@@ -3061,14 +3225,20 @@ export declare const toolDefinitions: ({
|
|
|
3061
3225
|
limite?: undefined;
|
|
3062
3226
|
incluir_saldo?: undefined;
|
|
3063
3227
|
nome?: undefined;
|
|
3228
|
+
pais?: undefined;
|
|
3229
|
+
data_inicial?: undefined;
|
|
3230
|
+
saldo_inicial?: undefined;
|
|
3231
|
+
observacoes?: undefined;
|
|
3064
3232
|
banco?: undefined;
|
|
3065
3233
|
agencia?: undefined;
|
|
3066
3234
|
digito_agencia?: undefined;
|
|
3067
3235
|
numero_conta?: undefined;
|
|
3068
3236
|
digito_conta?: undefined;
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3237
|
+
nib?: undefined;
|
|
3238
|
+
iban?: undefined;
|
|
3239
|
+
swift?: undefined;
|
|
3240
|
+
limite_cheque_especial?: undefined;
|
|
3241
|
+
juros_cheque_especial?: undefined;
|
|
3072
3242
|
nome_conta?: undefined;
|
|
3073
3243
|
data_inicio?: undefined;
|
|
3074
3244
|
data_fim?: undefined;
|
|
@@ -3125,7 +3295,6 @@ export declare const toolDefinitions: ({
|
|
|
3125
3295
|
bairro?: undefined;
|
|
3126
3296
|
cidade?: undefined;
|
|
3127
3297
|
estado?: undefined;
|
|
3128
|
-
pais?: undefined;
|
|
3129
3298
|
nome_contato?: undefined;
|
|
3130
3299
|
origem?: undefined;
|
|
3131
3300
|
responsavel?: undefined;
|
|
@@ -3197,14 +3366,20 @@ export declare const toolDefinitions: ({
|
|
|
3197
3366
|
limite?: undefined;
|
|
3198
3367
|
incluir_saldo?: undefined;
|
|
3199
3368
|
nome?: undefined;
|
|
3369
|
+
pais?: undefined;
|
|
3370
|
+
data_inicial?: undefined;
|
|
3371
|
+
saldo_inicial?: undefined;
|
|
3372
|
+
observacoes?: undefined;
|
|
3200
3373
|
banco?: undefined;
|
|
3201
3374
|
agencia?: undefined;
|
|
3202
3375
|
digito_agencia?: undefined;
|
|
3203
3376
|
numero_conta?: undefined;
|
|
3204
3377
|
digito_conta?: undefined;
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3378
|
+
nib?: undefined;
|
|
3379
|
+
iban?: undefined;
|
|
3380
|
+
swift?: undefined;
|
|
3381
|
+
limite_cheque_especial?: undefined;
|
|
3382
|
+
juros_cheque_especial?: undefined;
|
|
3208
3383
|
nome_conta?: undefined;
|
|
3209
3384
|
data_inicio?: undefined;
|
|
3210
3385
|
data_fim?: undefined;
|
|
@@ -3258,7 +3433,6 @@ export declare const toolDefinitions: ({
|
|
|
3258
3433
|
bairro?: undefined;
|
|
3259
3434
|
cidade?: undefined;
|
|
3260
3435
|
estado?: undefined;
|
|
3261
|
-
pais?: undefined;
|
|
3262
3436
|
};
|
|
3263
3437
|
required: string[];
|
|
3264
3438
|
};
|
|
@@ -3311,14 +3485,20 @@ export declare const toolDefinitions: ({
|
|
|
3311
3485
|
tipo_conta?: undefined;
|
|
3312
3486
|
incluir_saldo?: undefined;
|
|
3313
3487
|
nome?: undefined;
|
|
3488
|
+
pais?: undefined;
|
|
3489
|
+
data_inicial?: undefined;
|
|
3490
|
+
saldo_inicial?: undefined;
|
|
3491
|
+
observacoes?: undefined;
|
|
3314
3492
|
banco?: undefined;
|
|
3315
3493
|
agencia?: undefined;
|
|
3316
3494
|
digito_agencia?: undefined;
|
|
3317
3495
|
numero_conta?: undefined;
|
|
3318
3496
|
digito_conta?: undefined;
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
|
|
3497
|
+
nib?: undefined;
|
|
3498
|
+
iban?: undefined;
|
|
3499
|
+
swift?: undefined;
|
|
3500
|
+
limite_cheque_especial?: undefined;
|
|
3501
|
+
juros_cheque_especial?: undefined;
|
|
3322
3502
|
nome_conta?: undefined;
|
|
3323
3503
|
plano_de_contas?: undefined;
|
|
3324
3504
|
centro_de_custo?: undefined;
|
|
@@ -3372,7 +3552,6 @@ export declare const toolDefinitions: ({
|
|
|
3372
3552
|
bairro?: undefined;
|
|
3373
3553
|
cidade?: undefined;
|
|
3374
3554
|
estado?: undefined;
|
|
3375
|
-
pais?: undefined;
|
|
3376
3555
|
nome_contato?: undefined;
|
|
3377
3556
|
titulo?: undefined;
|
|
3378
3557
|
prioridade?: undefined;
|
|
@@ -3408,14 +3587,20 @@ export declare const toolDefinitions: ({
|
|
|
3408
3587
|
limite?: undefined;
|
|
3409
3588
|
incluir_saldo?: undefined;
|
|
3410
3589
|
nome?: undefined;
|
|
3590
|
+
pais?: undefined;
|
|
3591
|
+
data_inicial?: undefined;
|
|
3592
|
+
saldo_inicial?: undefined;
|
|
3593
|
+
observacoes?: undefined;
|
|
3411
3594
|
banco?: undefined;
|
|
3412
3595
|
agencia?: undefined;
|
|
3413
3596
|
digito_agencia?: undefined;
|
|
3414
3597
|
numero_conta?: undefined;
|
|
3415
3598
|
digito_conta?: undefined;
|
|
3416
|
-
|
|
3417
|
-
|
|
3418
|
-
|
|
3599
|
+
nib?: undefined;
|
|
3600
|
+
iban?: undefined;
|
|
3601
|
+
swift?: undefined;
|
|
3602
|
+
limite_cheque_especial?: undefined;
|
|
3603
|
+
juros_cheque_especial?: undefined;
|
|
3419
3604
|
nome_conta?: undefined;
|
|
3420
3605
|
plano_de_contas?: undefined;
|
|
3421
3606
|
centro_de_custo?: undefined;
|
|
@@ -3469,7 +3654,6 @@ export declare const toolDefinitions: ({
|
|
|
3469
3654
|
bairro?: undefined;
|
|
3470
3655
|
cidade?: undefined;
|
|
3471
3656
|
estado?: undefined;
|
|
3472
|
-
pais?: undefined;
|
|
3473
3657
|
nome_contato?: undefined;
|
|
3474
3658
|
origem?: undefined;
|
|
3475
3659
|
responsavel?: undefined;
|
package/dist/tools.js
CHANGED
|
@@ -89,25 +89,35 @@ export const toolDefinitions = [
|
|
|
89
89
|
},
|
|
90
90
|
},
|
|
91
91
|
{
|
|
92
|
-
name: "
|
|
93
|
-
description: "Cria uma CONTA
|
|
94
|
-
"
|
|
95
|
-
"
|
|
92
|
+
name: "criar_conta",
|
|
93
|
+
description: "Cria uma CONTA de QUALQUER TIPO na carteira (Conta Corrente, Poupança, Conta Caixa, Cartão de Crédito, " +
|
|
94
|
+
"CDB, Tesouro Direto, Ações, Fundo, Empréstimo, Conta a Pagar/Receber, etc.). Obrigatórios: tipo_conta e nome. " +
|
|
95
|
+
"Use listar_tipos_conta para ver os tipos válidos. Nomes (tipo_conta, portfolio, banco, moeda, país) são " +
|
|
96
|
+
"resolvidos para IDs. Campos bancários (banco, agência, conta) valem para contas com banco. " +
|
|
97
|
+
"Padrões: moeda BRL, país Brasil, data inicial hoje, saldo inicial 0. Portfólio: se omitido, o sistema atribui um padrão.",
|
|
96
98
|
inputSchema: {
|
|
97
99
|
type: "object",
|
|
98
100
|
properties: {
|
|
99
|
-
|
|
101
|
+
tipo_conta: { type: "string", description: "Tipo da conta (ex: 'Conta Corrente', 'Poupança', 'CDB', 'Cartão de Crédito') — obrigatório" },
|
|
102
|
+
nome: { type: "string", description: "Nome da conta — obrigatório" },
|
|
103
|
+
portfolio: { type: "string", description: "Tipo de Portfólio (ex: 'Tesouraria', 'Liquidez', 'Renda Fixa', 'Renda Variável', 'Previdência')" },
|
|
104
|
+
moeda: { type: "string", description: "Moeda (padrão: 'BRL')" },
|
|
105
|
+
pais: { type: "string", description: "País (padrão: 'Brasil')" },
|
|
106
|
+
data_inicial: { type: "string", description: "Data inicial de controle YYYY-MM-DD (padrão: hoje)" },
|
|
107
|
+
saldo_inicial: { type: "number", description: "Saldo inicial (padrão: 0)" },
|
|
108
|
+
observacoes: { type: "string", description: "Observações" },
|
|
100
109
|
banco: { type: "string", description: "Nome ou número do banco (ex: 'Banco do Brasil', '001', 'Inter')" },
|
|
101
110
|
agencia: { type: "string", description: "Número da agência" },
|
|
102
111
|
digito_agencia: { type: "string", description: "Dígito da agência" },
|
|
103
112
|
numero_conta: { type: "string", description: "Número da conta bancária" },
|
|
104
113
|
digito_conta: { type: "string", description: "Dígito da conta" },
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
114
|
+
nib: { type: "string", description: "NIB" },
|
|
115
|
+
iban: { type: "string", description: "IBAN" },
|
|
116
|
+
swift: { type: "string", description: "SWIFT" },
|
|
117
|
+
limite_cheque_especial: { type: "number", description: "Limite do cheque especial" },
|
|
118
|
+
juros_cheque_especial: { type: "number", description: "Juros do cheque especial (%)" },
|
|
109
119
|
},
|
|
110
|
-
required: ["nome"],
|
|
120
|
+
required: ["tipo_conta", "nome"],
|
|
111
121
|
},
|
|
112
122
|
},
|
|
113
123
|
{
|
|
@@ -823,24 +833,32 @@ export async function handleTool(name, args, options = {}) {
|
|
|
823
833
|
incluirSaldo: args["incluir_saldo"],
|
|
824
834
|
}));
|
|
825
835
|
}
|
|
826
|
-
case "
|
|
836
|
+
case "criar_conta": {
|
|
827
837
|
const authErr = requireAuth();
|
|
828
838
|
if (authErr)
|
|
829
839
|
return authErr;
|
|
830
840
|
const walErr = requireWallet();
|
|
831
841
|
if (walErr)
|
|
832
842
|
return walErr;
|
|
833
|
-
return ok(await client.
|
|
843
|
+
return ok(await client.criarConta({
|
|
844
|
+
tipo_conta: args["tipo_conta"],
|
|
834
845
|
nome: args["nome"],
|
|
846
|
+
portfolio: args["portfolio"],
|
|
847
|
+
moeda: args["moeda"],
|
|
848
|
+
pais: args["pais"],
|
|
849
|
+
data_inicial: args["data_inicial"],
|
|
850
|
+
saldo_inicial: args["saldo_inicial"],
|
|
851
|
+
observacoes: args["observacoes"],
|
|
835
852
|
banco: args["banco"],
|
|
836
853
|
agencia: args["agencia"],
|
|
837
854
|
digito_agencia: args["digito_agencia"],
|
|
838
855
|
numero_conta: args["numero_conta"],
|
|
839
856
|
digito_conta: args["digito_conta"],
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
857
|
+
nib: args["nib"],
|
|
858
|
+
iban: args["iban"],
|
|
859
|
+
swift: args["swift"],
|
|
860
|
+
limite_cheque_especial: args["limite_cheque_especial"],
|
|
861
|
+
juros_cheque_especial: args["juros_cheque_especial"],
|
|
844
862
|
}));
|
|
845
863
|
}
|
|
846
864
|
case "listar_tipos_conta": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "next-finance-mcp",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.50",
|
|
4
4
|
"mcpName": "io.github.paivapiovesan/next-finance",
|
|
5
5
|
"description": "MCP Server para o NEXT Finance (finance.net.br) — login via browser, listagem de carteiras, contas e lançamentos",
|
|
6
6
|
"type": "module",
|