@invoicetronic/ts-sdk 1.6.0 → 1.7.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.
Files changed (142) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +2 -2
  3. package/api.ts +1 -1
  4. package/base.ts +1 -1
  5. package/common.ts +1 -1
  6. package/configuration.ts +2 -2
  7. package/dist/api.d.ts +1 -1
  8. package/dist/api.js +1 -1
  9. package/dist/base.d.ts +1 -1
  10. package/dist/base.js +1 -1
  11. package/dist/common.d.ts +1 -1
  12. package/dist/common.js +1 -1
  13. package/dist/configuration.d.ts +1 -1
  14. package/dist/configuration.js +2 -2
  15. package/dist/esm/api.d.ts +1 -1
  16. package/dist/esm/api.js +1 -1
  17. package/dist/esm/base.d.ts +1 -1
  18. package/dist/esm/base.js +1 -1
  19. package/dist/esm/common.d.ts +1 -1
  20. package/dist/esm/common.js +1 -1
  21. package/dist/esm/configuration.d.ts +1 -1
  22. package/dist/esm/configuration.js +2 -2
  23. package/dist/esm/index.d.ts +1 -1
  24. package/dist/esm/index.js +1 -1
  25. package/dist/esm/src/api/company-api.d.ts +1 -1
  26. package/dist/esm/src/api/company-api.js +20 -2
  27. package/dist/esm/src/api/export-api.d.ts +1 -1
  28. package/dist/esm/src/api/export-api.js +5 -2
  29. package/dist/esm/src/api/health-api.d.ts +1 -1
  30. package/dist/esm/src/api/health-api.js +5 -2
  31. package/dist/esm/src/api/log-api.d.ts +1 -1
  32. package/dist/esm/src/api/log-api.js +8 -2
  33. package/dist/esm/src/api/receive-api.d.ts +1 -1
  34. package/dist/esm/src/api/receive-api.js +14 -2
  35. package/dist/esm/src/api/send-api.d.ts +1 -1
  36. package/dist/esm/src/api/send-api.js +38 -2
  37. package/dist/esm/src/api/status-api.d.ts +1 -1
  38. package/dist/esm/src/api/status-api.js +5 -2
  39. package/dist/esm/src/api/update-api.d.ts +1 -1
  40. package/dist/esm/src/api/update-api.js +8 -2
  41. package/dist/esm/src/api/webhook-api.d.ts +1 -1
  42. package/dist/esm/src/api/webhook-api.js +23 -2
  43. package/dist/esm/src/models/company.d.ts +1 -1
  44. package/dist/esm/src/models/company.js +1 -1
  45. package/dist/esm/src/models/document-data.d.ts +1 -1
  46. package/dist/esm/src/models/document-data.js +1 -1
  47. package/dist/esm/src/models/event.d.ts +1 -1
  48. package/dist/esm/src/models/event.js +1 -1
  49. package/dist/esm/src/models/model-error.d.ts +1 -1
  50. package/dist/esm/src/models/model-error.js +1 -1
  51. package/dist/esm/src/models/problem-details.d.ts +1 -1
  52. package/dist/esm/src/models/problem-details.js +1 -1
  53. package/dist/esm/src/models/receive.d.ts +1 -1
  54. package/dist/esm/src/models/receive.js +1 -1
  55. package/dist/esm/src/models/send-reduced.d.ts +1 -1
  56. package/dist/esm/src/models/send-reduced.js +1 -1
  57. package/dist/esm/src/models/send.d.ts +1 -1
  58. package/dist/esm/src/models/send.js +1 -1
  59. package/dist/esm/src/models/status.d.ts +1 -1
  60. package/dist/esm/src/models/status.js +1 -1
  61. package/dist/esm/src/models/update.d.ts +1 -1
  62. package/dist/esm/src/models/update.js +1 -1
  63. package/dist/esm/src/models/web-hook-history.d.ts +1 -1
  64. package/dist/esm/src/models/web-hook-history.js +1 -1
  65. package/dist/esm/src/models/web-hook.d.ts +1 -1
  66. package/dist/esm/src/models/web-hook.js +1 -1
  67. package/dist/index.d.ts +1 -1
  68. package/dist/index.js +1 -1
  69. package/dist/src/api/company-api.d.ts +1 -1
  70. package/dist/src/api/company-api.js +19 -1
  71. package/dist/src/api/export-api.d.ts +1 -1
  72. package/dist/src/api/export-api.js +4 -1
  73. package/dist/src/api/health-api.d.ts +1 -1
  74. package/dist/src/api/health-api.js +4 -1
  75. package/dist/src/api/log-api.d.ts +1 -1
  76. package/dist/src/api/log-api.js +7 -1
  77. package/dist/src/api/receive-api.d.ts +1 -1
  78. package/dist/src/api/receive-api.js +13 -1
  79. package/dist/src/api/send-api.d.ts +1 -1
  80. package/dist/src/api/send-api.js +37 -1
  81. package/dist/src/api/status-api.d.ts +1 -1
  82. package/dist/src/api/status-api.js +4 -1
  83. package/dist/src/api/update-api.d.ts +1 -1
  84. package/dist/src/api/update-api.js +7 -1
  85. package/dist/src/api/webhook-api.d.ts +1 -1
  86. package/dist/src/api/webhook-api.js +22 -1
  87. package/dist/src/models/company.d.ts +1 -1
  88. package/dist/src/models/company.js +1 -1
  89. package/dist/src/models/document-data.d.ts +1 -1
  90. package/dist/src/models/document-data.js +1 -1
  91. package/dist/src/models/event.d.ts +1 -1
  92. package/dist/src/models/event.js +1 -1
  93. package/dist/src/models/model-error.d.ts +1 -1
  94. package/dist/src/models/model-error.js +1 -1
  95. package/dist/src/models/problem-details.d.ts +1 -1
  96. package/dist/src/models/problem-details.js +1 -1
  97. package/dist/src/models/receive.d.ts +1 -1
  98. package/dist/src/models/receive.js +1 -1
  99. package/dist/src/models/send-reduced.d.ts +1 -1
  100. package/dist/src/models/send-reduced.js +1 -1
  101. package/dist/src/models/send.d.ts +1 -1
  102. package/dist/src/models/send.js +1 -1
  103. package/dist/src/models/status.d.ts +1 -1
  104. package/dist/src/models/status.js +1 -1
  105. package/dist/src/models/update.d.ts +1 -1
  106. package/dist/src/models/update.js +1 -1
  107. package/dist/src/models/web-hook-history.d.ts +1 -1
  108. package/dist/src/models/web-hook-history.js +1 -1
  109. package/dist/src/models/web-hook.d.ts +1 -1
  110. package/dist/src/models/web-hook.js +1 -1
  111. package/docs/CompanyApi.md +6 -6
  112. package/docs/ExportApi.md +1 -1
  113. package/docs/HealthApi.md +1 -1
  114. package/docs/LogApi.md +2 -2
  115. package/docs/ReceiveApi.md +4 -4
  116. package/docs/SendApi.md +12 -12
  117. package/docs/StatusApi.md +1 -1
  118. package/docs/UpdateApi.md +2 -2
  119. package/docs/WebhookApi.md +7 -7
  120. package/index.ts +1 -1
  121. package/package.json +1 -1
  122. package/src/api/company-api.ts +25 -1
  123. package/src/api/export-api.ts +5 -1
  124. package/src/api/health-api.ts +5 -1
  125. package/src/api/log-api.ts +9 -1
  126. package/src/api/receive-api.ts +17 -1
  127. package/src/api/send-api.ts +49 -1
  128. package/src/api/status-api.ts +5 -1
  129. package/src/api/update-api.ts +9 -1
  130. package/src/api/webhook-api.ts +29 -1
  131. package/src/models/company.ts +1 -1
  132. package/src/models/document-data.ts +1 -1
  133. package/src/models/event.ts +1 -1
  134. package/src/models/model-error.ts +1 -1
  135. package/src/models/problem-details.ts +1 -1
  136. package/src/models/receive.ts +1 -1
  137. package/src/models/send-reduced.ts +1 -1
  138. package/src/models/send.ts +1 -1
  139. package/src/models/status.ts +1 -1
  140. package/src/models/update.ts +1 -1
  141. package/src/models/web-hook-history.ts +1 -1
  142. package/src/models/web-hook.ts +1 -1
