survery-lib 2.1.20 → 2.1.21
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/esm2022/lib/components/question-institutions-template/question-institutions-template.component.mjs +32 -8
- package/esm2022/lib/services/api.service.mjs +5 -1
- package/esm2022/shared/dtos/programs-related-to-institution.dto.mjs +2 -0
- package/esm2022/shared/form-interfaces/question-Institutions-template.form-interface.mjs +1 -1
- package/fesm2022/survery-lib.mjs +35 -7
- package/fesm2022/survery-lib.mjs.map +1 -1
- package/lib/components/question-institutions-template/question-institutions-template.component.d.ts +1 -0
- package/lib/services/api.service.d.ts +6 -0
- package/package.json +1 -1
- package/shared/dtos/programs-related-to-institution.dto.d.ts +5 -0
- package/shared/form-interfaces/question-Institutions-template.form-interface.d.ts +3 -0
package/lib/components/question-institutions-template/question-institutions-template.component.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export declare class QuestionInstitutionsTemplateComponent implements OnInit {
|
|
|
23
23
|
id: string;
|
|
24
24
|
name: string;
|
|
25
25
|
requestTimestamp: string;
|
|
26
|
+
generatedId: string;
|
|
26
27
|
}[]>;
|
|
27
28
|
set setQuestion(value: QuestionNgrxModel);
|
|
28
29
|
constructor(_Store: Store, _formBuilder: FormBuilder, _ApiService: ApiService);
|
|
@@ -8,6 +8,7 @@ import { InstitutionBranchDto } from '../../shared/dtos/institution-branch.dto';
|
|
|
8
8
|
import { InstitutionCollageDto } from '../../shared/dtos/institution-collage.dto';
|
|
9
9
|
import { InstitutionSectionDto } from '../../shared/dtos/institution-section.dto';
|
|
10
10
|
import { InstitutionProgramDto } from '../../shared/dtos/institution-program.dto';
|
|
11
|
+
import { ProgramsRelatedToInstitutionDto } from '../../shared/dtos/programs-related-to-institution.dto';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
export declare class ApiService {
|
|
13
14
|
private _HttpClient;
|
|
@@ -21,6 +22,11 @@ export declare class ApiService {
|
|
|
21
22
|
isPre: any;
|
|
22
23
|
}): Observable<GetNextQuestionResult>;
|
|
23
24
|
getAllInstitutions(): Observable<ResultDto<InstitutionDto>>;
|
|
25
|
+
getAllProgramsRelatedToInstitutions(filter: {
|
|
26
|
+
submissionId: string;
|
|
27
|
+
generatedId: string;
|
|
28
|
+
requestTimestamp: string;
|
|
29
|
+
}): Observable<ResultDto<ProgramsRelatedToInstitutionDto>>;
|
|
24
30
|
getAllBranches(filter: {
|
|
25
31
|
submissionId: string;
|
|
26
32
|
requestTimestamp: string;
|
package/package.json
CHANGED
|
@@ -9,9 +9,12 @@ export interface QuestionInstitutionsTemplateFormInterface {
|
|
|
9
9
|
isDisabled: FormControl<boolean>;
|
|
10
10
|
institutionId: FormControl<any>;
|
|
11
11
|
institutionTimestamp: FormControl<string>;
|
|
12
|
+
institutionGeneratedId: FormControl<string>;
|
|
13
|
+
programRelatedToInstitutionId: FormControl<any>;
|
|
12
14
|
branchId: FormControl<any>;
|
|
13
15
|
collageId: FormControl<any>;
|
|
14
16
|
sectionId: FormControl<any>;
|
|
17
|
+
programId: FormControl<any>;
|
|
15
18
|
questionArr: FormArray<FormGroup<QuestionGroupChildOfQuestionInstitutionsTemplateFormInterface>>;
|
|
16
19
|
}
|
|
17
20
|
export interface QuestionGroupChildOfQuestionInstitutionsTemplateFormInterface {
|