@golemio/core 1.20.10-rc.1889412452 → 1.20.11-dev.1890441122
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/helpers/data-access/storage/AbstractStorageService.d.ts +1 -0
- package/dist/helpers/data-access/storage/AzureBlobStorageService.d.ts +1 -0
- package/dist/helpers/data-access/storage/NoopStorageService.d.ts +1 -0
- package/dist/integration-engine/datasources/datatype-strategy/ZipFileDataTypeStrategy.d.ts +1 -0
- package/dist/integration-engine/datasources/protocol-strategy/HTTPRequestProtocolStrategy.d.ts +1 -1
- package/dist/integration-engine/datasources/protocol-strategy/IProtocolStrategy.d.ts +1 -0
- package/dist/integration-engine/datasources/protocol-strategy/interfaces/IHTTPRequestSettings.d.ts +1 -0
- package/dist/integration-engine/helpers/FileCompressor.d.ts +1 -0
- package/package.json +5 -6
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
/// <reference types="node" />
|
|
3
3
|
/// <reference types="node" />
|
|
4
|
+
/// <reference types="node" />
|
|
4
5
|
import { Readable } from "stream";
|
|
5
6
|
export declare abstract class AbstractStorageService {
|
|
6
7
|
abstract uploadStream(stream: Readable, pathPrefix: string, ext?: string, fileName?: string): Promise<void>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
/// <reference types="node" />
|
|
3
3
|
/// <reference types="node" />
|
|
4
|
+
/// <reference types="node" />
|
|
4
5
|
import { ILogger } from "../../logger";
|
|
5
6
|
import { Readable } from "node:stream";
|
|
6
7
|
import { AbstractStorageService } from "./AbstractStorageService";
|
package/dist/integration-engine/datasources/protocol-strategy/HTTPRequestProtocolStrategy.d.ts
CHANGED
|
@@ -7,5 +7,5 @@ export declare class HTTPRequestProtocolStrategy<T = any> extends ProtocolStrate
|
|
|
7
7
|
constructor(settings: IHTTPRequestSettings);
|
|
8
8
|
getRawData(): Promise<IHTTPProtocolStrategyResult<T>>;
|
|
9
9
|
private getHeaders;
|
|
10
|
-
protected getResponseInternal(): Promise<Dispatcher.ResponseData
|
|
10
|
+
protected getResponseInternal(): Promise<Dispatcher.ResponseData<null>>;
|
|
11
11
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@golemio/core",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.11-dev.1890441122",
|
|
4
4
|
"description": "Golemio Core Module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"url": "https://gitlab.com/operator-ict/golemio/code/modules/core"
|
|
28
28
|
},
|
|
29
29
|
"engines": {
|
|
30
|
-
"node": ">=
|
|
31
|
-
"npm": ">=
|
|
30
|
+
"node": ">=22.0.0",
|
|
31
|
+
"npm": ">=10.0.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@commitlint/cli": "^19.3.0",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@types/content-type": "^1.1.3",
|
|
41
41
|
"@types/debug": "0.0.31",
|
|
42
42
|
"@types/mocha": "^8.2.0",
|
|
43
|
-
"@types/node": "^
|
|
43
|
+
"@types/node": "^22.15.29",
|
|
44
44
|
"@types/sinon": "^17.0.2",
|
|
45
45
|
"@types/ssh2-sftp-client": "^5.3.1",
|
|
46
46
|
"@types/supertest": "^2.0.11",
|
|
@@ -103,7 +103,6 @@
|
|
|
103
103
|
"express": "^4.21.2",
|
|
104
104
|
"express-validator": "^7.0.1",
|
|
105
105
|
"fast-csv": "^4.3.6",
|
|
106
|
-
"fast-glob": "^3.2.5",
|
|
107
106
|
"geojson": "^0.5.0",
|
|
108
107
|
"html-entities": "^2.4.0",
|
|
109
108
|
"iconv-lite": "^0.6.2",
|
|
@@ -125,7 +124,7 @@
|
|
|
125
124
|
"sequelize": "6.37.7",
|
|
126
125
|
"ssh2-sftp-client": "^7.1.0",
|
|
127
126
|
"tsyringe": "^4.8.0",
|
|
128
|
-
"undici": "^
|
|
127
|
+
"undici": "^7.10.0",
|
|
129
128
|
"xml2js": "^0.5.0",
|
|
130
129
|
"yauzl": "^2.10.0"
|
|
131
130
|
},
|