facturas 0.5.1 → 0.6.0
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/README.md +4 -2
- package/dist/{constants.js → constants.mjs} +1 -1
- package/dist/errors.d.ts +16 -1
- package/dist/{errors.js → errors.mjs} +15 -1
- package/dist/errors.mjs.map +1 -0
- package/dist/fiscal-evidence-DbbFH74x.d.ts +69 -0
- package/dist/{index-CqXVyU0E.d.ts → index-3fdgJ3c2.d.ts} +1 -1
- package/dist/index.d.ts +6 -5
- package/dist/{index.js → index.mjs} +920 -266
- package/dist/index.mjs.map +1 -0
- package/dist/padron.d.ts +2 -2
- package/dist/{padron.js → padron.mjs} +1 -1
- package/dist/padron.mjs.map +1 -0
- package/dist/{types-CKKe1Oo4.d.ts → types-Cup-oevW.d.ts} +2 -0
- package/dist/types.d.ts +1 -1
- package/dist/types.mjs +1 -0
- package/dist/wsfe.d.ts +32 -3
- package/dist/{wsfe.js → wsfe.mjs} +478 -109
- package/dist/wsfe.mjs.map +1 -0
- package/dist/wsmtxca.d.ts +64 -8
- package/dist/wsmtxca.mjs +645 -0
- package/dist/wsmtxca.mjs.map +1 -0
- package/package.json +12 -10
- package/dist/errors.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/padron.js.map +0 -1
- package/dist/types.js +0 -1
- package/dist/wsfe.js.map +0 -1
- package/dist/wsmtxca.js +0 -258
- package/dist/wsmtxca.js.map +0 -1
- /package/dist/{constants.js.map → constants.mjs.map} +0 -0
- /package/dist/{types.js.map → types.mjs.map} +0 -0
package/README.md
CHANGED
|
@@ -16,8 +16,8 @@ npm install facturas
|
|
|
16
16
|
|
|
17
17
|
For the full quick start, troubleshooting, and examples, see the repository docs:
|
|
18
18
|
|
|
19
|
-
- [Repository README](https://github.com/LaPyme/
|
|
20
|
-
- [Examples directory](https://github.com/LaPyme/
|
|
19
|
+
- [Repository README](https://github.com/LaPyme/facturas#readme)
|
|
20
|
+
- [Examples directory](https://github.com/LaPyme/facturas/tree/main/examples)
|
|
21
21
|
|
|
22
22
|
The package exports:
|
|
23
23
|
|
|
@@ -33,6 +33,8 @@ The package exports:
|
|
|
33
33
|
|
|
34
34
|
Authenticated WSFE and WSMTXCA methods accept `forceRefresh: true` when callers need to discard the cached WSAA TA and request a fresh Token Authorization for the same service.
|
|
35
35
|
|
|
36
|
+
For durable fiscal workflows, `authorizeVoucherOutcome(...)` returns typed `authorized`, `rejected`, or `indeterminate` evidence and performs one authorization transport attempt. `lookupVoucher(...)` provides operation-scoped `found` or `not_found` recovery evidence. The existing `authorizeVoucher(...)`, `getVoucherInfo(...)`, and `getVoucher(...)` methods remain compatibility wrappers.
|
|
37
|
+
|
|
36
38
|
## WSFE associated periods
|
|
37
39
|
|
|
38
40
|
`client.wsfe.createNextVoucher({ data })` supports `associatedPeriod` for credit/debit notes that use `PeriodoAsoc` instead of `CbtesAsoc`:
|
package/dist/errors.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { A as ArcaServiceName } from './types-
|
|
1
|
+
import { A as ArcaServiceName } from './types-Cup-oevW.js';
|
|
2
|
+
import { A as ArcaFiscalResultLevel, a as ArcaFiscalResults, b as ArcaFiscalIssue } from './fiscal-evidence-DbbFH74x.js';
|
|
2
3
|
|
|
3
4
|
/** Base error class for all ARCA-related errors. */
|
|
4
5
|
declare class ArcaError extends Error {
|
|
@@ -67,9 +68,23 @@ declare class ArcaInvalidSoapResponseError extends ArcaError {
|
|
|
67
68
|
declare class ArcaServiceError extends ArcaError {
|
|
68
69
|
readonly name: string;
|
|
69
70
|
readonly serviceCode?: string | number;
|
|
71
|
+
readonly service?: ArcaServiceName;
|
|
72
|
+
readonly operation?: string;
|
|
73
|
+
readonly result?: string;
|
|
74
|
+
readonly resultLevel?: ArcaFiscalResultLevel;
|
|
75
|
+
readonly results?: ArcaFiscalResults;
|
|
76
|
+
readonly cae?: string;
|
|
77
|
+
readonly issues?: readonly ArcaFiscalIssue[];
|
|
70
78
|
readonly detail?: unknown;
|
|
71
79
|
constructor(message: string, options?: ErrorOptions & {
|
|
72
80
|
serviceCode?: string | number;
|
|
81
|
+
service?: ArcaServiceName;
|
|
82
|
+
operation?: string;
|
|
83
|
+
result?: string;
|
|
84
|
+
resultLevel?: ArcaFiscalResultLevel;
|
|
85
|
+
results?: ArcaFiscalResults;
|
|
86
|
+
cae?: string;
|
|
87
|
+
issues?: readonly ArcaFiscalIssue[];
|
|
73
88
|
detail?: unknown;
|
|
74
89
|
});
|
|
75
90
|
}
|
|
@@ -68,10 +68,24 @@ var ArcaInvalidSoapResponseError = class extends ArcaError {
|
|
|
68
68
|
var ArcaServiceError = class extends ArcaError {
|
|
69
69
|
name = "ArcaServiceError";
|
|
70
70
|
serviceCode;
|
|
71
|
+
service;
|
|
72
|
+
operation;
|
|
73
|
+
result;
|
|
74
|
+
resultLevel;
|
|
75
|
+
results;
|
|
76
|
+
cae;
|
|
77
|
+
issues;
|
|
71
78
|
detail;
|
|
72
79
|
constructor(message, options) {
|
|
73
80
|
super(message, "ARCA_SERVICE_ERROR", options);
|
|
74
81
|
this.serviceCode = options?.serviceCode;
|
|
82
|
+
this.service = options?.service;
|
|
83
|
+
this.operation = options?.operation;
|
|
84
|
+
this.result = options?.result;
|
|
85
|
+
this.resultLevel = options?.resultLevel;
|
|
86
|
+
this.results = options?.results;
|
|
87
|
+
this.cae = options?.cae;
|
|
88
|
+
this.issues = options?.issues;
|
|
75
89
|
this.detail = options?.detail;
|
|
76
90
|
}
|
|
77
91
|
};
|
|
@@ -84,4 +98,4 @@ export {
|
|
|
84
98
|
ArcaSoapFaultError,
|
|
85
99
|
ArcaTransportError
|
|
86
100
|
};
|
|
87
|
-
//# sourceMappingURL=errors.
|
|
101
|
+
//# sourceMappingURL=errors.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/errors.ts"],"sourcesContent":["import type { ArcaServiceName } from \"./internal/types\";\nimport type {\n ArcaFiscalIssue,\n ArcaFiscalResultLevel,\n ArcaFiscalResults,\n} from \"./services/fiscal-evidence\";\n\n/** Base error class for all ARCA-related errors. */\nexport class ArcaError extends Error {\n readonly code: string;\n override readonly name: string = \"ArcaError\";\n\n constructor(message: string, code = \"ARCA_ERROR\", options?: ErrorOptions) {\n super(message, options);\n this.code = code;\n }\n}\n\n/** Thrown when the ARCA client configuration is missing or invalid. */\nexport class ArcaConfigurationError extends ArcaError {\n override readonly name: string = \"ArcaConfigurationError\";\n\n constructor(message: string, options?: ErrorOptions) {\n super(message, \"ARCA_CONFIGURATION_ERROR\", options);\n }\n}\n\n/** Thrown when caller-provided input data is missing or invalid. */\nexport class ArcaInputError extends ArcaError {\n override readonly name: string = \"ArcaInputError\";\n readonly detail?: unknown;\n\n constructor(\n message: string,\n options?: ErrorOptions & {\n detail?: unknown;\n }\n ) {\n super(message, \"ARCA_INPUT_ERROR\", options);\n this.detail = options?.detail;\n }\n}\n\n/** Thrown when an HTTP request to an ARCA endpoint fails at the transport level. */\nexport class ArcaTransportError extends ArcaError {\n override readonly name: string = \"ArcaTransportError\";\n readonly statusCode?: number;\n readonly contentType?: string;\n readonly responseBody?: string;\n\n constructor(\n message: string,\n options?: ErrorOptions & {\n statusCode?: number;\n contentType?: string;\n responseBody?: string;\n }\n ) {\n super(message, \"ARCA_TRANSPORT_ERROR\", options);\n this.statusCode = options?.statusCode;\n this.contentType = options?.contentType;\n this.responseBody = options?.responseBody;\n }\n}\n\n/** Thrown when the SOAP response contains a Fault element. */\nexport class ArcaSoapFaultError extends ArcaError {\n override readonly name: string = \"ArcaSoapFaultError\";\n readonly faultCode?: string;\n readonly detail?: unknown;\n\n constructor(\n message: string,\n options?: ErrorOptions & {\n faultCode?: string;\n detail?: unknown;\n }\n ) {\n super(message, \"ARCA_SOAP_FAULT\", options);\n this.faultCode = options?.faultCode;\n this.detail = options?.detail;\n }\n}\n\n/** Thrown when a response cannot be parsed as a valid SOAP envelope. */\nexport class ArcaInvalidSoapResponseError extends ArcaError {\n override readonly name: string = \"ArcaInvalidSoapResponseError\";\n readonly service?: ArcaServiceName;\n readonly operation?: string;\n readonly endpointUrl?: string;\n readonly statusCode?: number;\n readonly contentType?: string;\n readonly responseBodyLength?: number;\n readonly responseBodyPreview?: string;\n readonly parsedDetail?: unknown;\n\n constructor(\n message: string,\n options?: ErrorOptions & {\n service?: ArcaServiceName;\n operation?: string;\n endpointUrl?: string;\n statusCode?: number;\n contentType?: string;\n responseBodyLength?: number;\n responseBodyPreview?: string;\n parsedDetail?: unknown;\n }\n ) {\n super(message, \"ARCA_INVALID_SOAP_RESPONSE\", options);\n this.service = options?.service;\n this.operation = options?.operation;\n this.endpointUrl = options?.endpointUrl;\n this.statusCode = options?.statusCode;\n this.contentType = options?.contentType;\n this.responseBodyLength = options?.responseBodyLength;\n this.responseBodyPreview = options?.responseBodyPreview;\n this.parsedDetail = options?.parsedDetail;\n }\n}\n\n/** Thrown when an ARCA service (WSFE, WSMTXCA, Padron) returns a domain-level error. */\nexport class ArcaServiceError extends ArcaError {\n override readonly name: string = \"ArcaServiceError\";\n readonly serviceCode?: string | number;\n readonly service?: ArcaServiceName;\n readonly operation?: string;\n readonly result?: string;\n readonly resultLevel?: ArcaFiscalResultLevel;\n readonly results?: ArcaFiscalResults;\n readonly cae?: string;\n readonly issues?: readonly ArcaFiscalIssue[];\n readonly detail?: unknown;\n\n constructor(\n message: string,\n options?: ErrorOptions & {\n serviceCode?: string | number;\n service?: ArcaServiceName;\n operation?: string;\n result?: string;\n resultLevel?: ArcaFiscalResultLevel;\n results?: ArcaFiscalResults;\n cae?: string;\n issues?: readonly ArcaFiscalIssue[];\n detail?: unknown;\n }\n ) {\n super(message, \"ARCA_SERVICE_ERROR\", options);\n this.serviceCode = options?.serviceCode;\n this.service = options?.service;\n this.operation = options?.operation;\n this.result = options?.result;\n this.resultLevel = options?.resultLevel;\n this.results = options?.results;\n this.cae = options?.cae;\n this.issues = options?.issues;\n this.detail = options?.detail;\n }\n}\n"],"mappings":";AAQO,IAAM,YAAN,cAAwB,MAAM;AAAA,EAC1B;AAAA,EACS,OAAe;AAAA,EAEjC,YAAY,SAAiB,OAAO,cAAc,SAAwB;AACxE,UAAM,SAAS,OAAO;AACtB,SAAK,OAAO;AAAA,EACd;AACF;AAGO,IAAM,yBAAN,cAAqC,UAAU;AAAA,EAClC,OAAe;AAAA,EAEjC,YAAY,SAAiB,SAAwB;AACnD,UAAM,SAAS,4BAA4B,OAAO;AAAA,EACpD;AACF;AAGO,IAAM,iBAAN,cAA6B,UAAU;AAAA,EAC1B,OAAe;AAAA,EACxB;AAAA,EAET,YACE,SACA,SAGA;AACA,UAAM,SAAS,oBAAoB,OAAO;AAC1C,SAAK,SAAS,SAAS;AAAA,EACzB;AACF;AAGO,IAAM,qBAAN,cAAiC,UAAU;AAAA,EAC9B,OAAe;AAAA,EACxB;AAAA,EACA;AAAA,EACA;AAAA,EAET,YACE,SACA,SAKA;AACA,UAAM,SAAS,wBAAwB,OAAO;AAC9C,SAAK,aAAa,SAAS;AAC3B,SAAK,cAAc,SAAS;AAC5B,SAAK,eAAe,SAAS;AAAA,EAC/B;AACF;AAGO,IAAM,qBAAN,cAAiC,UAAU;AAAA,EAC9B,OAAe;AAAA,EACxB;AAAA,EACA;AAAA,EAET,YACE,SACA,SAIA;AACA,UAAM,SAAS,mBAAmB,OAAO;AACzC,SAAK,YAAY,SAAS;AAC1B,SAAK,SAAS,SAAS;AAAA,EACzB;AACF;AAGO,IAAM,+BAAN,cAA2C,UAAU;AAAA,EACxC,OAAe;AAAA,EACxB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EAET,YACE,SACA,SAUA;AACA,UAAM,SAAS,8BAA8B,OAAO;AACpD,SAAK,UAAU,SAAS;AACxB,SAAK,YAAY,SAAS;AAC1B,SAAK,cAAc,SAAS;AAC5B,SAAK,aAAa,SAAS;AAC3B,SAAK,cAAc,SAAS;AAC5B,SAAK,qBAAqB,SAAS;AACnC,SAAK,sBAAsB,SAAS;AACpC,SAAK,eAAe,SAAS;AAAA,EAC/B;AACF;AAGO,IAAM,mBAAN,cAA+B,UAAU;AAAA,EAC5B,OAAe;AAAA,EACxB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EAET,YACE,SACA,SAWA;AACA,UAAM,SAAS,sBAAsB,OAAO;AAC5C,SAAK,cAAc,SAAS;AAC5B,SAAK,UAAU,SAAS;AACxB,SAAK,YAAY,SAAS;AAC1B,SAAK,SAAS,SAAS;AACvB,SAAK,cAAc,SAAS;AAC5B,SAAK,UAAU,SAAS;AACxB,SAAK,MAAM,SAAS;AACpB,SAAK,SAAS,SAAS;AACvB,SAAK,SAAS,SAAS;AAAA,EACzB;AACF;","names":[]}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/** ARCA services that authorize fiscal vouchers. */
|
|
2
|
+
type ArcaFiscalService = "wsfe" | "wsmtxca";
|
|
3
|
+
/** Location of a structured authorization result in the service response. */
|
|
4
|
+
type ArcaFiscalResultLevel = "header" | "detail" | "operation";
|
|
5
|
+
/** Every structured result field exposed by one provider response. */
|
|
6
|
+
type ArcaFiscalResults = {
|
|
7
|
+
header?: string;
|
|
8
|
+
detail?: string;
|
|
9
|
+
operation?: string;
|
|
10
|
+
};
|
|
11
|
+
/** Source and meaning of one provider issue. */
|
|
12
|
+
type ArcaFiscalIssue = {
|
|
13
|
+
service: ArcaFiscalService;
|
|
14
|
+
operation: string;
|
|
15
|
+
source: "error" | "observation";
|
|
16
|
+
category: "business" | "infrastructure" | "observation" | "unknown";
|
|
17
|
+
code?: string;
|
|
18
|
+
message: string;
|
|
19
|
+
resultLevel?: ArcaFiscalResultLevel;
|
|
20
|
+
};
|
|
21
|
+
/** Why an authorization response cannot prove approval or rejection. */
|
|
22
|
+
type ArcaAuthorizationIndeterminateReason = "transport_error" | "soap_fault" | "invalid_response" | "incomplete_response" | "contradictory_response" | "unexpected_error";
|
|
23
|
+
type ArcaAuthorizationEvidenceBase<TService extends ArcaFiscalService = ArcaFiscalService> = {
|
|
24
|
+
service: TService;
|
|
25
|
+
operation: string;
|
|
26
|
+
results: ArcaFiscalResults;
|
|
27
|
+
errors: ArcaFiscalIssue[];
|
|
28
|
+
observations: ArcaFiscalIssue[];
|
|
29
|
+
raw?: Record<string, unknown>;
|
|
30
|
+
};
|
|
31
|
+
/** Structured evidence returned by one exact voucher authorization attempt. */
|
|
32
|
+
type ArcaAuthorizationOutcome<TService extends ArcaFiscalService = ArcaFiscalService> = (ArcaAuthorizationEvidenceBase<TService> & {
|
|
33
|
+
kind: "authorized";
|
|
34
|
+
result: "A" | "O";
|
|
35
|
+
resultLevel: ArcaFiscalResultLevel;
|
|
36
|
+
cae: string;
|
|
37
|
+
caeExpiry?: string;
|
|
38
|
+
voucherNumber: number;
|
|
39
|
+
}) | (ArcaAuthorizationEvidenceBase<TService> & {
|
|
40
|
+
kind: "rejected";
|
|
41
|
+
result: "R";
|
|
42
|
+
resultLevel: ArcaFiscalResultLevel;
|
|
43
|
+
}) | (ArcaAuthorizationEvidenceBase<TService> & {
|
|
44
|
+
kind: "indeterminate";
|
|
45
|
+
reason: ArcaAuthorizationIndeterminateReason;
|
|
46
|
+
result?: string;
|
|
47
|
+
resultLevel?: ArcaFiscalResultLevel;
|
|
48
|
+
cae?: string;
|
|
49
|
+
caeExpiry?: string;
|
|
50
|
+
voucherNumber?: number;
|
|
51
|
+
});
|
|
52
|
+
/** Structured result of consulting one exact voucher number. */
|
|
53
|
+
type ArcaVoucherLookupResult<TVoucher, TService extends ArcaFiscalService = ArcaFiscalService> = {
|
|
54
|
+
kind: "found";
|
|
55
|
+
service: TService;
|
|
56
|
+
operation: string;
|
|
57
|
+
voucher: TVoucher;
|
|
58
|
+
observations: ArcaFiscalIssue[];
|
|
59
|
+
raw: Record<string, unknown>;
|
|
60
|
+
} | {
|
|
61
|
+
kind: "not_found";
|
|
62
|
+
service: TService;
|
|
63
|
+
operation: string;
|
|
64
|
+
errors: ArcaFiscalIssue[];
|
|
65
|
+
observations: ArcaFiscalIssue[];
|
|
66
|
+
raw: Record<string, unknown>;
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
export type { ArcaFiscalResultLevel as A, ArcaFiscalResults as a, ArcaFiscalIssue as b, ArcaAuthorizationIndeterminateReason as c, ArcaAuthorizationOutcome as d, ArcaFiscalService as e, ArcaVoucherLookupResult as f };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as ArcaSoapExecutionOptions, b as ArcaSoapResponse, c as ArcaWsaaServiceId, d as ArcaAuthOptions, e as ArcaAuthCredentials } from './types-
|
|
1
|
+
import { a as ArcaSoapExecutionOptions, b as ArcaSoapResponse, c as ArcaWsaaServiceId, d as ArcaAuthOptions, e as ArcaAuthCredentials } from './types-Cup-oevW.js';
|
|
2
2
|
|
|
3
3
|
type SoapTransport = {
|
|
4
4
|
execute<TBody, TResult>(request: ArcaSoapExecutionOptions<TBody>): Promise<ArcaSoapResponse<TResult>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import { f as ArcaClientConfig, g as ArcaEnvironment, h as ArcaWsaaSessionStore } from './types-
|
|
2
|
-
export { e as ArcaAuthCredentials, d as ArcaAuthOptions, i as ArcaLogLevel, j as ArcaLoggerConfig, k as ArcaPadronServiceName, l as ArcaRepresentedTaxId, A as ArcaServiceName, m as ArcaServiceTarget, c as ArcaWsaaServiceId, n as ArcaWsaaSessionKey } from './types-
|
|
1
|
+
import { f as ArcaClientConfig, g as ArcaEnvironment, h as ArcaWsaaSessionStore } from './types-Cup-oevW.js';
|
|
2
|
+
export { e as ArcaAuthCredentials, d as ArcaAuthOptions, i as ArcaLogLevel, j as ArcaLoggerConfig, k as ArcaPadronServiceName, l as ArcaRepresentedTaxId, A as ArcaServiceName, m as ArcaServiceTarget, c as ArcaWsaaServiceId, n as ArcaWsaaSessionKey } from './types-Cup-oevW.js';
|
|
3
3
|
import { PadronService } from './padron.js';
|
|
4
4
|
export { CreatePadronServiceOptions, PadronTaxIdLookupResult, PadronTaxpayerResult, createPadronService } from './padron.js';
|
|
5
5
|
import { WsfeService } from './wsfe.js';
|
|
6
|
-
export { CreateWsfeServiceOptions, WsfeActivity, WsfeActivityType, WsfeAssociatedPeriod, WsfeAssociatedVoucher, WsfeAuthorizationResult, WsfeAuthorizeVoucherInput, WsfeBuyer, WsfeCatalogEntry, WsfeCurrencyType, WsfeDateInput, WsfeOptionalField, WsfeQuotation, WsfeReceiverVatCondition, WsfeSalesPoint, WsfeServerStatus, WsfeTax, WsfeVatRate, WsfeVoucherInfo, WsfeVoucherInput, createWsfeService } from './wsfe.js';
|
|
6
|
+
export { CreateWsfeServiceOptions, WsfeActivity, WsfeActivityType, WsfeAssociatedPeriod, WsfeAssociatedVoucher, WsfeAuthorizationOutcome, WsfeAuthorizationResult, WsfeAuthorizeVoucherInput, WsfeBuyer, WsfeCatalogEntry, WsfeCurrencyType, WsfeDateInput, WsfeOptionalField, WsfeQuotation, WsfeReceiverVatCondition, WsfeSalesPoint, WsfeServerStatus, WsfeTax, WsfeVatRate, WsfeVoucherInfo, WsfeVoucherInput, WsfeVoucherLookupResult, createWsfeService } from './wsfe.js';
|
|
7
7
|
import { WsmtxcaService } from './wsmtxca.js';
|
|
8
|
-
export { CreateWsmtxcaServiceOptions, WsmtxcaAuthorizationResult, WsmtxcaLastAuthorizedVoucherResult, WsmtxcaVoucherLookupResult, createWsmtxcaService } from './wsmtxca.js';
|
|
8
|
+
export { CreateWsmtxcaServiceOptions, WsmtxcaAuthorizationOutcome, WsmtxcaAuthorizationResult, WsmtxcaAuthorizeVoucherInput, WsmtxcaLastAuthorizedVoucherResult, WsmtxcaSalesPoint, WsmtxcaSalesPointsResult, WsmtxcaVoucherInfo, WsmtxcaVoucherLookupOutcome, WsmtxcaVoucherLookupResult, createWsmtxcaService } from './wsmtxca.js';
|
|
9
9
|
export { ArcaConfigurationError, ArcaError, ArcaInputError, ArcaInvalidSoapResponseError, ArcaServiceError, ArcaSoapFaultError, ArcaTransportError } from './errors.js';
|
|
10
|
-
|
|
10
|
+
export { c as ArcaAuthorizationIndeterminateReason, d as ArcaAuthorizationOutcome, b as ArcaFiscalIssue, A as ArcaFiscalResultLevel, a as ArcaFiscalResults, e as ArcaFiscalService, f as ArcaVoucherLookupResult } from './fiscal-evidence-DbbFH74x.js';
|
|
11
|
+
import './index-3fdgJ3c2.js';
|
|
11
12
|
|
|
12
13
|
/** Fully wired ARCA client with access to all service modules. */
|
|
13
14
|
type ArcaClient = {
|