@transai/connector-runner-microsoft-office365-email 0.5.1 → 0.7.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.6.0 (2026-02-09)
2
+
3
+ ### 🧱 Updated Dependencies
4
+
5
+ - Updated @transai/connector-runtime-sdk to 0.7.0
6
+
7
+ ## 0.5.1 (2026-01-21)
8
+
9
+ ### 🩹 Fixes
10
+
11
+ - samba handle spaces ([583eb859](https://github.com/xip-online-applications/xod-core/commit/583eb859))
12
+
13
+ ### ❤️ Thank You
14
+
15
+ - Youri Lefers @yourilefers
16
+
1
17
  ## 0.5.0 (2026-01-14)
2
18
 
3
19
  ### 🧱 Updated Dependencies
@@ -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
  }
@@ -27,7 +27,9 @@ export declare enum ConfiguredConnectorTypes {
27
27
  MKG = "mkg",
28
28
  EZ_MES = "ez-mes",
29
29
  OTTO_FLEET_MANAGER_V2 = "otto-fleet-manager-v2",
30
- FRAUNHOFER_BATTERY_ASSEMBLY_CELLS = "fraunhofer-battery-assembly-cells"
30
+ FRAUNHOFER_BATTERY_ASSEMBLY_CELLS = "fraunhofer-battery-assembly-cells",
31
+ PDF_GENERATE = "pdf-generate",
32
+ ONSHAPE = "onshape"
31
33
  }
32
34
  export interface ConnectorConfig {
33
35
  type: ConfiguredConnectorTypes;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transai/connector-runner-microsoft-office365-email",
3
- "version": "0.5.1",
3
+ "version": "0.7.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },