nfewizard-io 0.4.4 → 0.4.6

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.
@@ -1,3 +1,15 @@
1
+ /**
2
+ * @description :
3
+ * @author : Marco Aurélio Silva Lima
4
+ * @group :
5
+ * @created : 28/07/2025 - 21:43:03
6
+ *
7
+ * MODIFICATION LOG
8
+ * - Version : 1.0.0
9
+ * - Date : 28/07/2025
10
+ * - Author : Cassio Seffrin
11
+ * - Modification :
12
+ **/
1
13
  /**
2
14
  * [NFe]
3
15
  * TAG raiz da NF-e
@@ -1255,9 +1267,9 @@ export type Imposto = {
1255
1267
  */
1256
1268
  impostoDevol?: impostoDevol;
1257
1269
  /**
1258
- * @param {number} vTotTrib - Valor aproximado total de tributos federais, estaduais e municipais.
1270
+ * @param {string} vTotTrib - Valor aproximado total de tributos federais, estaduais e municipais.
1259
1271
  */
1260
- vTotTrib?: number;
1272
+ vTotTrib?: string;
1261
1273
  };
1262
1274
  /**
1263
1275
  * [ICMS]
@@ -29,6 +29,10 @@ declare class Utility {
29
29
  * Função recursiva para encontrar a chave em qualquer nivel do objeto
30
30
  */
31
31
  findInObj: (obj: GenericObject, chave: string) => any;
32
+ /**
33
+ * Função recursiva para encontrar todas as ocorrências de uma chave em qualquer nivel do objeto
34
+ */
35
+ findAllInObj: (obj: GenericObject, chave: string) => any[];
32
36
  /**
33
37
  * Método responsável por gravar o XML como json
34
38
  */