@transai/connector-runner-mkg 0.8.0 → 0.10.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,19 @@
1
+ ## 0.9.0 (2026-02-09)
2
+
3
+ ### 🧱 Updated Dependencies
4
+
5
+ - Updated @transai/connector-runtime-sdk to 0.7.0
6
+
7
+ ## 0.8.0 (2026-02-09)
8
+
9
+ ### 🚀 Features
10
+
11
+ - ability to function default values ([92ec8163](https://github.com/xip-online-applications/xod-core/commit/92ec8163))
12
+
13
+ ### ❤️ Thank You
14
+
15
+ - Youri Lefers @yourilefers
16
+
1
17
  ## 0.7.9 (2026-02-03)
2
18
 
3
19
  ### 🩹 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transai/connector-runner-mkg",
3
- "version": "0.8.0",
3
+ "version": "0.10.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },