@mdgf11/filesystem-lib 2.1.0 → 2.2.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.
@@ -111,8 +111,8 @@ export async function createJurisprudenciaDocument(retrievable_Metadata, content
111
111
  ...obj,
112
112
  Original: obj.Original,
113
113
  "Número de Processo": obj["Número de Processo"] || "",
114
- Sumário: obj.Sumário || "",
115
- Texto: obj.Texto || "",
114
+ Data: obj.Data || "",
115
+ "Meio Processual": obj["Meio Processual"],
116
116
  });
117
117
  obj["UUID"] = calculateUUID(obj["HASH"]);
118
118
  return obj;
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from "./filesystemDocumentMethods.js";
2
2
  export * from "./filesystemUpdateMethods.js";
3
3
  export * from "./types.js";
4
+ export * from "./descritores.js";
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from "./filesystemDocumentMethods.js";
2
2
  export * from "./filesystemUpdateMethods.js";
3
3
  export * from "./types.js";
4
+ export * from "./descritores.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mdgf11/filesystem-lib",
3
- "version": "2.1.0",
3
+ "version": "2.2.1",
4
4
  "description": "Library to extend usage of jurisprudencia-document",
5
5
  "license": "ISC",
6
6
  "author": "Miguel Fonseca",
@@ -13,7 +13,7 @@
13
13
  "start": "npm run build && npm run run"
14
14
  },
15
15
  "dependencies": {
16
- "@stjiris/jurisprudencia-document": "npm:@mdgf11/jurisprudencia-document@^13.1.0",
16
+ "@stjiris/jurisprudencia-document": "npm:@mdgf11/jurisprudencia-document@^13.2.0",
17
17
  "axios": "^1.13.1",
18
18
  "body-parser": "^2.2.0",
19
19
  "canvas": "^2.11.2",
@@ -122,8 +122,8 @@ export async function createJurisprudenciaDocument(retrievable_Metadata: Retriev
122
122
  ...obj,
123
123
  Original: obj.Original,
124
124
  "Número de Processo": obj["Número de Processo"] || "",
125
- Sumário: obj.Sumário || "",
126
- Texto: obj.Texto || "",
125
+ Data: obj.Data || "",
126
+ "Meio Processual": obj["Meio Processual"],
127
127
  })
128
128
 
129
129
  obj["UUID"] = calculateUUID(obj["HASH"]);
package/src/index.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from "./filesystemDocumentMethods.js"
2
2
  export * from "./filesystemUpdateMethods.js"
3
- export * from "./types.js"
3
+ export * from "./types.js"
4
+ export * from "./descritores.js"