@scell/sdk 1.8.0 → 1.9.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/README.md +18 -4
- package/dist/index.d.mts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/resources/fiscal.ts +15 -0
- package/src/types/invoices.ts +0 -2
package/dist/index.mjs
CHANGED
|
@@ -1584,6 +1584,18 @@ var FiscalResource = class {
|
|
|
1584
1584
|
async forensicExport(options, requestOptions) {
|
|
1585
1585
|
return this.http.get("/tenant/fiscal/forensic-export", options, requestOptions);
|
|
1586
1586
|
}
|
|
1587
|
+
/** Download the ISCA measures register as PDF */
|
|
1588
|
+
async downloadMeasuresRegister() {
|
|
1589
|
+
return this.http.get("tenant/fiscal/isca/measures-register/download");
|
|
1590
|
+
}
|
|
1591
|
+
/** Download the ISCA technical dossier as PDF */
|
|
1592
|
+
async downloadTechnicalDossier() {
|
|
1593
|
+
return this.http.get("tenant/fiscal/isca/technical-dossier/download");
|
|
1594
|
+
}
|
|
1595
|
+
/** Download the ISCA self-attestation as PDF */
|
|
1596
|
+
async downloadSelfAttestation() {
|
|
1597
|
+
return this.http.get("tenant/fiscal/isca/self-attestation/download");
|
|
1598
|
+
}
|
|
1587
1599
|
};
|
|
1588
1600
|
|
|
1589
1601
|
// src/resources/billing.ts
|