@invoicetronic/ts-sdk 1.1.7 → 1.3.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/CHANGELOG.md +1 -1
- package/README.md +2 -2
- package/api.ts +1 -0
- package/common.ts +15 -2
- package/configuration.ts +1 -1
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/common.d.ts +6 -0
- package/dist/common.js +17 -3
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +1 -0
- package/dist/esm/api.js +1 -0
- package/dist/esm/common.d.ts +6 -0
- package/dist/esm/common.js +15 -2
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/src/api/company-api.d.ts +35 -30
- package/dist/esm/src/api/company-api.js +34 -27
- package/dist/esm/src/api/export-api.d.ts +115 -0
- package/dist/esm/src/api/export-api.js +179 -0
- package/dist/esm/src/api/log-api.d.ts +10 -10
- package/dist/esm/src/api/log-api.js +8 -8
- package/dist/esm/src/api/receive-api.d.ts +15 -15
- package/dist/esm/src/api/receive-api.js +12 -12
- package/dist/esm/src/api/send-api.d.ts +55 -55
- package/dist/esm/src/api/send-api.js +44 -44
- package/dist/esm/src/api/status-api.d.ts +5 -5
- package/dist/esm/src/api/status-api.js +4 -4
- package/dist/esm/src/api/update-api.d.ts +10 -10
- package/dist/esm/src/api/update-api.js +8 -8
- package/dist/esm/src/api/webhook-api.d.ts +25 -25
- package/dist/esm/src/api/webhook-api.js +20 -20
- package/dist/esm/src/models/event.d.ts +2 -2
- package/dist/esm/src/models/receive.d.ts +3 -3
- package/dist/esm/src/models/send.d.ts +2 -2
- package/dist/esm/src/models/update.d.ts +2 -2
- package/dist/esm/src/models/web-hook-history.d.ts +1 -1
- package/dist/esm/src/models/web-hook.d.ts +2 -2
- package/dist/src/api/company-api.d.ts +35 -30
- package/dist/src/api/company-api.js +34 -27
- package/dist/src/api/export-api.d.ts +115 -0
- package/dist/src/api/export-api.js +186 -0
- package/dist/src/api/log-api.d.ts +10 -10
- package/dist/src/api/log-api.js +8 -8
- package/dist/src/api/receive-api.d.ts +15 -15
- package/dist/src/api/receive-api.js +12 -12
- package/dist/src/api/send-api.d.ts +55 -55
- package/dist/src/api/send-api.js +44 -44
- package/dist/src/api/status-api.d.ts +5 -5
- package/dist/src/api/status-api.js +4 -4
- package/dist/src/api/update-api.d.ts +10 -10
- package/dist/src/api/update-api.js +8 -8
- package/dist/src/api/webhook-api.d.ts +25 -25
- package/dist/src/api/webhook-api.js +20 -20
- package/dist/src/models/event.d.ts +2 -2
- package/dist/src/models/receive.d.ts +3 -3
- package/dist/src/models/send.d.ts +2 -2
- package/dist/src/models/update.d.ts +2 -2
- package/dist/src/models/web-hook-history.d.ts +1 -1
- package/dist/src/models/web-hook.d.ts +2 -2
- package/docs/CompanyApi.md +10 -6
- package/docs/Event.md +2 -2
- package/docs/ExportApi.md +79 -0
- package/docs/LogApi.md +2 -2
- package/docs/Receive.md +3 -3
- package/docs/ReceiveApi.md +4 -3
- package/docs/Send.md +2 -2
- package/docs/SendApi.md +11 -11
- package/docs/StatusApi.md +1 -1
- package/docs/Update.md +2 -2
- package/docs/UpdateApi.md +2 -2
- package/docs/WebHook.md +2 -2
- package/docs/WebHookHistory.md +1 -1
- package/docs/WebhookApi.md +6 -5
- package/package.json +1 -1
- package/src/api/company-api.ts +43 -34
- package/src/api/export-api.ts +211 -0
- package/src/api/log-api.ts +11 -11
- package/src/api/receive-api.ts +16 -16
- package/src/api/send-api.ts +56 -56
- package/src/api/status-api.ts +6 -6
- package/src/api/update-api.ts +11 -11
- package/src/api/webhook-api.ts +26 -26
- package/src/models/event.ts +2 -2
- package/src/models/receive.ts +3 -3
- package/src/models/send.ts +2 -2
- package/src/models/update.ts +2 -2
- package/src/models/web-hook-history.ts +1 -1
- package/src/models/web-hook.ts +2 -2
|
@@ -35,7 +35,7 @@ import { BASE_PATH, BaseAPI, operationServerMap } from '../../base';
|
|
|
35
35
|
export const SendApiAxiosParamCreator = function (configuration) {
|
|
36
36
|
return {
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* Add a new invoice by uploading a file. Supported formats are XML (FatturaPA) and P7M (signed). The invoice will be signed (if requested), validated (if requested), and queued for delivery to SDI. Status updates from SDI will be available in the `update` endpoint. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/). You can also upload invoices via the [Dashboard](https://dashboard.invoicetronic.com).
|
|
39
39
|
* @summary Add an invoice by file
|
|
40
40
|
* @param {File} file
|
|
41
41
|
* @param {boolean} [validate] Validate the document first, and reject it on failure.
|
|
@@ -81,7 +81,7 @@ export const SendApiAxiosParamCreator = function (configuration) {
|
|
|
81
81
|
};
|
|
82
82
|
}),
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
84
|
+
* Retrieve a paginated list of send invoices. Results can be filtered by various criteria such as company, date ranges, and document number. Returns invoice metadata; set `include_payload` to true to include the full invoice content. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
85
85
|
* @summary List invoices
|
|
86
86
|
* @param {number} [companyId] Company id
|
|
87
87
|
* @param {string} [identifier] SDI identifier.
|
|
@@ -186,7 +186,7 @@ export const SendApiAxiosParamCreator = function (configuration) {
|
|
|
186
186
|
};
|
|
187
187
|
}),
|
|
188
188
|
/**
|
|
189
|
-
*
|
|
189
|
+
* Retrieve a send invoice by its internal id. The `id` is unique and assigned by the system when the invoice is created. Returns invoice metadata; set `include_payload` to true to include the full invoice content. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
190
190
|
* @summary Get a invoice by id
|
|
191
191
|
* @param {number} id Item id
|
|
192
192
|
* @param {boolean} [includePayload] Include payload in the response. Defaults to false.
|
|
@@ -223,7 +223,7 @@ export const SendApiAxiosParamCreator = function (configuration) {
|
|
|
223
223
|
};
|
|
224
224
|
}),
|
|
225
225
|
/**
|
|
226
|
-
*
|
|
226
|
+
* Retrieve a send invoice by its SDI identifier. The `identifier` is assigned by the SDI and becomes available after the invoice has been accepted. Returns invoice metadata; set `include_payload` to true to include the full invoice content. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
227
227
|
* @summary Get a invoice by identifier
|
|
228
228
|
* @param {string} identifier
|
|
229
229
|
* @param {boolean} [includePayload] Include payload in the response. Defaults to false.
|
|
@@ -260,7 +260,7 @@ export const SendApiAxiosParamCreator = function (configuration) {
|
|
|
260
260
|
};
|
|
261
261
|
}),
|
|
262
262
|
/**
|
|
263
|
-
* Send invoices are
|
|
263
|
+
* Add a new invoice using a FatturaPA JSON representation. The invoice will be signed (if requested), validated (if requested), and queued for delivery to SDI. Status updates from SDI will be available in the `update` endpoint. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/). You can also upload invoices via the [Dashboard](https://dashboard.invoicetronic.com).
|
|
264
264
|
* @summary Add an invoice by json
|
|
265
265
|
* @param {FatturaOrdinaria} fatturaOrdinaria
|
|
266
266
|
* @param {boolean} [validate] Validate the document first, and reject it on failure.
|
|
@@ -302,7 +302,7 @@ export const SendApiAxiosParamCreator = function (configuration) {
|
|
|
302
302
|
};
|
|
303
303
|
}),
|
|
304
304
|
/**
|
|
305
|
-
* Send
|
|
305
|
+
* Add a new invoice using a structured Send object. The invoice will be signed (if requested), validated (if requested), and queued for delivery to SDI. Status updates from SDI will be available in the `update` endpoint. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/). You can also upload invoices via the [Dashboard](https://dashboard.invoicetronic.com).
|
|
306
306
|
* @summary Add an invoice
|
|
307
307
|
* @param {Send} send
|
|
308
308
|
* @param {boolean} [validate] Validate the document first, and reject it on failure.
|
|
@@ -344,7 +344,7 @@ export const SendApiAxiosParamCreator = function (configuration) {
|
|
|
344
344
|
};
|
|
345
345
|
}),
|
|
346
346
|
/**
|
|
347
|
-
* Send invoices are
|
|
347
|
+
* Validate an invoice file without sending it to SDI. Supported formats are XML (FatturaPA) and P7M (signed). Use this to check for errors before actual submission. Returns validation results with any errors found. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
348
348
|
* @summary Validate an invoice file
|
|
349
349
|
* @param {File} file
|
|
350
350
|
* @param {*} [options] Override http request option.
|
|
@@ -382,7 +382,7 @@ export const SendApiAxiosParamCreator = function (configuration) {
|
|
|
382
382
|
};
|
|
383
383
|
}),
|
|
384
384
|
/**
|
|
385
|
-
* Send invoices are
|
|
385
|
+
* Validate a JSON invoice without sending it to SDI. Use this to check for errors before actual submission. Returns validation results with any errors found. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
386
386
|
* @summary Validate an invoice by json
|
|
387
387
|
* @param {FatturaOrdinaria} fatturaOrdinaria
|
|
388
388
|
* @param {*} [options] Override http request option.
|
|
@@ -416,7 +416,7 @@ export const SendApiAxiosParamCreator = function (configuration) {
|
|
|
416
416
|
};
|
|
417
417
|
}),
|
|
418
418
|
/**
|
|
419
|
-
* Send invoices are
|
|
419
|
+
* Validate an invoice without sending it to SDI. Use this to check for errors before actual submission. Returns validation results with any errors found. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
420
420
|
* @summary Validate an invoice
|
|
421
421
|
* @param {Send} send
|
|
422
422
|
* @param {*} [options] Override http request option.
|
|
@@ -450,7 +450,7 @@ export const SendApiAxiosParamCreator = function (configuration) {
|
|
|
450
450
|
};
|
|
451
451
|
}),
|
|
452
452
|
/**
|
|
453
|
-
* Send invoices are
|
|
453
|
+
* Validate an XML invoice document without sending it to SDI. Use this to check for errors before actual submission. Returns validation results with any errors found. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
454
454
|
* @summary Validate an invoice by xml
|
|
455
455
|
* @param {FatturaOrdinaria} fatturaOrdinaria
|
|
456
456
|
* @param {*} [options] Override http request option.
|
|
@@ -484,7 +484,7 @@ export const SendApiAxiosParamCreator = function (configuration) {
|
|
|
484
484
|
};
|
|
485
485
|
}),
|
|
486
486
|
/**
|
|
487
|
-
* Send invoices are
|
|
487
|
+
* Add a new invoice using a raw XML document in FatturaPA format. The invoice will be signed (if requested), validated (if requested), and queued for delivery to SDI. Status updates from SDI will be available in the `update` endpoint. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/). You can also upload invoices via the [Dashboard](https://dashboard.invoicetronic.com).
|
|
488
488
|
* @summary Add an invoice by xml
|
|
489
489
|
* @param {FatturaOrdinaria} fatturaOrdinaria
|
|
490
490
|
* @param {boolean} [validate] Validate the document first, and reject it on failure.
|
|
@@ -534,7 +534,7 @@ export const SendApiFp = function (configuration) {
|
|
|
534
534
|
const localVarAxiosParamCreator = SendApiAxiosParamCreator(configuration);
|
|
535
535
|
return {
|
|
536
536
|
/**
|
|
537
|
-
*
|
|
537
|
+
* Add a new invoice by uploading a file. Supported formats are XML (FatturaPA) and P7M (signed). The invoice will be signed (if requested), validated (if requested), and queued for delivery to SDI. Status updates from SDI will be available in the `update` endpoint. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/). You can also upload invoices via the [Dashboard](https://dashboard.invoicetronic.com).
|
|
538
538
|
* @summary Add an invoice by file
|
|
539
539
|
* @param {File} file
|
|
540
540
|
* @param {boolean} [validate] Validate the document first, and reject it on failure.
|
|
@@ -552,7 +552,7 @@ export const SendApiFp = function (configuration) {
|
|
|
552
552
|
});
|
|
553
553
|
},
|
|
554
554
|
/**
|
|
555
|
-
*
|
|
555
|
+
* Retrieve a paginated list of send invoices. Results can be filtered by various criteria such as company, date ranges, and document number. Returns invoice metadata; set `include_payload` to true to include the full invoice content. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
556
556
|
* @summary List invoices
|
|
557
557
|
* @param {number} [companyId] Company id
|
|
558
558
|
* @param {string} [identifier] SDI identifier.
|
|
@@ -583,7 +583,7 @@ export const SendApiFp = function (configuration) {
|
|
|
583
583
|
});
|
|
584
584
|
},
|
|
585
585
|
/**
|
|
586
|
-
*
|
|
586
|
+
* Retrieve a send invoice by its internal id. The `id` is unique and assigned by the system when the invoice is created. Returns invoice metadata; set `include_payload` to true to include the full invoice content. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
587
587
|
* @summary Get a invoice by id
|
|
588
588
|
* @param {number} id Item id
|
|
589
589
|
* @param {boolean} [includePayload] Include payload in the response. Defaults to false.
|
|
@@ -600,7 +600,7 @@ export const SendApiFp = function (configuration) {
|
|
|
600
600
|
});
|
|
601
601
|
},
|
|
602
602
|
/**
|
|
603
|
-
*
|
|
603
|
+
* Retrieve a send invoice by its SDI identifier. The `identifier` is assigned by the SDI and becomes available after the invoice has been accepted. Returns invoice metadata; set `include_payload` to true to include the full invoice content. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
604
604
|
* @summary Get a invoice by identifier
|
|
605
605
|
* @param {string} identifier
|
|
606
606
|
* @param {boolean} [includePayload] Include payload in the response. Defaults to false.
|
|
@@ -617,7 +617,7 @@ export const SendApiFp = function (configuration) {
|
|
|
617
617
|
});
|
|
618
618
|
},
|
|
619
619
|
/**
|
|
620
|
-
* Send invoices are
|
|
620
|
+
* Add a new invoice using a FatturaPA JSON representation. The invoice will be signed (if requested), validated (if requested), and queued for delivery to SDI. Status updates from SDI will be available in the `update` endpoint. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/). You can also upload invoices via the [Dashboard](https://dashboard.invoicetronic.com).
|
|
621
621
|
* @summary Add an invoice by json
|
|
622
622
|
* @param {FatturaOrdinaria} fatturaOrdinaria
|
|
623
623
|
* @param {boolean} [validate] Validate the document first, and reject it on failure.
|
|
@@ -635,7 +635,7 @@ export const SendApiFp = function (configuration) {
|
|
|
635
635
|
});
|
|
636
636
|
},
|
|
637
637
|
/**
|
|
638
|
-
* Send
|
|
638
|
+
* Add a new invoice using a structured Send object. The invoice will be signed (if requested), validated (if requested), and queued for delivery to SDI. Status updates from SDI will be available in the `update` endpoint. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/). You can also upload invoices via the [Dashboard](https://dashboard.invoicetronic.com).
|
|
639
639
|
* @summary Add an invoice
|
|
640
640
|
* @param {Send} send
|
|
641
641
|
* @param {boolean} [validate] Validate the document first, and reject it on failure.
|
|
@@ -653,7 +653,7 @@ export const SendApiFp = function (configuration) {
|
|
|
653
653
|
});
|
|
654
654
|
},
|
|
655
655
|
/**
|
|
656
|
-
* Send invoices are
|
|
656
|
+
* Validate an invoice file without sending it to SDI. Supported formats are XML (FatturaPA) and P7M (signed). Use this to check for errors before actual submission. Returns validation results with any errors found. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
657
657
|
* @summary Validate an invoice file
|
|
658
658
|
* @param {File} file
|
|
659
659
|
* @param {*} [options] Override http request option.
|
|
@@ -669,7 +669,7 @@ export const SendApiFp = function (configuration) {
|
|
|
669
669
|
});
|
|
670
670
|
},
|
|
671
671
|
/**
|
|
672
|
-
* Send invoices are
|
|
672
|
+
* Validate a JSON invoice without sending it to SDI. Use this to check for errors before actual submission. Returns validation results with any errors found. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
673
673
|
* @summary Validate an invoice by json
|
|
674
674
|
* @param {FatturaOrdinaria} fatturaOrdinaria
|
|
675
675
|
* @param {*} [options] Override http request option.
|
|
@@ -685,7 +685,7 @@ export const SendApiFp = function (configuration) {
|
|
|
685
685
|
});
|
|
686
686
|
},
|
|
687
687
|
/**
|
|
688
|
-
* Send invoices are
|
|
688
|
+
* Validate an invoice without sending it to SDI. Use this to check for errors before actual submission. Returns validation results with any errors found. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
689
689
|
* @summary Validate an invoice
|
|
690
690
|
* @param {Send} send
|
|
691
691
|
* @param {*} [options] Override http request option.
|
|
@@ -701,7 +701,7 @@ export const SendApiFp = function (configuration) {
|
|
|
701
701
|
});
|
|
702
702
|
},
|
|
703
703
|
/**
|
|
704
|
-
* Send invoices are
|
|
704
|
+
* Validate an XML invoice document without sending it to SDI. Use this to check for errors before actual submission. Returns validation results with any errors found. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
705
705
|
* @summary Validate an invoice by xml
|
|
706
706
|
* @param {FatturaOrdinaria} fatturaOrdinaria
|
|
707
707
|
* @param {*} [options] Override http request option.
|
|
@@ -717,7 +717,7 @@ export const SendApiFp = function (configuration) {
|
|
|
717
717
|
});
|
|
718
718
|
},
|
|
719
719
|
/**
|
|
720
|
-
* Send invoices are
|
|
720
|
+
* Add a new invoice using a raw XML document in FatturaPA format. The invoice will be signed (if requested), validated (if requested), and queued for delivery to SDI. Status updates from SDI will be available in the `update` endpoint. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/). You can also upload invoices via the [Dashboard](https://dashboard.invoicetronic.com).
|
|
721
721
|
* @summary Add an invoice by xml
|
|
722
722
|
* @param {FatturaOrdinaria} fatturaOrdinaria
|
|
723
723
|
* @param {boolean} [validate] Validate the document first, and reject it on failure.
|
|
@@ -743,7 +743,7 @@ export const SendApiFactory = function (configuration, basePath, axios) {
|
|
|
743
743
|
const localVarFp = SendApiFp(configuration);
|
|
744
744
|
return {
|
|
745
745
|
/**
|
|
746
|
-
*
|
|
746
|
+
* Add a new invoice by uploading a file. Supported formats are XML (FatturaPA) and P7M (signed). The invoice will be signed (if requested), validated (if requested), and queued for delivery to SDI. Status updates from SDI will be available in the `update` endpoint. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/). You can also upload invoices via the [Dashboard](https://dashboard.invoicetronic.com).
|
|
747
747
|
* @summary Add an invoice by file
|
|
748
748
|
* @param {File} file
|
|
749
749
|
* @param {boolean} [validate] Validate the document first, and reject it on failure.
|
|
@@ -755,7 +755,7 @@ export const SendApiFactory = function (configuration, basePath, axios) {
|
|
|
755
755
|
return localVarFp.sendFilePost(file, validate, signature, options).then((request) => request(axios, basePath));
|
|
756
756
|
},
|
|
757
757
|
/**
|
|
758
|
-
*
|
|
758
|
+
* Retrieve a paginated list of send invoices. Results can be filtered by various criteria such as company, date ranges, and document number. Returns invoice metadata; set `include_payload` to true to include the full invoice content. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
759
759
|
* @summary List invoices
|
|
760
760
|
* @param {number} [companyId] Company id
|
|
761
761
|
* @param {string} [identifier] SDI identifier.
|
|
@@ -780,7 +780,7 @@ export const SendApiFactory = function (configuration, basePath, axios) {
|
|
|
780
780
|
return localVarFp.sendGet(companyId, identifier, committente, prestatore, fileName, lastUpdateFrom, lastUpdateTo, dateSentFrom, dateSentTo, documentDateFrom, documentDateTo, documentNumber, includePayload, page, pageSize, sort, options).then((request) => request(axios, basePath));
|
|
781
781
|
},
|
|
782
782
|
/**
|
|
783
|
-
*
|
|
783
|
+
* Retrieve a send invoice by its internal id. The `id` is unique and assigned by the system when the invoice is created. Returns invoice metadata; set `include_payload` to true to include the full invoice content. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
784
784
|
* @summary Get a invoice by id
|
|
785
785
|
* @param {number} id Item id
|
|
786
786
|
* @param {boolean} [includePayload] Include payload in the response. Defaults to false.
|
|
@@ -791,7 +791,7 @@ export const SendApiFactory = function (configuration, basePath, axios) {
|
|
|
791
791
|
return localVarFp.sendIdGet(id, includePayload, options).then((request) => request(axios, basePath));
|
|
792
792
|
},
|
|
793
793
|
/**
|
|
794
|
-
*
|
|
794
|
+
* Retrieve a send invoice by its SDI identifier. The `identifier` is assigned by the SDI and becomes available after the invoice has been accepted. Returns invoice metadata; set `include_payload` to true to include the full invoice content. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
795
795
|
* @summary Get a invoice by identifier
|
|
796
796
|
* @param {string} identifier
|
|
797
797
|
* @param {boolean} [includePayload] Include payload in the response. Defaults to false.
|
|
@@ -802,7 +802,7 @@ export const SendApiFactory = function (configuration, basePath, axios) {
|
|
|
802
802
|
return localVarFp.sendIdentifierGet(identifier, includePayload, options).then((request) => request(axios, basePath));
|
|
803
803
|
},
|
|
804
804
|
/**
|
|
805
|
-
* Send invoices are
|
|
805
|
+
* Add a new invoice using a FatturaPA JSON representation. The invoice will be signed (if requested), validated (if requested), and queued for delivery to SDI. Status updates from SDI will be available in the `update` endpoint. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/). You can also upload invoices via the [Dashboard](https://dashboard.invoicetronic.com).
|
|
806
806
|
* @summary Add an invoice by json
|
|
807
807
|
* @param {FatturaOrdinaria} fatturaOrdinaria
|
|
808
808
|
* @param {boolean} [validate] Validate the document first, and reject it on failure.
|
|
@@ -814,7 +814,7 @@ export const SendApiFactory = function (configuration, basePath, axios) {
|
|
|
814
814
|
return localVarFp.sendJsonPost(fatturaOrdinaria, validate, signature, options).then((request) => request(axios, basePath));
|
|
815
815
|
},
|
|
816
816
|
/**
|
|
817
|
-
* Send
|
|
817
|
+
* Add a new invoice using a structured Send object. The invoice will be signed (if requested), validated (if requested), and queued for delivery to SDI. Status updates from SDI will be available in the `update` endpoint. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/). You can also upload invoices via the [Dashboard](https://dashboard.invoicetronic.com).
|
|
818
818
|
* @summary Add an invoice
|
|
819
819
|
* @param {Send} send
|
|
820
820
|
* @param {boolean} [validate] Validate the document first, and reject it on failure.
|
|
@@ -826,7 +826,7 @@ export const SendApiFactory = function (configuration, basePath, axios) {
|
|
|
826
826
|
return localVarFp.sendPost(send, validate, signature, options).then((request) => request(axios, basePath));
|
|
827
827
|
},
|
|
828
828
|
/**
|
|
829
|
-
* Send invoices are
|
|
829
|
+
* Validate an invoice file without sending it to SDI. Supported formats are XML (FatturaPA) and P7M (signed). Use this to check for errors before actual submission. Returns validation results with any errors found. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
830
830
|
* @summary Validate an invoice file
|
|
831
831
|
* @param {File} file
|
|
832
832
|
* @param {*} [options] Override http request option.
|
|
@@ -836,7 +836,7 @@ export const SendApiFactory = function (configuration, basePath, axios) {
|
|
|
836
836
|
return localVarFp.sendValidateFilePost(file, options).then((request) => request(axios, basePath));
|
|
837
837
|
},
|
|
838
838
|
/**
|
|
839
|
-
* Send invoices are
|
|
839
|
+
* Validate a JSON invoice without sending it to SDI. Use this to check for errors before actual submission. Returns validation results with any errors found. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
840
840
|
* @summary Validate an invoice by json
|
|
841
841
|
* @param {FatturaOrdinaria} fatturaOrdinaria
|
|
842
842
|
* @param {*} [options] Override http request option.
|
|
@@ -846,7 +846,7 @@ export const SendApiFactory = function (configuration, basePath, axios) {
|
|
|
846
846
|
return localVarFp.sendValidateJsonPost(fatturaOrdinaria, options).then((request) => request(axios, basePath));
|
|
847
847
|
},
|
|
848
848
|
/**
|
|
849
|
-
* Send invoices are
|
|
849
|
+
* Validate an invoice without sending it to SDI. Use this to check for errors before actual submission. Returns validation results with any errors found. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
850
850
|
* @summary Validate an invoice
|
|
851
851
|
* @param {Send} send
|
|
852
852
|
* @param {*} [options] Override http request option.
|
|
@@ -856,7 +856,7 @@ export const SendApiFactory = function (configuration, basePath, axios) {
|
|
|
856
856
|
return localVarFp.sendValidatePost(send, options).then((request) => request(axios, basePath));
|
|
857
857
|
},
|
|
858
858
|
/**
|
|
859
|
-
* Send invoices are
|
|
859
|
+
* Validate an XML invoice document without sending it to SDI. Use this to check for errors before actual submission. Returns validation results with any errors found. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
860
860
|
* @summary Validate an invoice by xml
|
|
861
861
|
* @param {FatturaOrdinaria} fatturaOrdinaria
|
|
862
862
|
* @param {*} [options] Override http request option.
|
|
@@ -866,7 +866,7 @@ export const SendApiFactory = function (configuration, basePath, axios) {
|
|
|
866
866
|
return localVarFp.sendValidateXmlPost(fatturaOrdinaria, options).then((request) => request(axios, basePath));
|
|
867
867
|
},
|
|
868
868
|
/**
|
|
869
|
-
* Send invoices are
|
|
869
|
+
* Add a new invoice using a raw XML document in FatturaPA format. The invoice will be signed (if requested), validated (if requested), and queued for delivery to SDI. Status updates from SDI will be available in the `update` endpoint. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/). You can also upload invoices via the [Dashboard](https://dashboard.invoicetronic.com).
|
|
870
870
|
* @summary Add an invoice by xml
|
|
871
871
|
* @param {FatturaOrdinaria} fatturaOrdinaria
|
|
872
872
|
* @param {boolean} [validate] Validate the document first, and reject it on failure.
|
|
@@ -884,7 +884,7 @@ export const SendApiFactory = function (configuration, basePath, axios) {
|
|
|
884
884
|
*/
|
|
885
885
|
export class SendApi extends BaseAPI {
|
|
886
886
|
/**
|
|
887
|
-
*
|
|
887
|
+
* Add a new invoice by uploading a file. Supported formats are XML (FatturaPA) and P7M (signed). The invoice will be signed (if requested), validated (if requested), and queued for delivery to SDI. Status updates from SDI will be available in the `update` endpoint. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/). You can also upload invoices via the [Dashboard](https://dashboard.invoicetronic.com).
|
|
888
888
|
* @summary Add an invoice by file
|
|
889
889
|
* @param {File} file
|
|
890
890
|
* @param {boolean} [validate] Validate the document first, and reject it on failure.
|
|
@@ -896,7 +896,7 @@ export class SendApi extends BaseAPI {
|
|
|
896
896
|
return SendApiFp(this.configuration).sendFilePost(file, validate, signature, options).then((request) => request(this.axios, this.basePath));
|
|
897
897
|
}
|
|
898
898
|
/**
|
|
899
|
-
*
|
|
899
|
+
* Retrieve a paginated list of send invoices. Results can be filtered by various criteria such as company, date ranges, and document number. Returns invoice metadata; set `include_payload` to true to include the full invoice content. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
900
900
|
* @summary List invoices
|
|
901
901
|
* @param {number} [companyId] Company id
|
|
902
902
|
* @param {string} [identifier] SDI identifier.
|
|
@@ -921,7 +921,7 @@ export class SendApi extends BaseAPI {
|
|
|
921
921
|
return SendApiFp(this.configuration).sendGet(companyId, identifier, committente, prestatore, fileName, lastUpdateFrom, lastUpdateTo, dateSentFrom, dateSentTo, documentDateFrom, documentDateTo, documentNumber, includePayload, page, pageSize, sort, options).then((request) => request(this.axios, this.basePath));
|
|
922
922
|
}
|
|
923
923
|
/**
|
|
924
|
-
*
|
|
924
|
+
* Retrieve a send invoice by its internal id. The `id` is unique and assigned by the system when the invoice is created. Returns invoice metadata; set `include_payload` to true to include the full invoice content. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
925
925
|
* @summary Get a invoice by id
|
|
926
926
|
* @param {number} id Item id
|
|
927
927
|
* @param {boolean} [includePayload] Include payload in the response. Defaults to false.
|
|
@@ -932,7 +932,7 @@ export class SendApi extends BaseAPI {
|
|
|
932
932
|
return SendApiFp(this.configuration).sendIdGet(id, includePayload, options).then((request) => request(this.axios, this.basePath));
|
|
933
933
|
}
|
|
934
934
|
/**
|
|
935
|
-
*
|
|
935
|
+
* Retrieve a send invoice by its SDI identifier. The `identifier` is assigned by the SDI and becomes available after the invoice has been accepted. Returns invoice metadata; set `include_payload` to true to include the full invoice content. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
936
936
|
* @summary Get a invoice by identifier
|
|
937
937
|
* @param {string} identifier
|
|
938
938
|
* @param {boolean} [includePayload] Include payload in the response. Defaults to false.
|
|
@@ -943,7 +943,7 @@ export class SendApi extends BaseAPI {
|
|
|
943
943
|
return SendApiFp(this.configuration).sendIdentifierGet(identifier, includePayload, options).then((request) => request(this.axios, this.basePath));
|
|
944
944
|
}
|
|
945
945
|
/**
|
|
946
|
-
* Send invoices are
|
|
946
|
+
* Add a new invoice using a FatturaPA JSON representation. The invoice will be signed (if requested), validated (if requested), and queued for delivery to SDI. Status updates from SDI will be available in the `update` endpoint. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/). You can also upload invoices via the [Dashboard](https://dashboard.invoicetronic.com).
|
|
947
947
|
* @summary Add an invoice by json
|
|
948
948
|
* @param {FatturaOrdinaria} fatturaOrdinaria
|
|
949
949
|
* @param {boolean} [validate] Validate the document first, and reject it on failure.
|
|
@@ -955,7 +955,7 @@ export class SendApi extends BaseAPI {
|
|
|
955
955
|
return SendApiFp(this.configuration).sendJsonPost(fatturaOrdinaria, validate, signature, options).then((request) => request(this.axios, this.basePath));
|
|
956
956
|
}
|
|
957
957
|
/**
|
|
958
|
-
* Send
|
|
958
|
+
* Add a new invoice using a structured Send object. The invoice will be signed (if requested), validated (if requested), and queued for delivery to SDI. Status updates from SDI will be available in the `update` endpoint. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/). You can also upload invoices via the [Dashboard](https://dashboard.invoicetronic.com).
|
|
959
959
|
* @summary Add an invoice
|
|
960
960
|
* @param {Send} send
|
|
961
961
|
* @param {boolean} [validate] Validate the document first, and reject it on failure.
|
|
@@ -967,7 +967,7 @@ export class SendApi extends BaseAPI {
|
|
|
967
967
|
return SendApiFp(this.configuration).sendPost(send, validate, signature, options).then((request) => request(this.axios, this.basePath));
|
|
968
968
|
}
|
|
969
969
|
/**
|
|
970
|
-
* Send invoices are
|
|
970
|
+
* Validate an invoice file without sending it to SDI. Supported formats are XML (FatturaPA) and P7M (signed). Use this to check for errors before actual submission. Returns validation results with any errors found. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
971
971
|
* @summary Validate an invoice file
|
|
972
972
|
* @param {File} file
|
|
973
973
|
* @param {*} [options] Override http request option.
|
|
@@ -977,7 +977,7 @@ export class SendApi extends BaseAPI {
|
|
|
977
977
|
return SendApiFp(this.configuration).sendValidateFilePost(file, options).then((request) => request(this.axios, this.basePath));
|
|
978
978
|
}
|
|
979
979
|
/**
|
|
980
|
-
* Send invoices are
|
|
980
|
+
* Validate a JSON invoice without sending it to SDI. Use this to check for errors before actual submission. Returns validation results with any errors found. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
981
981
|
* @summary Validate an invoice by json
|
|
982
982
|
* @param {FatturaOrdinaria} fatturaOrdinaria
|
|
983
983
|
* @param {*} [options] Override http request option.
|
|
@@ -987,7 +987,7 @@ export class SendApi extends BaseAPI {
|
|
|
987
987
|
return SendApiFp(this.configuration).sendValidateJsonPost(fatturaOrdinaria, options).then((request) => request(this.axios, this.basePath));
|
|
988
988
|
}
|
|
989
989
|
/**
|
|
990
|
-
* Send invoices are
|
|
990
|
+
* Validate an invoice without sending it to SDI. Use this to check for errors before actual submission. Returns validation results with any errors found. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
991
991
|
* @summary Validate an invoice
|
|
992
992
|
* @param {Send} send
|
|
993
993
|
* @param {*} [options] Override http request option.
|
|
@@ -997,7 +997,7 @@ export class SendApi extends BaseAPI {
|
|
|
997
997
|
return SendApiFp(this.configuration).sendValidatePost(send, options).then((request) => request(this.axios, this.basePath));
|
|
998
998
|
}
|
|
999
999
|
/**
|
|
1000
|
-
* Send invoices are
|
|
1000
|
+
* Validate an XML invoice document without sending it to SDI. Use this to check for errors before actual submission. Returns validation results with any errors found. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
1001
1001
|
* @summary Validate an invoice by xml
|
|
1002
1002
|
* @param {FatturaOrdinaria} fatturaOrdinaria
|
|
1003
1003
|
* @param {*} [options] Override http request option.
|
|
@@ -1007,7 +1007,7 @@ export class SendApi extends BaseAPI {
|
|
|
1007
1007
|
return SendApiFp(this.configuration).sendValidateXmlPost(fatturaOrdinaria, options).then((request) => request(this.axios, this.basePath));
|
|
1008
1008
|
}
|
|
1009
1009
|
/**
|
|
1010
|
-
* Send invoices are
|
|
1010
|
+
* Add a new invoice using a raw XML document in FatturaPA format. The invoice will be signed (if requested), validated (if requested), and queued for delivery to SDI. Status updates from SDI will be available in the `update` endpoint. **Send** invoices are outbound sales invoices transmitted to customers through Italy\'s SDI (Sistema di Interscambio). Preserved for two years in the live environment and 15 days in the [Sandbox](https://invoicetronic.com/en/docs/sandbox/). You can also upload invoices via the [Dashboard](https://dashboard.invoicetronic.com).
|
|
1011
1011
|
* @summary Add an invoice by xml
|
|
1012
1012
|
* @param {FatturaOrdinaria} fatturaOrdinaria
|
|
1013
1013
|
* @param {boolean} [validate] Validate the document first, and reject it on failure.
|
|
@@ -18,7 +18,7 @@ import type { Status } from '../../src/models';
|
|
|
18
18
|
*/
|
|
19
19
|
export declare const StatusApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* Retrieve the number of operations (invoices + validations) and signatures left on your account. When `signature_left` is 0, you will receive a `403 Forbidden` response when trying to sign an invoice. Likewise, if `operation_left` is 0, you will receive a `403 Forbidden` response when storing or validating an invoice. You can also check your account status from the [Dashboard](https://dashboard.invoicetronic.com), where you can purchase additional operations and/or signatures. **Please note** that these values are not enforced if you are on the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
22
22
|
* @summary Account status
|
|
23
23
|
* @param {*} [options] Override http request option.
|
|
24
24
|
* @throws {RequiredError}
|
|
@@ -30,7 +30,7 @@ export declare const StatusApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
30
30
|
*/
|
|
31
31
|
export declare const StatusApiFp: (configuration?: Configuration) => {
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
33
|
+
* Retrieve the number of operations (invoices + validations) and signatures left on your account. When `signature_left` is 0, you will receive a `403 Forbidden` response when trying to sign an invoice. Likewise, if `operation_left` is 0, you will receive a `403 Forbidden` response when storing or validating an invoice. You can also check your account status from the [Dashboard](https://dashboard.invoicetronic.com), where you can purchase additional operations and/or signatures. **Please note** that these values are not enforced if you are on the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
34
34
|
* @summary Account status
|
|
35
35
|
* @param {*} [options] Override http request option.
|
|
36
36
|
* @throws {RequiredError}
|
|
@@ -42,7 +42,7 @@ export declare const StatusApiFp: (configuration?: Configuration) => {
|
|
|
42
42
|
*/
|
|
43
43
|
export declare const StatusApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
44
44
|
/**
|
|
45
|
-
*
|
|
45
|
+
* Retrieve the number of operations (invoices + validations) and signatures left on your account. When `signature_left` is 0, you will receive a `403 Forbidden` response when trying to sign an invoice. Likewise, if `operation_left` is 0, you will receive a `403 Forbidden` response when storing or validating an invoice. You can also check your account status from the [Dashboard](https://dashboard.invoicetronic.com), where you can purchase additional operations and/or signatures. **Please note** that these values are not enforced if you are on the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
46
46
|
* @summary Account status
|
|
47
47
|
* @param {*} [options] Override http request option.
|
|
48
48
|
* @throws {RequiredError}
|
|
@@ -54,7 +54,7 @@ export declare const StatusApiFactory: (configuration?: Configuration, basePath?
|
|
|
54
54
|
*/
|
|
55
55
|
export interface StatusApiInterface {
|
|
56
56
|
/**
|
|
57
|
-
*
|
|
57
|
+
* Retrieve the number of operations (invoices + validations) and signatures left on your account. When `signature_left` is 0, you will receive a `403 Forbidden` response when trying to sign an invoice. Likewise, if `operation_left` is 0, you will receive a `403 Forbidden` response when storing or validating an invoice. You can also check your account status from the [Dashboard](https://dashboard.invoicetronic.com), where you can purchase additional operations and/or signatures. **Please note** that these values are not enforced if you are on the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
58
58
|
* @summary Account status
|
|
59
59
|
* @param {*} [options] Override http request option.
|
|
60
60
|
* @throws {RequiredError}
|
|
@@ -66,7 +66,7 @@ export interface StatusApiInterface {
|
|
|
66
66
|
*/
|
|
67
67
|
export declare class StatusApi extends BaseAPI implements StatusApiInterface {
|
|
68
68
|
/**
|
|
69
|
-
*
|
|
69
|
+
* Retrieve the number of operations (invoices + validations) and signatures left on your account. When `signature_left` is 0, you will receive a `403 Forbidden` response when trying to sign an invoice. Likewise, if `operation_left` is 0, you will receive a `403 Forbidden` response when storing or validating an invoice. You can also check your account status from the [Dashboard](https://dashboard.invoicetronic.com), where you can purchase additional operations and/or signatures. **Please note** that these values are not enforced if you are on the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
70
70
|
* @summary Account status
|
|
71
71
|
* @param {*} [options] Override http request option.
|
|
72
72
|
* @throws {RequiredError}
|
|
@@ -35,7 +35,7 @@ import { BASE_PATH, BaseAPI, operationServerMap } from '../../base';
|
|
|
35
35
|
export const StatusApiAxiosParamCreator = function (configuration) {
|
|
36
36
|
return {
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* Retrieve the number of operations (invoices + validations) and signatures left on your account. When `signature_left` is 0, you will receive a `403 Forbidden` response when trying to sign an invoice. Likewise, if `operation_left` is 0, you will receive a `403 Forbidden` response when storing or validating an invoice. You can also check your account status from the [Dashboard](https://dashboard.invoicetronic.com), where you can purchase additional operations and/or signatures. **Please note** that these values are not enforced if you are on the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
39
39
|
* @summary Account status
|
|
40
40
|
* @param {*} [options] Override http request option.
|
|
41
41
|
* @throws {RequiredError}
|
|
@@ -72,7 +72,7 @@ export const StatusApiFp = function (configuration) {
|
|
|
72
72
|
const localVarAxiosParamCreator = StatusApiAxiosParamCreator(configuration);
|
|
73
73
|
return {
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
75
|
+
* Retrieve the number of operations (invoices + validations) and signatures left on your account. When `signature_left` is 0, you will receive a `403 Forbidden` response when trying to sign an invoice. Likewise, if `operation_left` is 0, you will receive a `403 Forbidden` response when storing or validating an invoice. You can also check your account status from the [Dashboard](https://dashboard.invoicetronic.com), where you can purchase additional operations and/or signatures. **Please note** that these values are not enforced if you are on the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
76
76
|
* @summary Account status
|
|
77
77
|
* @param {*} [options] Override http request option.
|
|
78
78
|
* @throws {RequiredError}
|
|
@@ -95,7 +95,7 @@ export const StatusApiFactory = function (configuration, basePath, axios) {
|
|
|
95
95
|
const localVarFp = StatusApiFp(configuration);
|
|
96
96
|
return {
|
|
97
97
|
/**
|
|
98
|
-
*
|
|
98
|
+
* Retrieve the number of operations (invoices + validations) and signatures left on your account. When `signature_left` is 0, you will receive a `403 Forbidden` response when trying to sign an invoice. Likewise, if `operation_left` is 0, you will receive a `403 Forbidden` response when storing or validating an invoice. You can also check your account status from the [Dashboard](https://dashboard.invoicetronic.com), where you can purchase additional operations and/or signatures. **Please note** that these values are not enforced if you are on the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
99
99
|
* @summary Account status
|
|
100
100
|
* @param {*} [options] Override http request option.
|
|
101
101
|
* @throws {RequiredError}
|
|
@@ -110,7 +110,7 @@ export const StatusApiFactory = function (configuration, basePath, axios) {
|
|
|
110
110
|
*/
|
|
111
111
|
export class StatusApi extends BaseAPI {
|
|
112
112
|
/**
|
|
113
|
-
*
|
|
113
|
+
* Retrieve the number of operations (invoices + validations) and signatures left on your account. When `signature_left` is 0, you will receive a `403 Forbidden` response when trying to sign an invoice. Likewise, if `operation_left` is 0, you will receive a `403 Forbidden` response when storing or validating an invoice. You can also check your account status from the [Dashboard](https://dashboard.invoicetronic.com), where you can purchase additional operations and/or signatures. **Please note** that these values are not enforced if you are on the [Sandbox](https://invoicetronic.com/en/docs/sandbox/).
|
|
114
114
|
* @summary Account status
|
|
115
115
|
* @param {*} [options] Override http request option.
|
|
116
116
|
* @throws {RequiredError}
|