@transai/connector-runner-mkg 0.8.0 → 0.9.0
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 0.8.0 (2026-02-09)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- ability to function default values ([92ec8163](https://github.com/xip-online-applications/xod-core/commit/92ec8163))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Youri Lefers @yourilefers
|
|
10
|
+
|
|
1
11
|
## 0.7.9 (2026-02-03)
|
|
2
12
|
|
|
3
13
|
### 🩹 Fixes
|
|
@@ -8,6 +8,7 @@ export type HttpRequestOptions<D = string | object> = {
|
|
|
8
8
|
params?: Record<string, string | number | boolean>;
|
|
9
9
|
data?: D;
|
|
10
10
|
withCredentials?: boolean;
|
|
11
|
+
responseType?: 'arraybuffer' | 'blob' | 'document' | 'json' | 'text' | 'stream' | 'formdata';
|
|
11
12
|
};
|
|
12
13
|
export type HttpRequestOptionsFormatter<D = string | object> = (requestOptions: HttpRequestOptions<D>, method: HttpMethod, url: string) => Promise<HttpRequestOptions<D>> | HttpRequestOptions<D>;
|
|
13
14
|
export type HttpErrorResponseCallbackRequest<D = string | object> = {
|
|
@@ -17,6 +17,6 @@ export type Result = boolean | {
|
|
|
17
17
|
};
|
|
18
18
|
export interface SenderSDKInterface {
|
|
19
19
|
metrics(metrics: Array<Metric>, metadata?: Metadata, context?: Context): Promise<Result>;
|
|
20
|
-
metricsLegacy<T = never>(metrics: Array<T>, metadata?: Metadata, context?: Context): Promise<Result>;
|
|
20
|
+
metricsLegacy<T = never>(metrics: Array<T>, metadata?: Metadata, context?: Context, topic?: string): Promise<Result>;
|
|
21
21
|
documents<T = object>(documents: Array<T>, metadata?: Metadata, context?: Context): Promise<Result>;
|
|
22
22
|
}
|
|
@@ -28,7 +28,8 @@ export declare enum ConfiguredConnectorTypes {
|
|
|
28
28
|
EZ_MES = "ez-mes",
|
|
29
29
|
OTTO_FLEET_MANAGER_V2 = "otto-fleet-manager-v2",
|
|
30
30
|
FRAUNHOFER_BATTERY_ASSEMBLY_CELLS = "fraunhofer-battery-assembly-cells",
|
|
31
|
-
PDF_GENERATE = "pdf-generate"
|
|
31
|
+
PDF_GENERATE = "pdf-generate",
|
|
32
|
+
ONSHAPE = "onshape"
|
|
32
33
|
}
|
|
33
34
|
export interface ConnectorConfig {
|
|
34
35
|
type: ConfiguredConnectorTypes;
|