dgii-ts 0.1.1 → 0.1.2
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/bulk.d.cts +1 -1
- package/dist/bulk.d.ts +1 -1
- package/dist/{chunk-HR4DCHH7.js → chunk-43LGK4YP.js} +3 -1
- package/dist/{chunk-6CIP7YH6.cjs → chunk-5FZ4F5UR.cjs} +4 -4
- package/dist/{chunk-VJ4ZQQIQ.cjs → chunk-BQPH3JDZ.cjs} +2 -0
- package/dist/{chunk-HGE4QZ3H.js → chunk-HRRYZUKI.js} +2 -0
- package/dist/{chunk-4OYLCOUL.cjs → chunk-JBKAE66C.cjs} +3 -1
- package/dist/{chunk-4TKAQ4WV.js → chunk-ROJUYPIK.js} +2 -2
- package/dist/client.cjs +4 -4
- package/dist/client.d.cts +1 -1
- package/dist/client.d.ts +1 -1
- package/dist/client.js +3 -3
- package/dist/{index-CS-7YY2y.d.cts → index-BE6Wfozd.d.cts} +5 -0
- package/dist/{index-CS-7YY2y.d.ts → index-BE6Wfozd.d.ts} +5 -0
- package/dist/index.cjs +4 -4
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -3
- package/dist/scraping.cjs +2 -2
- package/dist/scraping.d.cts +1 -1
- package/dist/scraping.d.ts +1 -1
- package/dist/scraping.js +1 -1
- package/dist/soap.cjs +2 -2
- package/dist/soap.d.cts +1 -1
- package/dist/soap.d.ts +1 -1
- package/dist/soap.js +1 -1
- package/dist/validators.d.cts +1 -1
- package/dist/validators.d.ts +1 -1
- package/package.json +1 -1
package/dist/bulk.d.cts
CHANGED
package/dist/bulk.d.ts
CHANGED
|
@@ -80,7 +80,9 @@ function parseContribuyenteResponse(responseXml) {
|
|
|
80
80
|
nombre: collapseSpaces(String(data["RGE_NOMBRE"] ?? "")),
|
|
81
81
|
nombreComercial: collapseSpaces(String(data["NOMBRE_COMERCIAL"] ?? "")),
|
|
82
82
|
estado: String(data["ESTATUS"] ?? "") === "2" ? "ACTIVO" : "INACTIVO",
|
|
83
|
-
categoria: String(data["CATEGORIA"] ?? "")
|
|
83
|
+
categoria: String(data["CATEGORIA"] ?? ""),
|
|
84
|
+
// TODO: derivar de la respuesta SOAP cuando la DGII restaure el endpoint
|
|
85
|
+
esFacturadorElectronico: false
|
|
84
86
|
};
|
|
85
87
|
}
|
|
86
88
|
function parseNcfResponse(responseXml) {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkJBKAE66Ccjs = require('./chunk-JBKAE66C.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkBQPH3JDZcjs = require('./chunk-BQPH3JDZ.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
@@ -123,10 +123,10 @@ async function withRetry(fn, options = DEFAULT_RETRY_OPTIONS) {
|
|
|
123
123
|
var DgiiClient = class {
|
|
124
124
|
constructor(options) {
|
|
125
125
|
const timeout = _optionalChain([options, 'optionalAccess', _ => _.timeout]);
|
|
126
|
-
this._scraping = new (0,
|
|
126
|
+
this._scraping = new (0, _chunkBQPH3JDZcjs.ScrapingClient)(
|
|
127
127
|
timeout ? { timeout } : void 0
|
|
128
128
|
);
|
|
129
|
-
this._soap = new (0,
|
|
129
|
+
this._soap = new (0, _chunkJBKAE66Ccjs.DgiiSoapClient)(
|
|
130
130
|
timeout ? { timeout } : void 0
|
|
131
131
|
);
|
|
132
132
|
this._scrapingBreaker = new ConsecutiveBreaker(
|
|
@@ -72,12 +72,14 @@ function parseContribuyenteHtml(html) {
|
|
|
72
72
|
const actividadEconomica = _nullishCoalesce(fields.get("Actividad Economica"), () => ( void 0));
|
|
73
73
|
const regimenDePagos = _nullishCoalesce(fields.get("Regimen de pagos"), () => ( void 0));
|
|
74
74
|
const administracionLocal = _nullishCoalesce(fields.get("Administracion Local"), () => ( void 0));
|
|
75
|
+
const rawFacturadorElectronico = _nullishCoalesce(fields.get("Facturador Electronico"), () => ( ""));
|
|
75
76
|
return {
|
|
76
77
|
rnc: _chunkQH4BK5X3cjs.stripNonDigits.call(void 0, rnc),
|
|
77
78
|
nombre: _chunkQH4BK5X3cjs.collapseSpaces.call(void 0, nombre),
|
|
78
79
|
nombreComercial: _chunkQH4BK5X3cjs.collapseSpaces.call(void 0, nombreComercial),
|
|
79
80
|
estado: rawEstado.toUpperCase().includes("ACTIVO") ? "ACTIVO" : "INACTIVO",
|
|
80
81
|
categoria: _chunkQH4BK5X3cjs.collapseSpaces.call(void 0, categoria),
|
|
82
|
+
esFacturadorElectronico: rawFacturadorElectronico.trim().toUpperCase().replace(/[ÍI]/g, "I").startsWith("SI"),
|
|
81
83
|
actividadEconomica: actividadEconomica ? _chunkQH4BK5X3cjs.collapseSpaces.call(void 0, actividadEconomica) : void 0,
|
|
82
84
|
regimenDePagos: regimenDePagos ? _chunkQH4BK5X3cjs.collapseSpaces.call(void 0, regimenDePagos) : void 0,
|
|
83
85
|
administracionLocal: administracionLocal ? _chunkQH4BK5X3cjs.collapseSpaces.call(void 0, administracionLocal) : void 0
|
|
@@ -72,12 +72,14 @@ function parseContribuyenteHtml(html) {
|
|
|
72
72
|
const actividadEconomica = fields.get("Actividad Economica") ?? void 0;
|
|
73
73
|
const regimenDePagos = fields.get("Regimen de pagos") ?? void 0;
|
|
74
74
|
const administracionLocal = fields.get("Administracion Local") ?? void 0;
|
|
75
|
+
const rawFacturadorElectronico = fields.get("Facturador Electronico") ?? "";
|
|
75
76
|
return {
|
|
76
77
|
rnc: stripNonDigits(rnc),
|
|
77
78
|
nombre: collapseSpaces(nombre),
|
|
78
79
|
nombreComercial: collapseSpaces(nombreComercial),
|
|
79
80
|
estado: rawEstado.toUpperCase().includes("ACTIVO") ? "ACTIVO" : "INACTIVO",
|
|
80
81
|
categoria: collapseSpaces(categoria),
|
|
82
|
+
esFacturadorElectronico: rawFacturadorElectronico.trim().toUpperCase().replace(/[ÍI]/g, "I").startsWith("SI"),
|
|
81
83
|
actividadEconomica: actividadEconomica ? collapseSpaces(actividadEconomica) : void 0,
|
|
82
84
|
regimenDePagos: regimenDePagos ? collapseSpaces(regimenDePagos) : void 0,
|
|
83
85
|
administracionLocal: administracionLocal ? collapseSpaces(administracionLocal) : void 0
|
|
@@ -80,7 +80,9 @@ function parseContribuyenteResponse(responseXml) {
|
|
|
80
80
|
nombre: _chunkQH4BK5X3cjs.collapseSpaces.call(void 0, String(_nullishCoalesce(data["RGE_NOMBRE"], () => ( "")))),
|
|
81
81
|
nombreComercial: _chunkQH4BK5X3cjs.collapseSpaces.call(void 0, String(_nullishCoalesce(data["NOMBRE_COMERCIAL"], () => ( "")))),
|
|
82
82
|
estado: String(_nullishCoalesce(data["ESTATUS"], () => ( ""))) === "2" ? "ACTIVO" : "INACTIVO",
|
|
83
|
-
categoria: String(_nullishCoalesce(data["CATEGORIA"], () => ( "")))
|
|
83
|
+
categoria: String(_nullishCoalesce(data["CATEGORIA"], () => ( ""))),
|
|
84
|
+
// TODO: derivar de la respuesta SOAP cuando la DGII restaure el endpoint
|
|
85
|
+
esFacturadorElectronico: false
|
|
84
86
|
};
|
|
85
87
|
}
|
|
86
88
|
function parseNcfResponse(responseXml) {
|
package/dist/client.cjs
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
7
|
-
require('./chunk-
|
|
8
|
-
require('./chunk-
|
|
6
|
+
var _chunk5FZ4F5URcjs = require('./chunk-5FZ4F5UR.cjs');
|
|
7
|
+
require('./chunk-JBKAE66C.cjs');
|
|
8
|
+
require('./chunk-BQPH3JDZ.cjs');
|
|
9
9
|
require('./chunk-WY6V4Y7S.cjs');
|
|
10
10
|
require('./chunk-QH4BK5X3.cjs');
|
|
11
11
|
require('./chunk-7RJWFPCZ.cjs');
|
|
@@ -14,4 +14,4 @@ require('./chunk-7RJWFPCZ.cjs');
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
exports.ConsecutiveBreaker =
|
|
17
|
+
exports.ConsecutiveBreaker = _chunk5FZ4F5URcjs.ConsecutiveBreaker; exports.DgiiClient = _chunk5FZ4F5URcjs.DgiiClient; exports.isRetryableError = _chunk5FZ4F5URcjs.isRetryableError; exports.withRetry = _chunk5FZ4F5URcjs.withRetry;
|
package/dist/client.d.cts
CHANGED
package/dist/client.d.ts
CHANGED
package/dist/client.js
CHANGED
|
@@ -3,9 +3,9 @@ import {
|
|
|
3
3
|
DgiiClient,
|
|
4
4
|
isRetryableError,
|
|
5
5
|
withRetry
|
|
6
|
-
} from "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
6
|
+
} from "./chunk-ROJUYPIK.js";
|
|
7
|
+
import "./chunk-43LGK4YP.js";
|
|
8
|
+
import "./chunk-HRRYZUKI.js";
|
|
9
9
|
import "./chunk-53A7IG4Y.js";
|
|
10
10
|
import "./chunk-D26S6EXD.js";
|
|
11
11
|
import "./chunk-DMGDJEUY.js";
|
|
@@ -22,6 +22,10 @@ type NcfValidationResult = {
|
|
|
22
22
|
};
|
|
23
23
|
/**
|
|
24
24
|
* Datos de un contribuyente registrado en la DGII.
|
|
25
|
+
*
|
|
26
|
+
* `esFacturadorElectronico` indica si la DGII certificó al RNC como
|
|
27
|
+
* emisor de e-CF. Hoy solo el parser de scraping deriva el valor real;
|
|
28
|
+
* el parser SOAP retorna `false` hasta que la DGII restaure el endpoint.
|
|
25
29
|
*/
|
|
26
30
|
interface Contribuyente {
|
|
27
31
|
rnc: string;
|
|
@@ -29,6 +33,7 @@ interface Contribuyente {
|
|
|
29
33
|
nombreComercial: string;
|
|
30
34
|
estado: string;
|
|
31
35
|
categoria: string;
|
|
36
|
+
esFacturadorElectronico: boolean;
|
|
32
37
|
actividadEconomica?: string;
|
|
33
38
|
regimenDePagos?: string;
|
|
34
39
|
administracionLocal?: string;
|
|
@@ -22,6 +22,10 @@ type NcfValidationResult = {
|
|
|
22
22
|
};
|
|
23
23
|
/**
|
|
24
24
|
* Datos de un contribuyente registrado en la DGII.
|
|
25
|
+
*
|
|
26
|
+
* `esFacturadorElectronico` indica si la DGII certificó al RNC como
|
|
27
|
+
* emisor de e-CF. Hoy solo el parser de scraping deriva el valor real;
|
|
28
|
+
* el parser SOAP retorna `false` hasta que la DGII restaure el endpoint.
|
|
25
29
|
*/
|
|
26
30
|
interface Contribuyente {
|
|
27
31
|
rnc: string;
|
|
@@ -29,6 +33,7 @@ interface Contribuyente {
|
|
|
29
33
|
nombreComercial: string;
|
|
30
34
|
estado: string;
|
|
31
35
|
categoria: string;
|
|
36
|
+
esFacturadorElectronico: boolean;
|
|
32
37
|
actividadEconomica?: string;
|
|
33
38
|
regimenDePagos?: string;
|
|
34
39
|
administracionLocal?: string;
|
package/dist/index.cjs
CHANGED
|
@@ -18,17 +18,17 @@ require('./chunk-2ST6QKHA.cjs');
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
var
|
|
21
|
+
var _chunk5FZ4F5URcjs = require('./chunk-5FZ4F5UR.cjs');
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
|
|
26
|
-
var
|
|
26
|
+
var _chunkJBKAE66Ccjs = require('./chunk-JBKAE66C.cjs');
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
var
|
|
31
|
+
var _chunkBQPH3JDZcjs = require('./chunk-BQPH3JDZ.cjs');
|
|
32
32
|
require('./chunk-WY6V4Y7S.cjs');
|
|
33
33
|
require('./chunk-QH4BK5X3.cjs');
|
|
34
34
|
|
|
@@ -63,4 +63,4 @@ var _chunk7RJWFPCZcjs = require('./chunk-7RJWFPCZ.cjs');
|
|
|
63
63
|
|
|
64
64
|
|
|
65
65
|
|
|
66
|
-
exports.AllStrategiesFailedError = _chunk7RJWFPCZcjs.AllStrategiesFailedError; exports.ConsecutiveBreaker =
|
|
66
|
+
exports.AllStrategiesFailedError = _chunk7RJWFPCZcjs.AllStrategiesFailedError; exports.ConsecutiveBreaker = _chunk5FZ4F5URcjs.ConsecutiveBreaker; exports.DGII_BULK_URL = _chunkFZ6QDTC4cjs.DGII_BULK_URL; exports.DGII_NCF_URL = _chunkBQPH3JDZcjs.DGII_NCF_URL; exports.DGII_RNC_URL = _chunkBQPH3JDZcjs.DGII_RNC_URL; exports.DGII_SOAP_BASE_URL = _chunkJBKAE66Ccjs.DGII_SOAP_BASE_URL; exports.DgiiClient = _chunk5FZ4F5URcjs.DgiiClient; exports.DgiiConnectionError = _chunk7RJWFPCZcjs.DgiiConnectionError; exports.DgiiError = _chunk7RJWFPCZcjs.DgiiError; exports.DgiiNotFoundError = _chunk7RJWFPCZcjs.DgiiNotFoundError; exports.DgiiServiceError = _chunk7RJWFPCZcjs.DgiiServiceError; exports.DgiiSoapClient = _chunkJBKAE66Ccjs.DgiiSoapClient; exports.ECF_TYPE_NAMES = _chunkSUSDEKIDcjs.ECF_TYPE_NAMES; exports.NCF_TYPE_NAMES = _chunkSUSDEKIDcjs.NCF_TYPE_NAMES; exports.SOAP_ACTIONS = _chunkJBKAE66Ccjs.SOAP_ACTIONS; exports.ScrapingClient = _chunkBQPH3JDZcjs.ScrapingClient; exports.downloadBulkFile = _chunkFZ6QDTC4cjs.downloadBulkFile; exports.isRetryableError = _chunk5FZ4F5URcjs.isRetryableError; exports.parseBulkFile = _chunkFZ6QDTC4cjs.parseBulkFile; exports.validateCedula = _chunkSUSDEKIDcjs.validateCedula; exports.validateEcf = _chunkSUSDEKIDcjs.validateEcf; exports.validateNcf = _chunkSUSDEKIDcjs.validateNcf; exports.validateRnc = _chunkSUSDEKIDcjs.validateRnc; exports.withRetry = _chunk5FZ4F5URcjs.withRetry;
|
package/dist/index.d.cts
CHANGED
|
@@ -4,4 +4,4 @@ export { AllStrategiesFailedError, DgiiConnectionError, DgiiError, DgiiNotFoundE
|
|
|
4
4
|
export { DGII_NCF_URL, DGII_RNC_URL, ScrapingClient, ScrapingClientOptions } from './scraping.cjs';
|
|
5
5
|
export { CircuitBreakerOptions, ClientOptions, ConsecutiveBreaker, DgiiClient, RetryOptions, isRetryableError, withRetry } from './client.cjs';
|
|
6
6
|
export { DGII_BULK_URL, DownloadOptions, ParseOptions, downloadBulkFile, parseBulkFile } from './bulk.cjs';
|
|
7
|
-
export { B as BulkContribuyente, C as Contribuyente, N as NcfQueryResult, a as NcfValidationResult, V as ValidationResult } from './index-
|
|
7
|
+
export { B as BulkContribuyente, C as Contribuyente, N as NcfQueryResult, a as NcfValidationResult, V as ValidationResult } from './index-BE6Wfozd.cjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -4,4 +4,4 @@ export { AllStrategiesFailedError, DgiiConnectionError, DgiiError, DgiiNotFoundE
|
|
|
4
4
|
export { DGII_NCF_URL, DGII_RNC_URL, ScrapingClient, ScrapingClientOptions } from './scraping.js';
|
|
5
5
|
export { CircuitBreakerOptions, ClientOptions, ConsecutiveBreaker, DgiiClient, RetryOptions, isRetryableError, withRetry } from './client.js';
|
|
6
6
|
export { DGII_BULK_URL, DownloadOptions, ParseOptions, downloadBulkFile, parseBulkFile } from './bulk.js';
|
|
7
|
-
export { B as BulkContribuyente, C as Contribuyente, N as NcfQueryResult, a as NcfValidationResult, V as ValidationResult } from './index-
|
|
7
|
+
export { B as BulkContribuyente, C as Contribuyente, N as NcfQueryResult, a as NcfValidationResult, V as ValidationResult } from './index-BE6Wfozd.js';
|
package/dist/index.js
CHANGED
|
@@ -18,17 +18,17 @@ import {
|
|
|
18
18
|
DgiiClient,
|
|
19
19
|
isRetryableError,
|
|
20
20
|
withRetry
|
|
21
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-ROJUYPIK.js";
|
|
22
22
|
import {
|
|
23
23
|
DGII_SOAP_BASE_URL,
|
|
24
24
|
DgiiSoapClient,
|
|
25
25
|
SOAP_ACTIONS
|
|
26
|
-
} from "./chunk-
|
|
26
|
+
} from "./chunk-43LGK4YP.js";
|
|
27
27
|
import {
|
|
28
28
|
DGII_NCF_URL,
|
|
29
29
|
DGII_RNC_URL,
|
|
30
30
|
ScrapingClient
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-HRRYZUKI.js";
|
|
32
32
|
import "./chunk-53A7IG4Y.js";
|
|
33
33
|
import "./chunk-D26S6EXD.js";
|
|
34
34
|
import {
|
package/dist/scraping.cjs
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkBQPH3JDZcjs = require('./chunk-BQPH3JDZ.cjs');
|
|
8
8
|
require('./chunk-WY6V4Y7S.cjs');
|
|
9
9
|
require('./chunk-QH4BK5X3.cjs');
|
|
10
10
|
require('./chunk-7RJWFPCZ.cjs');
|
|
@@ -13,4 +13,4 @@ require('./chunk-7RJWFPCZ.cjs');
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
exports.DGII_NCF_URL =
|
|
16
|
+
exports.DGII_NCF_URL = _chunkBQPH3JDZcjs.DGII_NCF_URL; exports.DGII_RNC_URL = _chunkBQPH3JDZcjs.DGII_RNC_URL; exports.FORM_FIELDS = _chunkBQPH3JDZcjs.FORM_FIELDS; exports.ScrapingClient = _chunkBQPH3JDZcjs.ScrapingClient;
|
package/dist/scraping.d.cts
CHANGED
package/dist/scraping.d.ts
CHANGED
package/dist/scraping.js
CHANGED
package/dist/soap.cjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkJBKAE66Ccjs = require('./chunk-JBKAE66C.cjs');
|
|
7
7
|
require('./chunk-WY6V4Y7S.cjs');
|
|
8
8
|
require('./chunk-QH4BK5X3.cjs');
|
|
9
9
|
|
|
@@ -20,4 +20,4 @@ var _chunk7RJWFPCZcjs = require('./chunk-7RJWFPCZ.cjs');
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
exports.DGII_SOAP_BASE_URL =
|
|
23
|
+
exports.DGII_SOAP_BASE_URL = _chunkJBKAE66Ccjs.DGII_SOAP_BASE_URL; exports.DgiiConnectionError = _chunk7RJWFPCZcjs.DgiiConnectionError; exports.DgiiError = _chunk7RJWFPCZcjs.DgiiError; exports.DgiiNotFoundError = _chunk7RJWFPCZcjs.DgiiNotFoundError; exports.DgiiServiceError = _chunk7RJWFPCZcjs.DgiiServiceError; exports.DgiiSoapClient = _chunkJBKAE66Ccjs.DgiiSoapClient; exports.SOAP_ACTIONS = _chunkJBKAE66Ccjs.SOAP_ACTIONS;
|
package/dist/soap.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { C as Contribuyente, N as NcfQueryResult } from './index-
|
|
1
|
+
import { C as Contribuyente, N as NcfQueryResult } from './index-BE6Wfozd.cjs';
|
|
2
2
|
export { DgiiConnectionError, DgiiError, DgiiNotFoundError, DgiiServiceError } from './errors.cjs';
|
|
3
3
|
|
|
4
4
|
interface SoapClientOptions {
|
package/dist/soap.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { C as Contribuyente, N as NcfQueryResult } from './index-
|
|
1
|
+
import { C as Contribuyente, N as NcfQueryResult } from './index-BE6Wfozd.js';
|
|
2
2
|
export { DgiiConnectionError, DgiiError, DgiiNotFoundError, DgiiServiceError } from './errors.js';
|
|
3
3
|
|
|
4
4
|
interface SoapClientOptions {
|
package/dist/soap.js
CHANGED
package/dist/validators.d.cts
CHANGED
package/dist/validators.d.ts
CHANGED
package/package.json
CHANGED