@likable-hair/cciaa-service 0.2.0 → 0.2.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 +51 -51
- package/dist/cciaa-service.cjs +9 -10
- package/dist/cciaa-service.cjs.map +1 -1
- package/dist/cciaa-service.js +7308 -4479
- package/dist/cciaa-service.js.map +1 -1
- package/dist/index.d.ts +2540 -205
- package/package.json +69 -68
package/README.md
CHANGED
|
@@ -1,51 +1,51 @@
|
|
|
1
|
-
<div align="center">
|
|
2
|
-
<h1><b>CCIAA-Service</b></h1>
|
|
3
|
-
|
|
4
|
-
<p>A package that provides a set of functions to interact with the CCIAA (Camera di Commercio, Industria, Artigianato e Agricoltura )</p>
|
|
5
|
-
</div>
|
|
6
|
-
|
|
7
|
-
## Getting Started
|
|
8
|
-
|
|
9
|
-
This package is available in the npm registry.
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
npm install cciaa-service
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
Next, configure the .env file (by following the example) and set the following variables for testing the library:
|
|
16
|
-
|
|
17
|
-
<ul>
|
|
18
|
-
<li><strong>VITE_CCIAA_USERNAME</strong>: the username of the CCIAA portal </li>
|
|
19
|
-
<li><strong>VITE_CCIAA_PASSWORD</strong>: the password of the CCIAA portal </li>
|
|
20
|
-
|
|
21
|
-
</ul>
|
|
22
|
-
|
|
23
|
-
## Installation
|
|
24
|
-
|
|
25
|
-
Install the package along with its required peer dependencies:
|
|
26
|
-
|
|
27
|
-
```bash
|
|
28
|
-
npm install @likable-hair/cciaa-service
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
## Requirements
|
|
32
|
-
|
|
33
|
-
<ul>
|
|
34
|
-
<li>
|
|
35
|
-
<strong>Node.js >= 22.5.4</strong>: Ensure that you have Node.js version 22.x or higher installed on your system.
|
|
36
|
-
You can check your version by running:
|
|
37
|
-
<pre><code>node -v</code></pre>
|
|
38
|
-
</li>
|
|
39
|
-
<li>
|
|
40
|
-
<strong>Access to CCIAA portal</strong>: You must have valid credentials (username and password) to access the CCIAA portal.
|
|
41
|
-
</li>
|
|
42
|
-
<li>ESM projects (`"type": "module"`) are fully supported</li>
|
|
43
|
-
</ul>
|
|
44
|
-
|
|
45
|
-
## Usage
|
|
46
|
-
|
|
47
|
-
Run the following command to test the package
|
|
48
|
-
|
|
49
|
-
```bash
|
|
50
|
-
npm run test
|
|
51
|
-
```
|
|
1
|
+
<div align="center">
|
|
2
|
+
<h1><b>CCIAA-Service</b></h1>
|
|
3
|
+
|
|
4
|
+
<p>A package that provides a set of functions to interact with the CCIAA (Camera di Commercio, Industria, Artigianato e Agricoltura )</p>
|
|
5
|
+
</div>
|
|
6
|
+
|
|
7
|
+
## Getting Started
|
|
8
|
+
|
|
9
|
+
This package is available in the npm registry.
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install cciaa-service
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Next, configure the .env file (by following the example) and set the following variables for testing the library:
|
|
16
|
+
|
|
17
|
+
<ul>
|
|
18
|
+
<li><strong>VITE_CCIAA_USERNAME</strong>: the username of the CCIAA portal </li>
|
|
19
|
+
<li><strong>VITE_CCIAA_PASSWORD</strong>: the password of the CCIAA portal </li>
|
|
20
|
+
|
|
21
|
+
</ul>
|
|
22
|
+
|
|
23
|
+
## Installation
|
|
24
|
+
|
|
25
|
+
Install the package along with its required peer dependencies:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npm install @likable-hair/cciaa-service
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Requirements
|
|
32
|
+
|
|
33
|
+
<ul>
|
|
34
|
+
<li>
|
|
35
|
+
<strong>Node.js >= 22.5.4</strong>: Ensure that you have Node.js version 22.x or higher installed on your system.
|
|
36
|
+
You can check your version by running:
|
|
37
|
+
<pre><code>node -v</code></pre>
|
|
38
|
+
</li>
|
|
39
|
+
<li>
|
|
40
|
+
<strong>Access to CCIAA portal</strong>: You must have valid credentials (username and password) to access the CCIAA portal.
|
|
41
|
+
</li>
|
|
42
|
+
<li>ESM projects (`"type": "module"`) are fully supported</li>
|
|
43
|
+
</ul>
|
|
44
|
+
|
|
45
|
+
## Usage
|
|
46
|
+
|
|
47
|
+
Run the following command to test the package
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
npm run test
|
|
51
|
+
```
|