@transai/connector-runner-ai-agent 0.26.0 → 0.28.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 +8 -0
- package/index.cjs +365 -498
- package/index.cjs.map +4 -4
- package/libs/types/src/lib/management-api/group-member.interface.d.ts +12 -0
- package/libs/types/src/lib/management-api/group.interface.d.ts +18 -0
- package/libs/types/src/lib/management-api/index.d.ts +2 -1
- package/libs/types/src/lib/management-api/template-implementation.interface.d.ts +1 -0
- package/libs/types/src/lib/management-api/template.interface.d.ts +1 -0
- package/libs/types/src/lib/management-api/workflow/workflow-drawing.interface.d.ts +0 -1
- package/libs/types/src/lib/types.d.ts +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { GroupInterface } from './group.interface';
|
|
2
|
+
export interface GroupMemberInterface {
|
|
3
|
+
userId: string;
|
|
4
|
+
tenantIdentifier: string;
|
|
5
|
+
firstName: string;
|
|
6
|
+
lastName?: string;
|
|
7
|
+
email: string;
|
|
8
|
+
createdAt: Date;
|
|
9
|
+
}
|
|
10
|
+
export interface GroupWithMembersInterface extends GroupInterface {
|
|
11
|
+
members: Array<GroupMemberInterface>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface GroupInterface {
|
|
2
|
+
id: number;
|
|
3
|
+
tenantIdentifier: string;
|
|
4
|
+
name: string;
|
|
5
|
+
description: string | null;
|
|
6
|
+
defaultDashboardId: number | null;
|
|
7
|
+
createdAt: Date;
|
|
8
|
+
updatedAt: Date;
|
|
9
|
+
}
|
|
10
|
+
export interface CreateGroupInterface {
|
|
11
|
+
name: string;
|
|
12
|
+
description?: string | null;
|
|
13
|
+
}
|
|
14
|
+
export interface UpdateGroupInterface {
|
|
15
|
+
name?: string;
|
|
16
|
+
description?: string | null;
|
|
17
|
+
defaultDashboardId?: number | null;
|
|
18
|
+
}
|
|
@@ -9,7 +9,8 @@ export * from './semantic-trigger';
|
|
|
9
9
|
export * from './connector-orchestrator-config.interface';
|
|
10
10
|
export * from './chart.interface';
|
|
11
11
|
export * from './dashboard.interface';
|
|
12
|
-
export * from './
|
|
12
|
+
export * from './group.interface';
|
|
13
|
+
export * from './group-member.interface';
|
|
13
14
|
export * from './dataset/datasets.interface';
|
|
14
15
|
export * from './dataset/dataset.interface';
|
|
15
16
|
export * from './dataset/dataset-record.interface';
|
|
@@ -192,6 +192,7 @@ export interface TemplateInterface {
|
|
|
192
192
|
semanticTriggers: SemanticTriggersInterface;
|
|
193
193
|
connectors?: ConnectorsInterface;
|
|
194
194
|
}
|
|
195
|
+
export type ShallowTemplateInterface = Omit<TemplateInterface, 'datasets' | 'semanticTriggers' | 'connectors'>;
|
|
195
196
|
export interface PostTemplateInterface extends Omit<TemplateInterface, 'id'> {
|
|
196
197
|
identifier: string;
|
|
197
198
|
version: string;
|
|
@@ -33,7 +33,8 @@ export declare enum ConfiguredConnectorTypes {
|
|
|
33
33
|
OROOX = "oroox",
|
|
34
34
|
GPMS = "gpms",
|
|
35
35
|
KEIZERSMETAAL_TRUMPF_API = "keizersmetaal-trumpf-api",
|
|
36
|
-
HP_INDIGO = "hp-indigo"
|
|
36
|
+
HP_INDIGO = "hp-indigo",
|
|
37
|
+
QLINK = "qlink"
|
|
37
38
|
}
|
|
38
39
|
export interface ConnectorConfig {
|
|
39
40
|
type: ConfiguredConnectorTypes;
|