@transai/connector-runner-pdf 0.5.2 → 0.6.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 +10 -0
- package/libs/types/src/lib/management-api/dataset/dataset-record.interface.d.ts +32 -0
- package/libs/types/src/lib/management-api/dataset/dataset.interface.d.ts +5 -3
- package/libs/types/src/lib/management-api/template-implementation.interface.d.ts +1 -0
- package/libs/types/src/lib/management-api/type-enums.d.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 0.6.0 (2026-03-03)
|
|
2
|
+
|
|
3
|
+
This was a version bump only for connector-runner-pdf to align it with other projects, there were no code changes.
|
|
4
|
+
|
|
5
|
+
## 0.5.2 (2026-02-26)
|
|
6
|
+
|
|
7
|
+
### 🧱 Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated @transai/connector-runtime-sdk to 0.9.2
|
|
10
|
+
|
|
1
11
|
## 0.5.1 (2026-02-25)
|
|
2
12
|
|
|
3
13
|
### 🧱 Updated Dependencies
|
|
@@ -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;
|
|
@@ -298,6 +298,7 @@ export declare const TemplateImplementationCreateSchema: z.ZodObject<{
|
|
|
298
298
|
export interface TemplateImplementationInterface {
|
|
299
299
|
id: string;
|
|
300
300
|
templateId: string;
|
|
301
|
+
templateIdentifier: string;
|
|
301
302
|
template: TemplateInterface;
|
|
302
303
|
templateVersion: string | 'latest';
|
|
303
304
|
tenantId: 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 = "<>",
|