@transai/connector-runner-pdf 0.6.1 → 0.7.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 +8 -0
- package/libs/types/src/lib/management-api/dataset/dataset.interface.d.ts +2 -0
- package/libs/types/src/lib/management-api/dataset/datasets.interface.d.ts +2 -0
- package/libs/types/src/lib/management-api/dataset/dimension.interface.d.ts +2 -0
- package/libs/types/src/lib/management-api/dataset/dimensions.interface.d.ts +1 -0
- package/libs/types/src/lib/management-api/dataset/measure.interface.d.ts +2 -0
- package/libs/types/src/lib/management-api/dataset/measures.interface.d.ts +1 -0
- package/libs/types/src/lib/management-api/template-implementation-overrides.interface.d.ts +2 -0
- package/libs/types/src/lib/management-api/template-implementation.interface.d.ts +4 -0
- package/libs/types/src/lib/management-api/template.interface.d.ts +2 -0
- package/libs/types/src/lib/management-api/workflow/workflow-drawing.interface.d.ts +15 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## 0.7.0 (2026-03-05)
|
|
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.6.1 (2026-03-04)
|
|
6
|
+
|
|
7
|
+
This was a version bump only for connector-runner-pdf to align it with other projects, there were no code changes.
|
|
8
|
+
|
|
1
9
|
## 0.6.0 (2026-03-03)
|
|
2
10
|
|
|
3
11
|
This was a version bump only for connector-runner-pdf to align it with other projects, there were no code changes.
|
|
@@ -26,6 +26,7 @@ export declare const DatasetSchema: z.ZodObject<{
|
|
|
26
26
|
format: z.ZodOptional<z.ZodEnum<typeof import("../type-enums").DimensionFormatsEnum>>;
|
|
27
27
|
explode: z.ZodOptional<z.ZodBoolean>;
|
|
28
28
|
index: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
|
|
29
|
+
upperIndex: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
|
|
29
30
|
switch: z.ZodOptional<z.ZodObject<{
|
|
30
31
|
when: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
|
|
31
32
|
sql: z.ZodOptional<z.ZodString>;
|
|
@@ -69,6 +70,7 @@ export declare const DatasetSchema: z.ZodObject<{
|
|
|
69
70
|
type: z.ZodEnum<typeof import("../type-enums").MeasureTypesEnum>;
|
|
70
71
|
format: z.ZodOptional<z.ZodEnum<typeof import("../type-enums").MeasureFormatsEnum>>;
|
|
71
72
|
index: z.ZodOptional<z.ZodString>;
|
|
73
|
+
upperIndex: z.ZodOptional<z.ZodString>;
|
|
72
74
|
sql: z.ZodOptional<z.ZodString>;
|
|
73
75
|
dimension: z.ZodOptional<z.ZodString>;
|
|
74
76
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -19,6 +19,7 @@ export declare const DatasetsSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodO
|
|
|
19
19
|
format: z.ZodOptional<z.ZodEnum<typeof import("..").DimensionFormatsEnum>>;
|
|
20
20
|
explode: z.ZodOptional<z.ZodBoolean>;
|
|
21
21
|
index: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
|
|
22
|
+
upperIndex: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
|
|
22
23
|
switch: z.ZodOptional<z.ZodObject<{
|
|
23
24
|
when: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
|
|
24
25
|
sql: z.ZodOptional<z.ZodString>;
|
|
@@ -62,6 +63,7 @@ export declare const DatasetsSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodO
|
|
|
62
63
|
type: z.ZodEnum<typeof import("..").MeasureTypesEnum>;
|
|
63
64
|
format: z.ZodOptional<z.ZodEnum<typeof import("..").MeasureFormatsEnum>>;
|
|
64
65
|
index: z.ZodOptional<z.ZodString>;
|
|
66
|
+
upperIndex: z.ZodOptional<z.ZodString>;
|
|
65
67
|
sql: z.ZodOptional<z.ZodString>;
|
|
66
68
|
dimension: z.ZodOptional<z.ZodString>;
|
|
67
69
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9,6 +9,7 @@ export declare const DimensionSchema: z.ZodObject<{
|
|
|
9
9
|
format: z.ZodOptional<z.ZodEnum<typeof DimensionFormatsEnum>>;
|
|
10
10
|
explode: z.ZodOptional<z.ZodBoolean>;
|
|
11
11
|
index: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
|
|
12
|
+
upperIndex: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
|
|
12
13
|
switch: z.ZodOptional<z.ZodObject<{
|
|
13
14
|
when: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
|
|
14
15
|
sql: z.ZodOptional<z.ZodString>;
|
|
@@ -36,6 +37,7 @@ export interface DimensionInterface {
|
|
|
36
37
|
format?: DimensionFormatsEnum;
|
|
37
38
|
explode?: boolean;
|
|
38
39
|
index?: boolean | string;
|
|
40
|
+
upperIndex?: boolean | string;
|
|
39
41
|
switch?: SwitchInterface;
|
|
40
42
|
field?: string | Array<string>;
|
|
41
43
|
sql?: string;
|
|
@@ -7,6 +7,7 @@ export declare const DimensionsSchema: z.ZodRecord<z.ZodString, z.ZodUnion<reado
|
|
|
7
7
|
format: z.ZodOptional<z.ZodEnum<typeof import("..").DimensionFormatsEnum>>;
|
|
8
8
|
explode: z.ZodOptional<z.ZodBoolean>;
|
|
9
9
|
index: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
|
|
10
|
+
upperIndex: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
|
|
10
11
|
switch: z.ZodOptional<z.ZodObject<{
|
|
11
12
|
when: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
|
|
12
13
|
sql: z.ZodOptional<z.ZodString>;
|
|
@@ -7,6 +7,7 @@ export declare const MeasureSchema: z.ZodObject<{
|
|
|
7
7
|
type: z.ZodEnum<typeof MeasureTypesEnum>;
|
|
8
8
|
format: z.ZodOptional<z.ZodEnum<typeof MeasureFormatsEnum>>;
|
|
9
9
|
index: z.ZodOptional<z.ZodString>;
|
|
10
|
+
upperIndex: z.ZodOptional<z.ZodString>;
|
|
10
11
|
sql: z.ZodOptional<z.ZodString>;
|
|
11
12
|
dimension: z.ZodOptional<z.ZodString>;
|
|
12
13
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18,6 +19,7 @@ export interface MeasureInterface {
|
|
|
18
19
|
type: MeasureTypesEnum;
|
|
19
20
|
format?: MeasureFormatsEnum;
|
|
20
21
|
index?: string;
|
|
22
|
+
upperIndex?: string;
|
|
21
23
|
sql?: string;
|
|
22
24
|
dimension?: string;
|
|
23
25
|
public?: boolean;
|
|
@@ -6,6 +6,7 @@ export declare const MeasuresSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonl
|
|
|
6
6
|
type: z.ZodEnum<typeof import("..").MeasureTypesEnum>;
|
|
7
7
|
format: z.ZodOptional<z.ZodEnum<typeof import("..").MeasureFormatsEnum>>;
|
|
8
8
|
index: z.ZodOptional<z.ZodString>;
|
|
9
|
+
upperIndex: z.ZodOptional<z.ZodString>;
|
|
9
10
|
sql: z.ZodOptional<z.ZodString>;
|
|
10
11
|
dimension: z.ZodOptional<z.ZodString>;
|
|
11
12
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -20,6 +20,7 @@ export declare const TemplateImplementationOverridesSchema: z.ZodObject<{
|
|
|
20
20
|
format: z.ZodOptional<z.ZodEnum<typeof import("./type-enums").DimensionFormatsEnum>>;
|
|
21
21
|
explode: z.ZodOptional<z.ZodBoolean>;
|
|
22
22
|
index: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
|
|
23
|
+
upperIndex: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
|
|
23
24
|
switch: z.ZodOptional<z.ZodObject<{
|
|
24
25
|
when: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
|
|
25
26
|
sql: z.ZodOptional<z.ZodString>;
|
|
@@ -63,6 +64,7 @@ export declare const TemplateImplementationOverridesSchema: z.ZodObject<{
|
|
|
63
64
|
type: z.ZodEnum<typeof import("./type-enums").MeasureTypesEnum>;
|
|
64
65
|
format: z.ZodOptional<z.ZodEnum<typeof import("./type-enums").MeasureFormatsEnum>>;
|
|
65
66
|
index: z.ZodOptional<z.ZodString>;
|
|
67
|
+
upperIndex: z.ZodOptional<z.ZodString>;
|
|
66
68
|
sql: z.ZodOptional<z.ZodString>;
|
|
67
69
|
dimension: z.ZodOptional<z.ZodString>;
|
|
68
70
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -25,6 +25,7 @@ export declare const TemplateImplementationSchema: z.ZodObject<{
|
|
|
25
25
|
format: z.ZodOptional<z.ZodEnum<typeof import("./type-enums").DimensionFormatsEnum>>;
|
|
26
26
|
explode: z.ZodOptional<z.ZodBoolean>;
|
|
27
27
|
index: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
|
|
28
|
+
upperIndex: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
|
|
28
29
|
switch: z.ZodOptional<z.ZodObject<{
|
|
29
30
|
when: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
|
|
30
31
|
sql: z.ZodOptional<z.ZodString>;
|
|
@@ -68,6 +69,7 @@ export declare const TemplateImplementationSchema: z.ZodObject<{
|
|
|
68
69
|
type: z.ZodEnum<typeof import("./type-enums").MeasureTypesEnum>;
|
|
69
70
|
format: z.ZodOptional<z.ZodEnum<typeof import("./type-enums").MeasureFormatsEnum>>;
|
|
70
71
|
index: z.ZodOptional<z.ZodString>;
|
|
72
|
+
upperIndex: z.ZodOptional<z.ZodString>;
|
|
71
73
|
sql: z.ZodOptional<z.ZodString>;
|
|
72
74
|
dimension: z.ZodOptional<z.ZodString>;
|
|
73
75
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -171,6 +173,7 @@ export declare const TemplateImplementationCreateSchema: z.ZodObject<{
|
|
|
171
173
|
format: z.ZodOptional<z.ZodEnum<typeof import("./type-enums").DimensionFormatsEnum>>;
|
|
172
174
|
explode: z.ZodOptional<z.ZodBoolean>;
|
|
173
175
|
index: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
|
|
176
|
+
upperIndex: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
|
|
174
177
|
switch: z.ZodOptional<z.ZodObject<{
|
|
175
178
|
when: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
|
|
176
179
|
sql: z.ZodOptional<z.ZodString>;
|
|
@@ -214,6 +217,7 @@ export declare const TemplateImplementationCreateSchema: z.ZodObject<{
|
|
|
214
217
|
type: z.ZodEnum<typeof import("./type-enums").MeasureTypesEnum>;
|
|
215
218
|
format: z.ZodOptional<z.ZodEnum<typeof import("./type-enums").MeasureFormatsEnum>>;
|
|
216
219
|
index: z.ZodOptional<z.ZodString>;
|
|
220
|
+
upperIndex: z.ZodOptional<z.ZodString>;
|
|
217
221
|
sql: z.ZodOptional<z.ZodString>;
|
|
218
222
|
dimension: z.ZodOptional<z.ZodString>;
|
|
219
223
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -25,6 +25,7 @@ export declare const TemplateSchema: z.ZodObject<{
|
|
|
25
25
|
format: z.ZodOptional<z.ZodEnum<typeof import("./type-enums").DimensionFormatsEnum>>;
|
|
26
26
|
explode: z.ZodOptional<z.ZodBoolean>;
|
|
27
27
|
index: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
|
|
28
|
+
upperIndex: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
|
|
28
29
|
switch: z.ZodOptional<z.ZodObject<{
|
|
29
30
|
when: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
|
|
30
31
|
sql: z.ZodOptional<z.ZodString>;
|
|
@@ -68,6 +69,7 @@ export declare const TemplateSchema: z.ZodObject<{
|
|
|
68
69
|
type: z.ZodEnum<typeof import("./type-enums").MeasureTypesEnum>;
|
|
69
70
|
format: z.ZodOptional<z.ZodEnum<typeof import("./type-enums").MeasureFormatsEnum>>;
|
|
70
71
|
index: z.ZodOptional<z.ZodString>;
|
|
72
|
+
upperIndex: z.ZodOptional<z.ZodString>;
|
|
71
73
|
sql: z.ZodOptional<z.ZodString>;
|
|
72
74
|
dimension: z.ZodOptional<z.ZodString>;
|
|
73
75
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ChartInterface } from '../chart.interface';
|
|
1
2
|
import { ConditionalTypes, NodeTypes, TriggerType } from './enums';
|
|
2
3
|
import { ConditionMapper, MessageMapper, ValidationMapper } from './parameter-mapper.interface';
|
|
3
4
|
export interface Conditional {
|
|
@@ -73,9 +74,23 @@ export interface CreateWorkflowDrawingInterface {
|
|
|
73
74
|
edges: Array<Edge>;
|
|
74
75
|
enabled: boolean;
|
|
75
76
|
}
|
|
77
|
+
export type WorkflowDrawingChartSubInterface = Pick<ChartInterface, 'id' | 'params' | 'slice_name' | 'supersetId' | 'viz_type'>;
|
|
78
|
+
export type WorkflowDrawingPayload = Array<{
|
|
79
|
+
value: string;
|
|
80
|
+
label: string;
|
|
81
|
+
field_type: 'text' | 'string' | 'number' | 'textarea' | 'checkbox' | 'select' | 'cube-select';
|
|
82
|
+
field_options?: Array<{
|
|
83
|
+
dimensions: string;
|
|
84
|
+
}>;
|
|
85
|
+
field_dataset?: string;
|
|
86
|
+
}>;
|
|
76
87
|
export interface WorkflowDrawing extends CreateWorkflowDrawingInterface {
|
|
77
88
|
id: string;
|
|
78
89
|
createdAt: Date;
|
|
79
90
|
updatedAt: Date;
|
|
80
91
|
version: number;
|
|
92
|
+
triggerChart?: WorkflowDrawingChartSubInterface;
|
|
93
|
+
}
|
|
94
|
+
export interface WorkflowDrawingWithPayload extends WorkflowDrawing {
|
|
95
|
+
payload: WorkflowDrawingPayload;
|
|
81
96
|
}
|