@@ -5,7 +5,7 @@
5
5
  * Invoicetronic API
6
6
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
7
7
  *
8
- * The version of the OpenAPI document: 1.6.1
8
+ * The version of the OpenAPI document: 1.6.4
9
9
  * Contact: info@invoicetronic.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Invoicetronic API
3
3
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
4
4
  *
5
- * The version of the OpenAPI document: 1.6.1
5
+ * The version of the OpenAPI document: 1.6.4
6
6
  * Contact: info@invoicetronic.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Invoicetronic API
6
6
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
7
7
  *
8
- * The version of the OpenAPI document: 1.6.1
8
+ * The version of the OpenAPI document: 1.6.4
9
9
  * Contact: info@invoicetronic.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Invoicetronic API
3
3
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
4
4
  *
5
- * The version of the OpenAPI document: 1.6.1
5
+ * The version of the OpenAPI document: 1.6.4
6
6
  * Contact: info@invoicetronic.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Invoicetronic API
6
6
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
7
7
  *
8
- * The version of the OpenAPI document: 1.6.1
8
+ * The version of the OpenAPI document: 1.6.4
9
9
  * Contact: info@invoicetronic.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Invoicetronic API
3
3
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
4
4
  *
5
- * The version of the OpenAPI document: 1.6.1
5
+ * The version of the OpenAPI document: 1.6.4
6
6
  * Contact: info@invoicetronic.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Invoicetronic API
