@mdgf11/filesystem-lib 2.2.3 → 2.2.4

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/dist/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export declare const UpdateSources: readonly ["STJ (Sharepoint)", "Juris"];
1
+ export declare const UpdateSources: readonly ["STJ (Sharepoint)", "DGSI"];
2
2
  export type SupportedUpdateSources = typeof UpdateSources[number];
3
3
  import { PartialJurisprudenciaDocument } from '@stjiris/jurisprudencia-document';
4
4
  export declare const ROOT_PATH: string;
package/dist/types.js CHANGED
@@ -1,4 +1,4 @@
1
- export const UpdateSources = ["STJ (Sharepoint)", "Juris"];
1
+ export const UpdateSources = ["STJ (Sharepoint)", "DGSI"];
2
2
  import dotenv from 'dotenv';
3
3
  dotenv.config();
4
4
  export const ROOT_PATH = process.env['LOCAL_ROOT'] || 'results';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mdgf11/filesystem-lib",
3
- "version": "2.2.3",
3
+ "version": "2.2.4",
4
4
  "description": "Library to extend usage of jurisprudencia-document",
5
5
  "license": "ISC",
6
6
  "author": "Miguel Fonseca",
package/src/types.ts CHANGED
@@ -1,5 +1,5 @@
1
1
 
2
- export const UpdateSources = ["STJ (Sharepoint)", "Juris"] as const;
2
+ export const UpdateSources = ["STJ (Sharepoint)", "DGSI"] as const;
3
3
  export type SupportedUpdateSources = typeof UpdateSources[number];
4
4
  import { PartialJurisprudenciaDocument } from '@stjiris/jurisprudencia-document';
5
5
  import dotenv from 'dotenv';