nervatura 5.0.0-beta.9 → 5.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -7,7 +7,7 @@ Open Source Business Management Framework
7
7
 
8
8
  Nervatura is a business management framework based on **open-data principle**. It can handle any type of business related information, starting from customer details, up to shipping, stock or payment information.
9
9
 
10
- The framework is based on Nervatura [Object Model](https://nervatura.github.io/nervatura/model) specification. The main aspects of its design were:
10
+ The framework is based on Nervatura [Object Model](https://nervatura.github.io/nervatura/docs/model) specification. The main aspects of its design were:
11
11
 
12
12
  * simple and transparent structure
13
13
  * capability of storing different data types of an average company
@@ -15,25 +15,25 @@ The framework is based on Nervatura [Object Model](https://nervatura.github.io/n
15
15
  * support of several database types
16
16
  * well documented, easy data management
17
17
 
18
- The framework is based on Nervatura Object [**MODEL**](https://nervatura.github.io/nervatura/model) specification. It is a general **open-data model**, which can store all information generated in the operation of a usual corporation.
18
+ The framework is based on Nervatura Object [**MODEL**](https://nervatura.github.io/nervatura/docs/model) specification. It is a general **open-data model**, which can store all information generated in the operation of a usual corporation.
19
19
 
20
20
  The Nervatura service is small and fast. A single ~6 MB file contains all the necessary dependencies.
21
21
  The framework includes:
22
- - [**CLI API**](https://nervatura.github.io/nervatura/#cli-api) (command line)
23
- - [**CGO API**](https://nervatura.github.io/nervatura/#cgo-api) (C shared library)
24
- - standard HTTP [**RESTful API**](https://nervatura.github.io/nervatura/api) for client communication
25
- - HTTP/2-based [**gRPC API**](https://nervatura.github.io/nervatura/grpc) for server-side communication
22
+ - [**CLI API**](https://nervatura.github.io/nervatura/docs/service/cli#cli-api) (command line)
23
+ - [**CGO API**](https://nervatura.github.io/nervatura/docs/service/cli#cgo-api) (C shared library)
24
+ - standard HTTP [**RESTful API**](https://nervatura.github.io/nervatura/docs/service/api) for client communication
25
+ - HTTP/2-based [**gRPC API**](https://nervatura.github.io/nervatura/docs/service/grpc) for server-side communication
26
26
  - JWT generation, external token validation, SSL/TLS support and other HTTP security [settings](https://github.com/nervatura/nervatura-service/blob/master/.env.example)
27
27
  - built-in database drivers for postgres, mysql, sqlite databases
28
28
  - a basic report generation library for creating simple PDF documents (eg. order, invoice, etc.)
29
29
  or CSV data files
30
- - sample report templates and [**REPORT EDITOR**](https://nervatura.github.io/nervatura/docs/editor) GUI
31
- - PWA [**CLIENT**](https://nervatura.github.io/nervatura/docs) application and a basic **ADMIN** interface
30
+ - sample report templates and [**REPORT EDITOR**](https://nervatura.github.io/nervatura/docs/client/program/editor) GUI
31
+ - PWA [**CLIENT**](https://nervatura.github.io/nervatura/docs/client) application and a basic **ADMIN** interface
32
32
 
33
- The client and report interface supports [multilingualism](https://nervatura.github.io/nervatura/#customize-the-appearance). The framework can be easily extended with additional interfaces and functions in the supported languages:
33
+ The client and report interface supports [multilingualism](https://nervatura.github.io/nervatura/docs/start/customization#customize-the-appearance). The framework can be easily extended with additional interfaces and functions in the supported languages:
34
34
  C, C#, C++, Dart, Go, Java, Kotlin, Node, Objective-C, PHP, Python, Ruby (CGO and gRPC API)
35
35
 
36
- [**Installation**](https://nervatura.github.io/nervatura/#installation) and [**Quick Start**](https://nervatura.github.io/nervatura/#quick-start)
36
+ [**Installation**](https://nervatura.github.io/nervatura/docs/install) and [**Quick Start**](https://nervatura.github.io/nervatura/docs/start)
37
37
 
38
38
  More info see
39
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nervatura",
3
- "version": "5.0.0-beta.9",
3
+ "version": "5.0.2",
4
4
  "description": "Open Source Business Management Framework",
5
5
  "keywords": [
6
6
  "business management",
@@ -19,7 +19,7 @@
19
19
  "express",
20
20
  "PDF reporting"
21
21
  ],
22
- "author": "Csaba Kappel <kappel.csaba@gmail.com> (http://nervatura.com)",
22
+ "author": "Csaba Kappel <info@nervatura.com> (http://nervatura.com)",
23
23
  "license": "LGPL-3.0",
24
24
  "homepage": "http://nervatura.com",
25
25
  "repository": {
@@ -33,7 +33,6 @@
33
33
  "node": ">= 6"
34
34
  },
35
35
  "files": [
36
- "dist",
37
36
  "postinstall.js"
38
37
  ],
39
38
  "scripts": {
@@ -43,11 +42,11 @@
43
42
  "service": {
44
43
  "name": "nervatura",
45
44
  "path": "./bin",
46
- "url": "https://github.com/nervatura/nervatura-service/releases/download/v{{version}}/nervatura_{{version}}_{{platform}}_{{arch}}.tar.gz"
45
+ "url": "https://github.com/nervatura/nervatura/releases/download/v{{version}}/nervatura_{{version}}_{{platform}}_{{arch}}.tar.gz"
47
46
  },
48
47
  "dependencies": {
49
48
  "mkdirp": "^1.0.4",
50
49
  "request": "^2.88.2",
51
- "tar": "^6.1.1"
50
+ "tar": "^6.1.11"
52
51
  }
53
52
  }