@trii/types 2.10.296 → 2.10.297

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,19 @@
1
+ import { FormItemType } from "../../Common/Channels/Form";
2
+ export declare class DashBoardFormsSummaryInfo {
3
+ formId: string;
4
+ timeStart: Date;
5
+ timeEnd: Date;
6
+ completedForms: number;
7
+ records: DashBoardFormsQuestionSummary[];
8
+ }
9
+ export declare class DashBoardFormsQuestionSummary {
10
+ questionId: string;
11
+ question: string;
12
+ type: FormItemType;
13
+ count: number;
14
+ responses: DashBoardFormsResponseSummary[];
15
+ }
16
+ export declare class DashBoardFormsResponseSummary {
17
+ count: number;
18
+ responseTitle: string;
19
+ }
@@ -0,0 +1,6 @@
1
+ export class DashBoardFormsSummaryInfo {
2
+ }
3
+ export class DashBoardFormsQuestionSummary {
4
+ }
5
+ export class DashBoardFormsResponseSummary {
6
+ }
@@ -7,3 +7,4 @@ export * from './WebHook';
7
7
  export * from './SocialWalls';
8
8
  export * from './QuickResponse';
9
9
  export * from './DashBoard/dashboard';
10
+ export * from './DashBoard/dashboardForms';
@@ -9,3 +9,4 @@ export * from './WebHook';
9
9
  export * from './SocialWalls';
10
10
  export * from './QuickResponse';
11
11
  export * from './DashBoard/dashboard';
12
+ export * from './DashBoard/dashboardForms';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.296",
3
+ "version": "2.10.297",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",