Skip to content

Commit 4176162

Browse files
author
Invoicetronic bot
committed
Publish SDKs for tag sdk-1.1.3
1 parent 3533d23 commit 4176162

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+78
-74
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion

README.md

Lines changed: 1 addition & 1 deletion

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@invoicetronic/js-sdk",
3-
"version": "1.1.2",
4-
"description": "JavaScript SDK for the Invoicetronic API",
3+
"version": "1.1.3.0",
4+
"description": "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/",
55
"license": "MIT",
66
"main": "dist/index.js",
77
"scripts": {
@@ -12,6 +12,10 @@
1212
"browser": {
1313
"fs": false
1414
},
15+
"repository": {
16+
"type": "git",
17+
"url": "https://github.com/invoicetronic/javascript-sdk.git"
18+
},
1519
"dependencies": {
1620
"@babel/cli": "^7.0.0",
1721
"superagent": "^5.3.0"

src/ApiClient.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import superagent from "superagent";
1616

1717
/**
1818
* @module ApiClient
19-
* @version 1.1.2
19+
* @version 1.1.3
2020
*/
2121

2222
/**
@@ -54,7 +54,7 @@ class ApiClient {
5454
* @default {}
5555
*/
5656
this.defaultHeaders = {
57-
'User-Agent': 'Invoicetronic/1.1.2/JavaScript-SDK'
57+
'User-Agent': 'Invoicetronic/1.1.3/JavaScript-SDK'
5858
};
5959

6060
/**

src/api/CompanyApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import ProblemHttpResult from '../model/ProblemHttpResult';
2020
/**
2121
* Company service.
2222
* @module api/CompanyApi
23-
* @version 1.1.2
23+
* @version 1.1.3
2424
*/
2525
export default class CompanyApi {
2626

src/api/LogApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import ProblemHttpResult from '../model/ProblemHttpResult';
1919
/**
2020
* Log service.
2121
* @module api/LogApi
22-
* @version 1.1.2
22+
* @version 1.1.3
2323
*/
2424
export default class LogApi {
2525

src/api/ReceiveApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import Receive from '../model/Receive';
1919
/**
2020
* Receive service.
2121
* @module api/ReceiveApi
22-
* @version 1.1.2
22+
* @version 1.1.3
2323
*/
2424
export default class ReceiveApi {
2525

src/api/SendApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import Send from '../model/Send';
2121
/**
2222
* Send service.
2323
* @module api/SendApi
24-
* @version 1.1.2
24+
* @version 1.1.3
2525
*/
2626
export default class SendApi {
2727

src/api/StatusApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import Status from '../model/Status';
1818
/**
1919
* Status service.
2020
* @module api/StatusApi
21-
* @version 1.1.2
21+
* @version 1.1.3
2222
*/
2323
export default class StatusApi {
2424

src/api/UpdateApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import Update from '../model/Update';
1919
/**
2020
* Update service.
2121
* @module api/UpdateApi
22-
* @version 1.1.2
22+
* @version 1.1.3
2323
*/
2424
export default class UpdateApi {
2525

0 commit comments

Comments
 (0)