@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.
@@ -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 './semantic-trigger';
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';
@@ -356,3 +356,4 @@ export interface TemplateImplementationInterface {
356
356
  createdAt: Date;
357
357
  updatedAt: Date;
358
358
  }
359
+ export type ShallowTemplateImplementationInterface = Omit<TemplateImplementationInterface, 'template' | 'overrides'>;
@@ -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;
@@ -54,7 +54,6 @@ export interface EndNode extends Node {
54
54
  }
55
55
  export interface PlaceholderNode extends Node {
56
56
  type: NodeTypes.PLACEHOLDER;
57
- with: Record<string, never>;
58
57
  }
59
58
  export interface InvisibleNode extends Node {
60
59
  type: NodeTypes.INVISIBLE;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transai/connector-runner-ai-agent",
3
- "version": "0.26.0",
3
+ "version": "0.28.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },