jsegd-fluig-types 1.0.0 → 1.0.1

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 (2) hide show
  1. package/README.md +29 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # jsegd-fluig-types
2
+
3
+ Pacote de tipos TypeScript para integração com o Fluig.
4
+
5
+ ## Instalação
6
+
7
+ ```sh
8
+ npm install jsegd-fluig-types
9
+ ```
10
+
11
+ ## Uso
12
+
13
+ Importe os tipos conforme necessário:
14
+
15
+ ```typescript
16
+ import { /* tipos */ } from 'jsegd-fluig-types';
17
+ ```
18
+
19
+ ## Conteúdo
20
+ - `fluig.sdk.d.ts`: Tipos para SDK do Fluig
21
+ - `java.d.ts`: Tipos para integração Java
22
+ - `types.d.ts`: Tipos utilitários
23
+ - `index.d.ts`: Exporta todos os tipos
24
+
25
+ ## Licença
26
+ Este pacote está sob a licença CC-BY-NC-ND-4.0. Uso permitido apenas para fins não comerciais e sem modificações.
27
+
28
+ ## Empresa
29
+ [EGD Tecnologia](https://www.egd.tec.br/)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jsegd-fluig-types",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Pacote de tipos para fluig",
5
5
  "license": "CC-BY-NC-ND-4.0",
6
6
  "author": "Elemar Deckmann",
@@ -12,4 +12,4 @@
12
12
  "java.d.ts",
13
13
  "types.d.ts"
14
14
  ]
15
- }
15
+ }