@plasoft/boletos 1.0.3 → 1.0.4

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/build/index.d.mts CHANGED
@@ -159,6 +159,12 @@ declare function gerarRemessa(dados: IDadosRemessa): Promise<{
159
159
  arquivo: string;
160
160
  } | null>;
161
161
 
162
+ declare const ailos: {
163
+ gerarDadosBoleto: typeof gerarDadosBoleto;
164
+ gerarPDF: typeof gerarPDF;
165
+ gerarRemessa: typeof gerarRemessa;
166
+ };
167
+
162
168
  declare function bradesco(): void;
163
169
 
164
- export { bradesco, gerarDadosBoleto, gerarPDF, gerarRemessa };
170
+ export { ailos, bradesco };
package/build/index.d.ts CHANGED
@@ -159,6 +159,12 @@ declare function gerarRemessa(dados: IDadosRemessa): Promise<{
159
159
  arquivo: string;
160
160
  } | null>;
161
161
 
162
+ declare const ailos: {
163
+ gerarDadosBoleto: typeof gerarDadosBoleto;
164
+ gerarPDF: typeof gerarPDF;
165
+ gerarRemessa: typeof gerarRemessa;
166
+ };
167
+
162
168
  declare function bradesco(): void;
163
169
 
164
- export { bradesco, gerarDadosBoleto, gerarPDF, gerarRemessa };
170
+ export { ailos, bradesco };
package/build/index.js CHANGED
@@ -50,10 +50,8 @@ var __async = (__this, __arguments, generator) => {
50
50
  // src/index.ts
51
51
  var src_exports = {};
52
52
  __export(src_exports, {
53
- bradesco: () => bradesco,
54
- gerarDadosBoleto: () => gerarDadosBoleto,
55
- gerarPDF: () => gerarPDF,
56
- gerarRemessa: () => gerarRemessa
53
+ ailos: () => ailos,
54
+ bradesco: () => bradesco
57
55
  });
58
56
  module.exports = __toCommonJS(src_exports);
59
57
 
@@ -529,14 +527,19 @@ function gerarRemessa(dados) {
529
527
  });
530
528
  }
531
529
 
530
+ // src/ailos/index.ts
531
+ var ailos = {
532
+ gerarDadosBoleto,
533
+ gerarPDF,
534
+ gerarRemessa
535
+ };
536
+
532
537
  // src/bradesco/index.ts
533
538
  function bradesco() {
534
539
  console.log("bradesco");
535
540
  }
536
541
  // Annotate the CommonJS export names for ESM import in node:
537
542
  0 && (module.exports = {
538
- bradesco,
539
- gerarDadosBoleto,
540
- gerarPDF,
541
- gerarRemessa
543
+ ailos,
544
+ bradesco
542
545
  });
package/build/index.mjs CHANGED
@@ -491,13 +491,18 @@ function gerarRemessa(dados) {
491
491
  });
492
492
  }
493
493
 
494
+ // src/ailos/index.ts
495
+ var ailos = {
496
+ gerarDadosBoleto,
497
+ gerarPDF,
498
+ gerarRemessa
499
+ };
500
+
494
501
  // src/bradesco/index.ts
495
502
  function bradesco() {
496
503
  console.log("bradesco");
497
504
  }
498
505
  export {
499
- bradesco,
500
- gerarDadosBoleto,
501
- gerarPDF,
502
- gerarRemessa
506
+ ailos,
507
+ bradesco
503
508
  };
package/package.json CHANGED
@@ -1,12 +1,11 @@
1
1
  {
2
2
  "name": "@plasoft/boletos",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "main": "build/index.js",
5
5
  "license": "ISC",
6
6
  "scripts": {
7
7
  "build": "tsup src/index.ts --format esm, cjs --dts --out-dir build",
8
- "dev": "tsup src/index.ts --format esm, cjs --dts --out-dir build --watch",
9
- "deploy": "npm run build && npm publish --access=public"
8
+ "dev": "tsup src/index.ts --format esm, cjs --dts --out-dir build --watch"
10
9
  },
11
10
  "devDependencies": {
12
11
  "@types/bwip-js": "^3.2.0",
@@ -2,7 +2,7 @@ import { gerarDadosBoleto } from './gerarDadosBoleto';
2
2
  import { gerarPDF } from './gerarPDF';
3
3
  import { gerarRemessa } from './gerarRemessa';
4
4
 
5
- export {
5
+ export const ailos = {
6
6
  gerarDadosBoleto,
7
7
  gerarPDF,
8
8
  gerarRemessa,