@transai/connector-runner-microsoft-office365-email 0.9.0 → 0.9.1
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,7 @@
|
|
|
1
|
+
## 0.9.0 (2026-03-03)
|
|
2
|
+
|
|
3
|
+
This was a version bump only for connector-runner-microsoft-office365-email to align it with other projects, there were no code changes.
|
|
4
|
+
|
|
1
5
|
## 0.8.10 (2026-02-27)
|
|
2
6
|
|
|
3
7
|
This was a version bump only for connector-runner-microsoft-office365-email to align it with other projects, there were no code changes.
|
|
@@ -1,5 +1,37 @@
|
|
|
1
|
+
import { DatasetStatusEnum, DatasetTypeEnum } from '../type-enums';
|
|
1
2
|
import { DatasetInterface } from './dataset.interface';
|
|
3
|
+
import { MetaInterface } from './meta.interface';
|
|
2
4
|
export interface DatasetRecordInterface extends DatasetInterface {
|
|
3
5
|
id: string;
|
|
4
6
|
tenantId: string;
|
|
5
7
|
}
|
|
8
|
+
export interface DatasetRecordFiltersInterface {
|
|
9
|
+
name: string;
|
|
10
|
+
status: DatasetStatusEnum;
|
|
11
|
+
type: DatasetTypeEnum;
|
|
12
|
+
integration: string;
|
|
13
|
+
}
|
|
14
|
+
export interface ShallowDatasetRecordInterface {
|
|
15
|
+
id: string;
|
|
16
|
+
key: string;
|
|
17
|
+
name: string;
|
|
18
|
+
description: string;
|
|
19
|
+
status: DatasetStatusEnum;
|
|
20
|
+
type: DatasetTypeEnum;
|
|
21
|
+
prefix: string;
|
|
22
|
+
createdat: Date;
|
|
23
|
+
updatedat: Date;
|
|
24
|
+
meta?: MetaInterface;
|
|
25
|
+
templateimplementationname?: string;
|
|
26
|
+
templateimplementationdescription?: string;
|
|
27
|
+
integration?: string;
|
|
28
|
+
templatename?: string;
|
|
29
|
+
templatedescription?: string;
|
|
30
|
+
}
|
|
31
|
+
export interface DetailedDatasetRecordInterface extends Omit<DatasetRecordInterface, 'tenantId'> {
|
|
32
|
+
templateimplementationname?: string;
|
|
33
|
+
templateimplementationdescription?: string;
|
|
34
|
+
integration?: string;
|
|
35
|
+
templatename?: string;
|
|
36
|
+
templatedescription?: string;
|
|
37
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { DatasetTypeEnum } from '../type-enums';
|
|
2
|
+
import { DatasetStatusEnum, DatasetTypeEnum } from '../type-enums';
|
|
3
3
|
import { CollectionInterface } from './collection.interface';
|
|
4
4
|
import { DimensionsInterface } from './dimensions.interface';
|
|
5
|
-
import { SegmentsInterface } from './segments.interface';
|
|
6
|
-
import { RelationsInterface } from './relations.interface';
|
|
7
5
|
import { MeasuresInterface } from './measures.interface';
|
|
8
6
|
import { MetaInterface } from './meta.interface';
|
|
9
7
|
import { PreAggregationsInterface } from './pre-aggregations.interface';
|
|
8
|
+
import { RelationsInterface } from './relations.interface';
|
|
9
|
+
import { SegmentsInterface } from './segments.interface';
|
|
10
10
|
export declare const DatasetSchema: z.ZodObject<{
|
|
11
11
|
name: z.ZodString;
|
|
12
12
|
description: z.ZodString;
|
|
@@ -97,8 +97,10 @@ export declare const DatasetSchema: z.ZodObject<{
|
|
|
97
97
|
}, z.core.$strip>, z.ZodLiteral<false>]>>>;
|
|
98
98
|
}, z.core.$strip>;
|
|
99
99
|
export interface DatasetInterface {
|
|
100
|
+
key: string;
|
|
100
101
|
name: string;
|
|
101
102
|
description: string;
|
|
103
|
+
status: DatasetStatusEnum;
|
|
102
104
|
type: DatasetTypeEnum;
|
|
103
105
|
prefix: string;
|
|
104
106
|
parent?: string;
|
|
@@ -4,6 +4,12 @@ export declare enum DatasetTypeEnum {
|
|
|
4
4
|
metrics = "metrics",
|
|
5
5
|
events = "events"
|
|
6
6
|
}
|
|
7
|
+
export declare enum DatasetStatusEnum {
|
|
8
|
+
disabled = "disabled",
|
|
9
|
+
enabled = "enabled",
|
|
10
|
+
overridden = "overridden",
|
|
11
|
+
manual = "manual"
|
|
12
|
+
}
|
|
7
13
|
export declare enum FilterOperatorsEnum {
|
|
8
14
|
equals = "=",
|
|
9
15
|
notEquals = "<>",
|