6
6
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
7
7
  *
8
- * The version of the OpenAPI document: 1.6.1
8
+ * The version of the OpenAPI document: 1.6.4
9
9
  * Contact: info@invoicetronic.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Invoicetronic API
3
3
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
4
4
  *
5
- * The version of the OpenAPI document: 1.6.1
5
+ * The version of the OpenAPI document: 1.6.4
6
6
  * Contact: info@invoicetronic.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Invoicetronic API
6
6
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
7
7
  *
8
- * The version of the OpenAPI document: 1.6.1
8
+ * The version of the OpenAPI document: 1.6.4
9
9
  * Contact: info@invoicetronic.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Invoicetronic API
3
3
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
4
4
  *
5
- * The version of the OpenAPI document: 1.6.1
5
+ * The version of the OpenAPI document: 1.6.4
6
6
  * Contact: info@invoicetronic.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Invoicetronic API
6
6
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
7
7
  *
8
- * The version of the OpenAPI document: 1.6.1
8
+ * The version of the OpenAPI document: 1.6.4
9
9
  * Contact: info@invoicetronic.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Invoicetronic API
3
3
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
4
4
  *
5
- * The version of the OpenAPI document: 1.6.1
5
+ * The version of the OpenAPI document: 1.6.4
6
6
  * Contact: info@invoicetronic.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Invoicetronic API
6
6
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
7
7
  *
8
- * The version of the OpenAPI document: 1.6.1
8
+ * The version of the OpenAPI document: 1.6.4
9
9
  * Contact: info@invoicetronic.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Invoicetronic API
3
3
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
4
4
  *
5
- * The version of the OpenAPI document: 1.6.1
5
+ * The version of the OpenAPI document: 1.6.4
6
6
  * Contact: info@invoicetronic.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Invoicetronic API
6
6
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
7
7
  *
8
- * The version of the OpenAPI document: 1.6.1
8
+ * The version of the OpenAPI document: 1.6.4
9
9
  * Contact: info@invoicetronic.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Invoicetronic API
3
3
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
4
4
  *
5
- * The version of the OpenAPI document: 1.6.1
5
+ * The version of the OpenAPI document: 1.6.4
6
6
  * Contact: info@invoicetronic.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Invoicetronic API
6
6
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
7
7
  *
8
- * The version of the OpenAPI document: 1.6.1
8
+ * The version of the OpenAPI document: 1.6.4
9
9
  * Contact: info@invoicetronic.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -56,7 +56,7 @@ const { status, data } = await apiInstance.companyGet(
56
56
 
57
57
  ### Authorization
58
58
 
59
- No authorization required
59
+ [Basic](../README.md#Basic)
60
60
 
61
61
  ### HTTP request headers
62
62
 
@@ -111,7 +111,7 @@ const { status, data } = await apiInstance.companyIdDelete(
111
111
 
112
112
  ### Authorization
113
113
 
114
- No authorization required
114
+ [Basic](../README.md#Basic)
115
115
 
116
116
  ### HTTP request headers
117
117
 
@@ -163,7 +163,7 @@ const { status, data } = await apiInstance.companyIdGet(
163
163
 
164
164
  ### Authorization
165
165
 
166
- No authorization required
166
+ [Basic](../README.md#Basic)
167
167
 
168
168
  ### HTTP request headers
169
169
 
@@ -216,7 +216,7 @@ const { status, data } = await apiInstance.companyPost(
216
216
 
217
217
  ### Authorization
218
218
 
219
- No authorization required
219
+ [Basic](../README.md#Basic)
220
220
 
221
221
  ### HTTP request headers
222
222
 
@@ -269,7 +269,7 @@ const { status, data } = await apiInstance.companyPut(
269
269
 
270
270
  ### Authorization
271
271
 
272
- No authorization required
272
+ [Basic](../README.md#Basic)
273
273
 
274
274
  ### HTTP request headers
275
275
 
@@ -321,7 +321,7 @@ const { status, data } = await apiInstance.companyVatGet(
321
321
 
322
322
  ### Authorization
323
323
 
324
- No authorization required
324
+ [Basic](../README.md#Basic)
325
325
 
326
326
  ### HTTP request headers
327
327
 
package/docs/ExportApi.md CHANGED
@@ -60,7 +60,7 @@ void (empty response body)
60
60
 
61
61
  ### Authorization
62
62
 
63
- No authorization required
63
+ [Basic](../README.md#Basic)
64
64
 
65
65
  ### HTTP request headers
66
66
 
package/docs/HealthApi.md CHANGED
@@ -35,7 +35,7 @@ void (empty response body)
35
35
 
36
36
  ### Authorization
37
37
 
38
- No authorization required
38
+ [Basic](../README.md#Basic)
39
39
 
40
40
  ### HTTP request headers
41
41
 
package/docs/LogApi.md CHANGED
@@ -85,7 +85,7 @@ const { status, data } = await apiInstance.logGet(
85
85
 
86
86
  ### Authorization
87
87
 
88
- No authorization required
88
+ [Basic](../README.md#Basic)
89
89
 
90
90
  ### HTTP request headers
91
91
 
@@ -137,7 +137,7 @@ const { status, data } = await apiInstance.logIdGet(
137
137
 
138
138
  ### Authorization
139
139
 
140
- No authorization required
140
+ [Basic](../README.md#Basic)
141
141
 
142
142
  ### HTTP request headers
143
143
 
@@ -96,7 +96,7 @@ const { status, data } = await apiInstance.receiveGet(
96
96
 
97
97
  ### Authorization
98
98
 
99
- No authorization required
99
+ [Basic](../README.md#Basic)
100
100
 
101
101
  ### HTTP request headers
102
102
 
@@ -148,7 +148,7 @@ const { status, data } = await apiInstance.receiveIdDelete(
148
148
 
149
149
  ### Authorization
150
150
 
151
- No authorization required
151
+ [Basic](../README.md#Basic)
152
152
 
153
153
  ### HTTP request headers
154
154
 
@@ -203,7 +203,7 @@ const { status, data } = await apiInstance.receiveIdGet(
203
203
 
204
204
  ### Authorization
205
205
 
206
- No authorization required
206
+ [Basic](../README.md#Basic)
207
207
 
208
208
  ### HTTP request headers
209
209
 
@@ -255,7 +255,7 @@ void (empty response body)
255
255
 
256
256
  ### Authorization
257
257
 
258
- No authorization required
258
+ [Basic](../README.md#Basic)
259
259
 
260
260
  ### HTTP request headers
261
261
 
package/docs/SendApi.md CHANGED
@@ -59,7 +59,7 @@ const { status, data } = await apiInstance.sendFilePost(
59
59
 
60
60
  ### Authorization
61
61
 
62
- No authorization required
62
+ [Basic](../README.md#Basic)
63
63
 
64
64
  ### HTTP request headers
65
65
 
@@ -159,7 +159,7 @@ const { status, data } = await apiInstance.sendGet(
159
159
 
160
160
  ### Authorization
161
161
 
162
- No authorization required
162
+ [Basic](../README.md#Basic)
163
163
 
164
164
  ### HTTP request headers
165
165
 
@@ -214,7 +214,7 @@ const { status, data } = await apiInstance.sendIdGet(
214
214
 
215
215
  ### Authorization
216
216
 
217
- No authorization required
217
+ [Basic](../README.md#Basic)
218
218
 
219
219
  ### HTTP request headers
220
220
 
@@ -266,7 +266,7 @@ void (empty response body)
266
266
 
267
267
  ### Authorization
268
268
 
269
- No authorization required
269
+ [Basic](../README.md#Basic)
270
270
 
271
271
  ### HTTP request headers
272
272
 
@@ -321,7 +321,7 @@ const { status, data } = await apiInstance.sendIdentifierGet(
321
321
 
322
322
  ### Authorization
323
323
 
324
- No authorization required
324
+ [Basic](../README.md#Basic)
325
325
 
326
326
  ### HTTP request headers
327
327
 
@@ -379,7 +379,7 @@ const { status, data } = await apiInstance.sendJsonPost(
379
379
 
380
380
  ### Authorization
381
381
 
382
- No authorization required
382
+ [Basic](../README.md#Basic)
383
383
 
384
384
  ### HTTP request headers
385
385
 
@@ -438,7 +438,7 @@ const { status, data } = await apiInstance.sendPost(
438
438
 
439
439
  ### Authorization
440
440
 
441
- No authorization required
441
+ [Basic](../README.md#Basic)
442
442
 
443
443
  ### HTTP request headers
444
444
 
@@ -490,7 +490,7 @@ void (empty response body)
490
490
 
491
491
  ### Authorization
492
492
 
493
- No authorization required
493
+ [Basic](../README.md#Basic)
494
494
 
495
495
  ### HTTP request headers
496
496
 
@@ -542,7 +542,7 @@ void (empty response body)
542
542
 
543
543
  ### Authorization
544
544
 
545
- No authorization required
545
+ [Basic](../README.md#Basic)
546
546
 
547
547
  ### HTTP request headers
548
548
 
@@ -595,7 +595,7 @@ void (empty response body)
595
595
 
596
596
  ### Authorization
597
597
 
598
- No authorization required
598
+ [Basic](../README.md#Basic)
599
599
 
600
600
  ### HTTP request headers
601
601
 
@@ -647,7 +647,7 @@ void (empty response body)
647
647
 
648
648
  ### Authorization
649
649
 
650
- No authorization required
650
+ [Basic](../README.md#Basic)
651
651
 
652
652
  ### HTTP request headers
653
653
 
@@ -705,7 +705,7 @@ const { status, data } = await apiInstance.sendXmlPost(
705
705
 
706
706
  ### Authorization
707
707
 
708
- No authorization required
708
+ [Basic](../README.md#Basic)
709
709
 
710
710
  ### HTTP request headers
711
711
 
package/docs/StatusApi.md CHANGED
@@ -35,7 +35,7 @@ This endpoint does not have any parameters.
35
35
 
36
36
  ### Authorization
37
37
 
38
- No authorization required
38
+ [Basic](../README.md#Basic)
39
39
 
40
40
  ### HTTP request headers
41
41
 
package/docs/UpdateApi.md CHANGED
@@ -79,7 +79,7 @@ const { status, data } = await apiInstance.updateGet(
79
79
 
80
80
  ### Authorization
81
81
 
82
- No authorization required
82
+ [Basic](../README.md#Basic)
83
83
 
84
84
  ### HTTP request headers
85
85
 
@@ -131,7 +131,7 @@ const { status, data } = await apiInstance.updateIdGet(
131
131
 
132
132
  ### Authorization
133
133
 
134
- No authorization required
134
+ [Basic](../README.md#Basic)
135
135
 
136
136
  ### HTTP request headers
137
137
 
@@ -69,7 +69,7 @@ const { status, data } = await apiInstance.webhookGet(
69
69
 
70
70
  ### Authorization
71
71
 
72
- No authorization required
72
+ [Basic](../README.md#Basic)
73
73
 
74
74
  ### HTTP request headers
75
75
 
@@ -121,7 +121,7 @@ const { status, data } = await apiInstance.webhookIdDelete(
121
121
 
122
122
  ### Authorization
123
123
 
124
- No authorization required
124
+ [Basic](../README.md#Basic)
125
125
 
126
126
  ### HTTP request headers
127
127
 
@@ -173,7 +173,7 @@ const { status, data } = await apiInstance.webhookIdGet(
173
173
 
174
174
  ### Authorization
175
175
 
176
- No authorization required
176
+ [Basic](../README.md#Basic)
177
177
 
178
178
  ### HTTP request headers
179
179
 
@@ -226,7 +226,7 @@ const { status, data } = await apiInstance.webhookPost(
226
226
 
227
227
  ### Authorization
228
228
 
229
- No authorization required
229
+ [Basic](../README.md#Basic)
230
230
 
231
231
  ### HTTP request headers
232
232
 
@@ -279,7 +279,7 @@ const { status, data } = await apiInstance.webhookPut(
279
279
 
280
280
  ### Authorization
281
281
 
282
- No authorization required
282
+ [Basic](../README.md#Basic)
283
283
 
284
284
  ### HTTP request headers
285
285
 
@@ -340,7 +340,7 @@ const { status, data } = await apiInstance.webhookhistoryGet(
340
340
 
341
341
  ### Authorization
342
342
 
343
- No authorization required
343
+ [Basic](../README.md#Basic)
344
344
 
345
345
  ### HTTP request headers
346
346
 
@@ -392,7 +392,7 @@ const { status, data } = await apiInstance.webhookhistoryIdGet(
392
392
 
393
393
  ### Authorization
394
394
 
395
- No authorization required
395
+ [Basic](../README.md#Basic)
396
396
 
397
397
  ### HTTP request headers
398
398
 
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Invoicetronic API
5
5
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
6
6
  *
7
- * The version of the OpenAPI document: 1.6.1
7
+ * The version of the OpenAPI document: 1.6.4
8
8
  * Contact: info@invoicetronic.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@invoicetronic/ts-sdk",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "description": "OpenAPI client for @invoicetronic/ts-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -4,7 +4,7 @@
4
4
  * Invoicetronic API
5
5
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
6
6
  *
7
- * The version of the OpenAPI document: 1.6.1
7
+ * The version of the OpenAPI document: 1.6.4
8
8
  * Contact: info@invoicetronic.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -56,6 +56,10 @@ export const CompanyApiAxiosParamCreator = function (configuration?: Configurati
56
56
  const localVarHeaderParameter = {} as any;
57
57
  const localVarQueryParameter = {} as any;
58
58
 
59
+ // authentication Basic required
60
+ // http basic authentication required
61
+ setBasicAuthToObject(localVarRequestOptions, configuration)
62
+
59
63
  if (page !== undefined) {
60
64
  localVarQueryParameter['page'] = page;
61
65
  }
@@ -107,6 +111,10 @@ export const CompanyApiAxiosParamCreator = function (configuration?: Configurati
107
111
  const localVarHeaderParameter = {} as any;
108
112
  const localVarQueryParameter = {} as any;
109
113
 
114
+ // authentication Basic required
115
+ // http basic authentication required
116
+ setBasicAuthToObject(localVarRequestOptions, configuration)
117
+
110
118
  if (force !== undefined) {
111
119
  localVarQueryParameter['force'] = force;
112
120
  }
@@ -145,6 +153,10 @@ export const CompanyApiAxiosParamCreator = function (configuration?: Configurati
145
153
  const localVarHeaderParameter = {} as any;
146
154
  const localVarQueryParameter = {} as any;
147
155
 
156
+ // authentication Basic required
157
+ // http basic authentication required
158
+ setBasicAuthToObject(localVarRequestOptions, configuration)
159
+
148
160
  localVarHeaderParameter['Accept'] = 'application/json';
149
161
 
150
162
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -178,6 +190,10 @@ export const CompanyApiAxiosParamCreator = function (configuration?: Configurati
178
190
  const localVarHeaderParameter = {} as any;
179
191
  const localVarQueryParameter = {} as any;
180
192
 
193
+ // authentication Basic required
194
+ // http basic authentication required
195
+ setBasicAuthToObject(localVarRequestOptions, configuration)
196
+
181
197
  localVarHeaderParameter['Content-Type'] = 'application/json';
182
198
  localVarHeaderParameter['Accept'] = 'application/json';
183
199
 
@@ -213,6 +229,10 @@ export const CompanyApiAxiosParamCreator = function (configuration?: Configurati
213
229
  const localVarHeaderParameter = {} as any;
214
230
  const localVarQueryParameter = {} as any;
215
231
 
232
+ // authentication Basic required
233
+ // http basic authentication required
234
+ setBasicAuthToObject(localVarRequestOptions, configuration)
235
+
216
236
  localVarHeaderParameter['Content-Type'] = 'application/json';
217
237
  localVarHeaderParameter['Accept'] = 'application/json';
218
238
 
@@ -249,6 +269,10 @@ export const CompanyApiAxiosParamCreator = function (configuration?: Configurati
249
269
  const localVarHeaderParameter = {} as any;
250
270
  const localVarQueryParameter = {} as any;
251
271
 
272
+ // authentication Basic required
273
+ // http basic authentication required
274
+ setBasicAuthToObject(localVarRequestOptions, configuration)
275
+
252
276
  localVarHeaderParameter['Accept'] = 'application/json';
253
277
 
254
278
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -4,7 +4,7 @@
4
4
  * Invoicetronic API
5
5
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
6
6
  *
7
- * The version of the OpenAPI document: 1.6.1
7
+ * The version of the OpenAPI document: 1.6.4
8
8
  * Contact: info@invoicetronic.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -57,6 +57,10 @@ export const ExportApiAxiosParamCreator = function (configuration?: Configuratio
57
57
  const localVarHeaderParameter = {} as any;
58
58
  const localVarQueryParameter = {} as any;
59
59
 
60
+ // authentication Basic required
61
+ // http basic authentication required
62
+ setBasicAuthToObject(localVarRequestOptions, configuration)
63
+
60
64
  if (type !== undefined) {
61
65
  localVarQueryParameter['type'] = type;
62
66
  }
@@ -4,7 +4,7 @@
4
4
  * Invoicetronic API
5
5
  * The [Invoicetronic API][2] is a RESTful service that allows you to send and receive invoices through the Italian [Servizio di Interscambio (SDI)][1], or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools. For more information, see [Invoicetronic website][2] [1]: https://www.fatturapa.gov.it/it/sistemainterscambio/cose-il-sdi/ [2]: https://invoicetronic.com/
6
6
  *
7
- * The version of the OpenAPI document: 1.6.1
7
+ * The version of the OpenAPI document: 1.6.4
8
8
  * Contact: info@invoicetronic.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -48,6 +48,10 @@ export const HealthApiAxiosParamCreator = function (configuration?: Configuratio
48
48
  const localVarHeaderParameter = {} as any;
49
49
  const localVarQueryParameter = {} as any;
50
50
 
51
+ // authentication Basic required
52
+ // http basic authentication required
53
+ setBasicAuthToObject(localVarRequestOptions, configuration)
54
+
51
55
 
52
56
  setSearchParams(localVarUrlObj, localVarQueryParameter);
53
57
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};