@trii/types 2.10.297 → 2.10.299

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.
@@ -17,3 +17,28 @@ export declare class DashBoardFormsResponseSummary {
17
17
  count: number;
18
18
  responseTitle: string;
19
19
  }
20
+ export declare class DashBoardFormsSubmittedFormsInfo {
21
+ formId: string;
22
+ timeStart: Date;
23
+ timeEnd: Date;
24
+ completedForms: number;
25
+ records: DashBoardFormsSubmittedFormRecord[];
26
+ }
27
+ export declare class DashBoardFormsSubmittedFormRecord {
28
+ id: string;
29
+ tags: FormTag[];
30
+ responses: DashBoardFormsSubmittedFormResponse[];
31
+ expireAt: Date;
32
+ createdAt: Date;
33
+ completedAt: Date;
34
+ }
35
+ export declare class DashBoardFormsSubmittedFormResponse {
36
+ questionId: string;
37
+ question: string;
38
+ type: FormItemType;
39
+ response: any;
40
+ }
41
+ export declare class FormTag {
42
+ name: string;
43
+ value: string;
44
+ }
@@ -4,3 +4,11 @@ export class DashBoardFormsQuestionSummary {
4
4
  }
5
5
  export class DashBoardFormsResponseSummary {
6
6
  }
7
+ export class DashBoardFormsSubmittedFormsInfo {
8
+ }
9
+ export class DashBoardFormsSubmittedFormRecord {
10
+ }
11
+ export class DashBoardFormsSubmittedFormResponse {
12
+ }
13
+ export class FormTag {
14
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.297",
3
+ "version": "2.10.299",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",