@mdgf11/filesystem-lib 2.2.9 → 2.2.10

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
@@ -8,7 +8,7 @@ export declare const DETAILS_NAME = "Detalhes";
8
8
  export declare const ORIGINAL_NAME = "Original";
9
9
  export declare const LOGS_PATH = "/Updates";
10
10
  export declare const SHAREPOINT_LOGS_PATH = "/Updates/Sharepoint";
11
- export declare const DGSI_LOGS_PATH = "/Updates/Juris";
11
+ export declare const DGSI_LOGS_PATH = "/Updates/DGSI";
12
12
  export declare const SHAREPOINT_UPDATE_DIR: string;
13
13
  export declare const DGSI_UPDATE_DIR: string;
14
14
  export declare const SOURCE_TO_PATH: Record<SupportedUpdateSources, string>;
package/dist/types.js CHANGED
@@ -8,7 +8,7 @@ export const DETAILS_NAME = "Detalhes";
8
8
  export const ORIGINAL_NAME = "Original";
9
9
  export const LOGS_PATH = "/Updates";
10
10
  export const SHAREPOINT_LOGS_PATH = `${LOGS_PATH}/Sharepoint`;
11
- export const DGSI_LOGS_PATH = `${LOGS_PATH}/Juris`;
11
+ export const DGSI_LOGS_PATH = `${LOGS_PATH}/DGSI`;
12
12
  export const SHAREPOINT_UPDATE_DIR = `${ROOT_PATH}${SHAREPOINT_LOGS_PATH}`;
13
13
  export const DGSI_UPDATE_DIR = `${ROOT_PATH}${DGSI_LOGS_PATH}`;
14
14
  export const SOURCE_TO_PATH = { "STJ (Sharepoint)": SHAREPOINT_UPDATE_DIR, "DGSI": DGSI_UPDATE_DIR };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mdgf11/filesystem-lib",
3
- "version": "2.2.9",
3
+ "version": "2.2.10",
4
4
  "description": "Library to extend usage of jurisprudencia-document",
5
5
  "license": "ISC",
6
6
  "author": "Miguel Fonseca",
package/src/types.ts CHANGED
@@ -13,7 +13,7 @@ export const ORIGINAL_NAME = "Original"
13
13
  export const LOGS_PATH = "/Updates"
14
14
 
15
15
  export const SHAREPOINT_LOGS_PATH = `${LOGS_PATH}/Sharepoint`
16
- export const DGSI_LOGS_PATH = `${LOGS_PATH}/Juris`
16
+ export const DGSI_LOGS_PATH = `${LOGS_PATH}/DGSI`
17
17
 
18
18
  export const SHAREPOINT_UPDATE_DIR = `${ROOT_PATH}${SHAREPOINT_LOGS_PATH}`;
19
19
  export const DGSI_UPDATE_DIR = `${ROOT_PATH}${DGSI_LOGS_PATH}`;