survery-lib 2.1.16 → 2.1.20

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.
@@ -22,12 +22,13 @@ export declare class QuestionInstitutionsTemplateComponent implements OnInit {
22
22
  institutionsQuestionArr: import("@angular/core").Signal<{
23
23
  id: string;
24
24
  name: string;
25
+ requestTimestamp: string;
25
26
  }[]>;
26
27
  set setQuestion(value: QuestionNgrxModel);
27
28
  constructor(_Store: Store, _formBuilder: FormBuilder, _ApiService: ApiService);
28
29
  ngOnInit(): void;
29
30
  onUpdateAnswer(model: {
30
- id: number;
31
+ id: string;
31
32
  name: string;
32
33
  }, groupIndex: number): void;
33
34
  identify(index: any, item: FormGroup<QuestionGroupChildOfQuestionInstitutionsTemplateFormInterface>): any;
@@ -23,18 +23,22 @@ export declare class ApiService {
23
23
  getAllInstitutions(): Observable<ResultDto<InstitutionDto>>;
24
24
  getAllBranches(filter: {
25
25
  submissionId: string;
26
+ requestTimestamp: string;
26
27
  }): Observable<ResultDto<InstitutionBranchDto>>;
27
28
  getAllCollages(filter: {
28
29
  submissionId: string;
29
30
  branchSubmissionId: string;
31
+ requestTimestamp: string;
30
32
  }): Observable<ResultDto<InstitutionCollageDto>>;
31
33
  getAllSections(filter: {
32
34
  submissionId: string;
33
35
  collageSubmissionId: string;
36
+ requestTimestamp: string;
34
37
  }): Observable<ResultDto<InstitutionSectionDto>>;
35
38
  getAllPrograms(filter: {
36
39
  submissionId: string;
37
40
  sectionGeneratedKey: string;
41
+ requestTimestamp: string;
38
42
  }): Observable<ResultDto<InstitutionProgramDto>>;
39
43
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiService, never>;
40
44
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiService>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "survery-lib",
3
- "version": "2.1.16",
3
+ "version": "2.1.20",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.1.0",
6
6
  "@angular/core": "^16.1.0"
@@ -3,4 +3,5 @@ export interface InstitutionDto {
3
3
  institutionNameArabic: string;
4
4
  institutionNameEnglish: string;
5
5
  submissionId: string;
6
+ requestTimestamp: string;
6
7
  }
@@ -8,6 +8,7 @@ export interface QuestionInstitutionsTemplateFormInterface {
8
8
  isShow: FormControl<boolean>;
9
9
  isDisabled: FormControl<boolean>;
10
10
  institutionId: FormControl<any>;
11
+ institutionTimestamp: FormControl<string>;
11
12
  branchId: FormControl<any>;
12
13
  collageId: FormControl<any>;
13
14
  sectionId: FormControl<any>;
@@ -26,5 +27,5 @@ export interface QuestionGroupChildOfQuestionInstitutionsTemplateFormInterface {
26
27
  name: any;
27
28
  }[]>;
28
29
  answerValue: FormControl<string>;
29
- answerId: FormControl<number>;
30
+ answerId: FormControl<string>;
30
31
  }