@reqquest/ui 1.0.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.
- package/README.md +3 -0
- package/dist/api.d.ts +595 -0
- package/dist/api.js +618 -0
- package/dist/components/ButtonLoadingIcon.svelte +27 -0
- package/dist/components/ButtonLoadingIcon.svelte.d.ts +18 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/dist/registry.d.ts +138 -0
- package/dist/registry.js +42 -0
- package/dist/stores/IStateStore.d.ts +5 -0
- package/dist/stores/IStateStore.js +1 -0
- package/dist/typed-client/index.d.ts +25 -0
- package/dist/typed-client/index.js +23 -0
- package/dist/typed-client/runtime/batcher.d.ts +105 -0
- package/dist/typed-client/runtime/batcher.js +203 -0
- package/dist/typed-client/runtime/createClient.d.ts +17 -0
- package/dist/typed-client/runtime/createClient.js +24 -0
- package/dist/typed-client/runtime/error.d.ts +18 -0
- package/dist/typed-client/runtime/error.js +19 -0
- package/dist/typed-client/runtime/fetcher.d.ts +10 -0
- package/dist/typed-client/runtime/fetcher.js +65 -0
- package/dist/typed-client/runtime/generateGraphqlOperation.d.ts +30 -0
- package/dist/typed-client/runtime/generateGraphqlOperation.js +128 -0
- package/dist/typed-client/runtime/index.d.ts +11 -0
- package/dist/typed-client/runtime/index.js +10 -0
- package/dist/typed-client/runtime/linkTypeMap.d.ts +9 -0
- package/dist/typed-client/runtime/linkTypeMap.js +95 -0
- package/dist/typed-client/runtime/typeSelection.d.ts +28 -0
- package/dist/typed-client/runtime/typeSelection.js +3 -0
- package/dist/typed-client/runtime/types.d.ts +55 -0
- package/dist/typed-client/runtime/types.js +2 -0
- package/dist/typed-client/schema.d.ts +1483 -0
- package/dist/typed-client/schema.graphql +1217 -0
- package/dist/typed-client/schema.js +313 -0
- package/dist/typed-client/types.d.ts +540 -0
- package/dist/typed-client/types.js +1368 -0
- package/dist/util.d.ts +2 -0
- package/dist/util.js +3 -0
- package/package.json +56 -0
|
@@ -0,0 +1,1483 @@
|
|
|
1
|
+
export type Scalars = {
|
|
2
|
+
Boolean: boolean;
|
|
3
|
+
DateTime: string;
|
|
4
|
+
Float: number;
|
|
5
|
+
ID: string;
|
|
6
|
+
JsonData: Record<string, any>;
|
|
7
|
+
String: string;
|
|
8
|
+
};
|
|
9
|
+
export interface Access {
|
|
10
|
+
/** Current user may create a new app request, either for themselves or on behalf of another user. */
|
|
11
|
+
createAppRequest: Scalars['Boolean'];
|
|
12
|
+
/** Current user is permitted to create new periods in the period management UI. */
|
|
13
|
+
createPeriod: Scalars['Boolean'];
|
|
14
|
+
/** Current user is permitted to create new roles in the role management UI. */
|
|
15
|
+
createRole: Scalars['Boolean'];
|
|
16
|
+
/** Current user is permitted to view the app request list. */
|
|
17
|
+
viewAppRequestList: Scalars['Boolean'];
|
|
18
|
+
/** Current user is permitted to view the applicant dashboard. */
|
|
19
|
+
viewApplicantDashboard: Scalars['Boolean'];
|
|
20
|
+
/** Current user is permitted to view the period management UI. */
|
|
21
|
+
viewPeriodManagement: Scalars['Boolean'];
|
|
22
|
+
/** Current user is permitted to view the reviewer dashboard. */
|
|
23
|
+
viewReviewerInterface: Scalars['Boolean'];
|
|
24
|
+
/** Current user is permitted to view the role management UI. */
|
|
25
|
+
viewRoleManagement: Scalars['Boolean'];
|
|
26
|
+
__typename: 'Access';
|
|
27
|
+
}
|
|
28
|
+
export interface AccessControl {
|
|
29
|
+
description: Scalars['String'];
|
|
30
|
+
name: Scalars['String'];
|
|
31
|
+
__typename: 'AccessControl';
|
|
32
|
+
}
|
|
33
|
+
export interface AccessGrantTag {
|
|
34
|
+
category: Scalars['String'];
|
|
35
|
+
categoryLabel: Scalars['String'];
|
|
36
|
+
label: Scalars['String'];
|
|
37
|
+
tag: Scalars['String'];
|
|
38
|
+
__typename: 'AccessGrantTag';
|
|
39
|
+
}
|
|
40
|
+
export interface AccessRole {
|
|
41
|
+
actions: RoleActions;
|
|
42
|
+
/** A description of the grant. This is not used for anything, but can be useful for admins to understand what the grant was trying to do. */
|
|
43
|
+
description: (Scalars['String'] | null);
|
|
44
|
+
grants: AccessRoleGrant[];
|
|
45
|
+
groups: Scalars['String'][];
|
|
46
|
+
id: Scalars['ID'];
|
|
47
|
+
name: Scalars['String'];
|
|
48
|
+
scope: (Scalars['String'] | null);
|
|
49
|
+
__typename: 'AccessRole';
|
|
50
|
+
}
|
|
51
|
+
export interface AccessRoleGrant {
|
|
52
|
+
actions: AccessRoleGrantActions;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* If true, this grant allows the action specified by the selected controls. If false, it removes
|
|
56
|
+
* the controls.
|
|
57
|
+
*
|
|
58
|
+
* Removing a control only happens within the context of a single role. If another role grants the
|
|
59
|
+
* same control, the action is allowed. This is more of an exception system than a denial
|
|
60
|
+
* system. So you can do something like add the "view" control to the "movie" subject type in one
|
|
61
|
+
* grant, and then in a second grant in the same role, remove it from "The Princess Bride". Now you
|
|
62
|
+
* have a role that grants "view" on all movies _except_ The Princess Bride. If the user has another role
|
|
63
|
+
* that grants "view" on The Princess Bride (or on all movies), they can view it based on that other role.
|
|
64
|
+
*
|
|
65
|
+
*/
|
|
66
|
+
allow: Scalars['Boolean'];
|
|
67
|
+
controls: Scalars['String'][];
|
|
68
|
+
id: Scalars['ID'];
|
|
69
|
+
/** The type of subject this grant applies to, e.g. "movie". */
|
|
70
|
+
subjectType: AccessSubjectType;
|
|
71
|
+
tags: AccessGrantTag[];
|
|
72
|
+
__typename: 'AccessRoleGrant';
|
|
73
|
+
}
|
|
74
|
+
export interface AccessRoleGrantActions {
|
|
75
|
+
delete: Scalars['Boolean'];
|
|
76
|
+
update: Scalars['Boolean'];
|
|
77
|
+
__typename: 'AccessRoleGrantActions';
|
|
78
|
+
}
|
|
79
|
+
export interface AccessRoleValidatedResponse {
|
|
80
|
+
accessRole: (AccessRole | null);
|
|
81
|
+
messages: MutationMessage[];
|
|
82
|
+
/** True if the mutation succeeded (e.g. saved data or passed validation), even if there were warnings. */
|
|
83
|
+
success: Scalars['Boolean'];
|
|
84
|
+
__typename: 'AccessRoleValidatedResponse';
|
|
85
|
+
}
|
|
86
|
+
export interface AccessSubjectType {
|
|
87
|
+
/** A list of all possible controls for this subjectType. Use this to populate the control dropdown when creating a grant. */
|
|
88
|
+
controls: AccessControl[];
|
|
89
|
+
/** A longer explanation of the subject type for display in the role management interface. */
|
|
90
|
+
description: (Scalars['String'] | null);
|
|
91
|
+
name: Scalars['String'];
|
|
92
|
+
tags: AccessTagCategory[];
|
|
93
|
+
/** A slightly longer version of the subject type's name, for display in the role management interface. */
|
|
94
|
+
title: Scalars['String'];
|
|
95
|
+
__typename: 'AccessSubjectType';
|
|
96
|
+
}
|
|
97
|
+
export interface AccessTag {
|
|
98
|
+
label: Scalars['String'];
|
|
99
|
+
value: Scalars['String'];
|
|
100
|
+
__typename: 'AccessTag';
|
|
101
|
+
}
|
|
102
|
+
export interface AccessTagCategory {
|
|
103
|
+
category: Scalars['String'];
|
|
104
|
+
description: (Scalars['String'] | null);
|
|
105
|
+
label: Scalars['String'];
|
|
106
|
+
listable: Scalars['Boolean'];
|
|
107
|
+
/** A list of all possible tags for this category. Use this to populate the tag dropdown when creating a grant. */
|
|
108
|
+
tags: AccessTag[];
|
|
109
|
+
__typename: 'AccessTagCategory';
|
|
110
|
+
}
|
|
111
|
+
/** A user that has or once had access to the system. */
|
|
112
|
+
export interface AccessUser {
|
|
113
|
+
fullname: Scalars['String'];
|
|
114
|
+
groups: Scalars['String'][];
|
|
115
|
+
login: Scalars['ID'];
|
|
116
|
+
otherIdentifiers: AccessUserIdentifier[];
|
|
117
|
+
/** A JSON object containing any information about the user that the implementing application wants to store. Could be useful for constructing personalized UI. */
|
|
118
|
+
otherInfo: (Scalars['JsonData'] | null);
|
|
119
|
+
roles: AccessRole;
|
|
120
|
+
__typename: 'AccessUser';
|
|
121
|
+
}
|
|
122
|
+
/** A label and ID pair for an external user unique ID. For example, { label: "Student ID", id: "123456" } */
|
|
123
|
+
export interface AccessUserIdentifier {
|
|
124
|
+
/** The unique ID for this identifier, e.g. "123456". */
|
|
125
|
+
id: Scalars['ID'];
|
|
126
|
+
/** The label for this identifier, e.g. "Student ID". */
|
|
127
|
+
label: Scalars['String'];
|
|
128
|
+
__typename: 'AccessUserIdentifier';
|
|
129
|
+
}
|
|
130
|
+
/** Represents a group of applications all being applied for at the same time. As part of the request, multiple applications will be created and either eliminated as ineligible or submitted for approval. */
|
|
131
|
+
export interface AppRequest {
|
|
132
|
+
/** Actions the user can take on this app request. */
|
|
133
|
+
actions: AppRequestActions;
|
|
134
|
+
/** The activity log for this app request. This is a list of actions taken on the app request, such as submission, updating prompts, make an offer, add a note, etc. It will be sorted by the date of the activity in descending order. */
|
|
135
|
+
activity: AppRequestActivity[];
|
|
136
|
+
applicant: AccessUser;
|
|
137
|
+
applications: Application[];
|
|
138
|
+
/** Date that this request was considered closed and no longer editable. If active or re-opened, will be null. If closed again, will be the second closure date. */
|
|
139
|
+
closedAt: (Scalars['DateTime'] | null);
|
|
140
|
+
createdAt: Scalars['DateTime'];
|
|
141
|
+
/** All data that has been gathered from the user for this request. It is a Record whose properties are the prompt keys and values are the data gathered by the corresponding prompt dialog. */
|
|
142
|
+
data: Scalars['JsonData'];
|
|
143
|
+
id: Scalars['ID'];
|
|
144
|
+
/** Indexes associated with the App Request. These are pieces of data extracted from the App Request by individual prompts in the ReqQuest project. They have several uses such as filtering App Requests and enriching list views. */
|
|
145
|
+
indexCategories: AppRequestIndexCategory[];
|
|
146
|
+
/** The period this appRequest is associated with. */
|
|
147
|
+
period: Period;
|
|
148
|
+
/** Retrieve a specific prompt by its ID. This is useful for the UI to get the full prompt data and configuration when trying to edit an individual prompt. We don't want to be downloading all the config data for everything up front. */
|
|
149
|
+
prompt: RequirementPrompt;
|
|
150
|
+
status: AppRequestStatus;
|
|
151
|
+
/** The most pertinent status reason for this app request. The logic is complicated and depends on the AppRequest's status. */
|
|
152
|
+
statusReason: (Scalars['String'] | null);
|
|
153
|
+
updatedAt: Scalars['DateTime'];
|
|
154
|
+
__typename: 'AppRequest';
|
|
155
|
+
}
|
|
156
|
+
export interface AppRequestActions {
|
|
157
|
+
/** User may cancel this app request as the owner. Separate from closing as a reviewer/admin. */
|
|
158
|
+
cancel: Scalars['Boolean'];
|
|
159
|
+
/** User may close this app request as a reviewer/admin. Separate from cancelling as the app request owner. */
|
|
160
|
+
close: Scalars['Boolean'];
|
|
161
|
+
/** User may make an offer on this app request. */
|
|
162
|
+
offer: Scalars['Boolean'];
|
|
163
|
+
/** User may reopen this app request, whether as the owner or as a reviewer/admin. */
|
|
164
|
+
reopen: Scalars['Boolean'];
|
|
165
|
+
/** User may return this app request to the applicant phase. */
|
|
166
|
+
return: Scalars['Boolean'];
|
|
167
|
+
/** Whether the user can view this app request as a reviewer. */
|
|
168
|
+
review: Scalars['Boolean'];
|
|
169
|
+
/** User may submit this app request either as or on behalf of the owner. */
|
|
170
|
+
submit: Scalars['Boolean'];
|
|
171
|
+
__typename: 'AppRequestActions';
|
|
172
|
+
}
|
|
173
|
+
export interface AppRequestActivity {
|
|
174
|
+
action: Scalars['String'];
|
|
175
|
+
/** The app request this activity is associated with. */
|
|
176
|
+
appRequest: AppRequest;
|
|
177
|
+
/** The date and time when the action occurred. */
|
|
178
|
+
createdAt: Scalars['DateTime'];
|
|
179
|
+
/** A JSON object containing additional data about the activity. This could be filtered but different actions would place different data here so it is not strongly typed. */
|
|
180
|
+
data: (Scalars['JsonData'] | null);
|
|
181
|
+
/** A detailed description of the activity. This is not meant to be filtered and could contain specific details about the action. */
|
|
182
|
+
description: (Scalars['String'] | null);
|
|
183
|
+
id: Scalars['ID'];
|
|
184
|
+
/** If this activity was performed by an impersonated user, this will be the user that did the impersonation. */
|
|
185
|
+
impersonatedBy: (AccessUser | null);
|
|
186
|
+
/** The user that performed the activity. */
|
|
187
|
+
user: AccessUser;
|
|
188
|
+
__typename: 'AppRequestActivity';
|
|
189
|
+
}
|
|
190
|
+
/** This represents an index category attached to an app request. Its tagStrings property contains the tag values that have been extracted from the app request data. */
|
|
191
|
+
export interface AppRequestIndexCategory {
|
|
192
|
+
/** If this is > 0, the index values should be shown on the main app request list page, sorted by this priority in descending order. */
|
|
193
|
+
appRequestListPriority: (Scalars['Float'] | null);
|
|
194
|
+
/** If this is > 0, the index values should be shown on the applicant dashboard, sorted by this priority in descending order. */
|
|
195
|
+
applicantDashboardPriority: (Scalars['Float'] | null);
|
|
196
|
+
category: Scalars['String'];
|
|
197
|
+
categoryLabel: Scalars['String'];
|
|
198
|
+
/** If this is > 0, the index values should be shown on the list filters, sorted by this priority in descending order. */
|
|
199
|
+
listFiltersPriority: (Scalars['Float'] | null);
|
|
200
|
+
listable: Scalars['Boolean'];
|
|
201
|
+
/** If this is > 0, the index values should be shown on the reviewer dashboard, sorted by this priority in descending order. */
|
|
202
|
+
reviewerDashboardPriority: (Scalars['Float'] | null);
|
|
203
|
+
values: IndexValue[];
|
|
204
|
+
__typename: 'AppRequestIndexCategory';
|
|
205
|
+
}
|
|
206
|
+
/** This is used to indicate where the index values should be displayed. */
|
|
207
|
+
export type AppRequestIndexDestination = 'APPLICANT_DASHBOARD' | 'APP_REQUEST_LIST' | 'LIST_FILTERS' | 'REVIEWER_DASHBOARD';
|
|
208
|
+
/**
|
|
209
|
+
*
|
|
210
|
+
* The status of an appRequest. This status is computed based on the "dbStatus" recorded in
|
|
211
|
+
* the database and the status of each application.
|
|
212
|
+
*
|
|
213
|
+
*/
|
|
214
|
+
export type AppRequestStatus = 'ACCEPTANCE' | 'ACCEPTED' | 'APPROVAL' | 'APPROVED' | 'CANCELLED' | 'DISQUALIFIED' | 'NOT_ACCEPTED' | 'NOT_APPROVED' | 'PREAPPROVAL' | 'READY_TO_SUBMIT' | 'STARTED' | 'WITHDRAWN';
|
|
215
|
+
/** An application represents the applicant applying to a specific program. Each appRequest has multiple applications - one per program defined in the system. Some applications are mutually exclusive and/or will be eliminated early based on PREQUAL requirements, but they all technically exist in the data model - there is no concept of picking one application over another, just two applications where one dies and the other survives. */
|
|
216
|
+
export interface Application {
|
|
217
|
+
actions: ApplicationActions;
|
|
218
|
+
id: Scalars['ID'];
|
|
219
|
+
/** The navigation title of the program this application is for. */
|
|
220
|
+
navTitle: Scalars['String'];
|
|
221
|
+
requirements: ApplicationRequirement[];
|
|
222
|
+
status: ApplicationStatus;
|
|
223
|
+
/** When one of the application's requirements is failing or throwing a warning, its reason will be copied here for convenience. If there is a warning and then later a failure, the failure reason will win. */
|
|
224
|
+
statusReason: (Scalars['String'] | null);
|
|
225
|
+
/** The title of the program this application is for. */
|
|
226
|
+
title: Scalars['String'];
|
|
227
|
+
__typename: 'Application';
|
|
228
|
+
}
|
|
229
|
+
export interface ApplicationActions {
|
|
230
|
+
viewAsReviewer: Scalars['Boolean'];
|
|
231
|
+
__typename: 'ApplicationActions';
|
|
232
|
+
}
|
|
233
|
+
/** The specific instance of a requirement on a particular application. Stores the status of the requirement, e.g. being satisfied or not. */
|
|
234
|
+
export interface ApplicationRequirement {
|
|
235
|
+
application: Application;
|
|
236
|
+
/** The configuration data for this requirement in the app request's period. */
|
|
237
|
+
configurationData: (Scalars['JsonData'] | null);
|
|
238
|
+
/** An internal description of the requirement. Probably not shown to users. */
|
|
239
|
+
description: Scalars['String'];
|
|
240
|
+
id: Scalars['ID'];
|
|
241
|
+
/** A human and machine readable unique and stable identifier that we can use to add javascript logic to the evaluation of whether a requirement is satisfied. For example: "gi_ch33_must_be_post911" */
|
|
242
|
+
key: Scalars['String'];
|
|
243
|
+
/** A human readable title for the requirement in the navigation. You probably want it to be shorter than the full title. If not provided, the title will be used. */
|
|
244
|
+
navTitle: Scalars['String'];
|
|
245
|
+
prompts: RequirementPrompt[];
|
|
246
|
+
/** When true, means that the requirement has not been made moot by an earlier requirement failing. It may still need to be hidden from navigation based on evaluatedInEarlierApplication. */
|
|
247
|
+
reachable: Scalars['Boolean'];
|
|
248
|
+
/** The smart title for this requirement in the app request's period. For instance, might be "Applicant must have GPA over 3.4" instead of the regular title "Applicant must meet GPA requirement". Will fall back to the regular title for any requirement that does not provide a smart title. */
|
|
249
|
+
smartTitle: Scalars['String'];
|
|
250
|
+
/** The status of the requirement. This is what will be shown to users. */
|
|
251
|
+
status: RequirementStatus;
|
|
252
|
+
/** The reason why the requirement is in the status it is in. This will be shown to the applicant. */
|
|
253
|
+
statusReason: (Scalars['String'] | null);
|
|
254
|
+
/** A human readable title for the requirement. This is what will be shown to users. */
|
|
255
|
+
title: Scalars['String'];
|
|
256
|
+
/** The type of requirement. This determines when the requirement is evaluated and who can see the requirement. */
|
|
257
|
+
type: RequirementType;
|
|
258
|
+
__typename: 'ApplicationRequirement';
|
|
259
|
+
}
|
|
260
|
+
/**
|
|
261
|
+
*
|
|
262
|
+
* The status of an application. This is usually a computed field, not stored in the database. The status
|
|
263
|
+
* is computed based on the status of the appRequest and of the requirements for the program. If
|
|
264
|
+
* the appRequest is CLOSED, the status should permanently match the ApplicationStatusDB instead of being
|
|
265
|
+
* computed. If the appRequest is CANCELLED, all applications should be CANCELLED as well.
|
|
266
|
+
*
|
|
267
|
+
*/
|
|
268
|
+
export type ApplicationStatus = 'ACCEPTANCE' | 'ACCEPTED' | 'APPROVAL' | 'APPROVED' | 'CANCELLED' | 'FAILED_PREQUAL' | 'FAILED_QUALIFICATION' | 'NOT_ACCEPTED' | 'NOT_APPROVED' | 'PREAPPROVAL' | 'PREQUAL' | 'QUALIFICATION' | 'READY_TO_SUBMIT' | 'WITHDRAWN';
|
|
269
|
+
export interface Configuration {
|
|
270
|
+
actions: ConfigurationAccess;
|
|
271
|
+
data: Scalars['JsonData'];
|
|
272
|
+
/** The key being configured. Could be a requirement or prompt key. */
|
|
273
|
+
key: Scalars['String'];
|
|
274
|
+
__typename: 'Configuration';
|
|
275
|
+
}
|
|
276
|
+
export interface ConfigurationAccess {
|
|
277
|
+
update: Scalars['Boolean'];
|
|
278
|
+
view: Scalars['Boolean'];
|
|
279
|
+
__typename: 'ConfigurationAccess';
|
|
280
|
+
}
|
|
281
|
+
/** This represents an index as registered by one of the project's prompt definitions. */
|
|
282
|
+
export interface IndexCategory {
|
|
283
|
+
/** If this is > 0, the index values should be shown on the main app request list page, sorted by this priority in descending order. */
|
|
284
|
+
appRequestListPriority: (Scalars['Float'] | null);
|
|
285
|
+
/** If this is > 0, the index values should be shown on the applicant dashboard, sorted by this priority in descending order. */
|
|
286
|
+
applicantDashboardPriority: (Scalars['Float'] | null);
|
|
287
|
+
category: Scalars['String'];
|
|
288
|
+
categoryLabel: Scalars['String'];
|
|
289
|
+
/** If this is > 0, the index values should be shown on the list filters, sorted by this priority in descending order. */
|
|
290
|
+
listFiltersPriority: (Scalars['Float'] | null);
|
|
291
|
+
listable: Scalars['Boolean'];
|
|
292
|
+
/** If this is > 0, the index values should be shown on the reviewer dashboard, sorted by this priority in descending order. */
|
|
293
|
+
reviewerDashboardPriority: (Scalars['Float'] | null);
|
|
294
|
+
values: IndexValue[];
|
|
295
|
+
__typename: 'IndexCategory';
|
|
296
|
+
}
|
|
297
|
+
export interface IndexValue {
|
|
298
|
+
label: Scalars['String'];
|
|
299
|
+
value: Scalars['String'];
|
|
300
|
+
__typename: 'IndexValue';
|
|
301
|
+
}
|
|
302
|
+
export interface Mutation {
|
|
303
|
+
/** Add a note to the app request. */
|
|
304
|
+
addNote: ValidatedAppRequestResponse;
|
|
305
|
+
/** Make an offer on the app request. */
|
|
306
|
+
offerAppRequest: ValidatedAppRequestResponse;
|
|
307
|
+
roleAddGrant: AccessRoleValidatedResponse;
|
|
308
|
+
roleCreate: AccessRoleValidatedResponse;
|
|
309
|
+
roleDelete: ValidatedResponse;
|
|
310
|
+
roleDeleteGrant: AccessRoleValidatedResponse;
|
|
311
|
+
roleUpdate: AccessRoleValidatedResponse;
|
|
312
|
+
roleUpdateGrant: AccessRoleValidatedResponse;
|
|
313
|
+
/** Submit the app request. */
|
|
314
|
+
submitAppRequest: ValidatedAppRequestResponse;
|
|
315
|
+
updateConfiguration: ValidatedConfigurationResponse;
|
|
316
|
+
updatePeriod: ValidatedPeriodResponse;
|
|
317
|
+
/** Update the data for a prompt in this app request. */
|
|
318
|
+
updatePrompt: ValidatedAppRequestResponse;
|
|
319
|
+
__typename: 'Mutation';
|
|
320
|
+
}
|
|
321
|
+
export interface MutationMessage {
|
|
322
|
+
/** The path to the arg that produced the error. Dot-separated (lodash.get compatible) if it is deep inside an input type. Null if no particular arg can be blamed for the error. */
|
|
323
|
+
arg: (Scalars['String'] | null);
|
|
324
|
+
/** An error message to be shown to the end user, with the context of the given arg. */
|
|
325
|
+
message: Scalars['String'];
|
|
326
|
+
/** The type of error message. See the enum descriptions for more detail. */
|
|
327
|
+
type: MutationMessageType;
|
|
328
|
+
__typename: 'MutationMessage';
|
|
329
|
+
}
|
|
330
|
+
export type MutationMessageType = 'error' | 'success' | 'warning';
|
|
331
|
+
export interface Period {
|
|
332
|
+
actions: PeriodActions;
|
|
333
|
+
/** This is useful for filtering out periods that are no longer useful. For instance, a window might close applications after 2 weeks but the reviewers could be working. */
|
|
334
|
+
archiveDate: (Scalars['DateTime'] | null);
|
|
335
|
+
/** Date that this period closes for applications. Some periods do not set a close date. */
|
|
336
|
+
closeDate: (Scalars['DateTime'] | null);
|
|
337
|
+
/** Unique identifier for this period that references an external system. Ideally human readable. */
|
|
338
|
+
code: (Scalars['String'] | null);
|
|
339
|
+
configurations: Configuration[];
|
|
340
|
+
id: Scalars['ID'];
|
|
341
|
+
/** Name for this period. Will be displayed to applicants if they create an App Request while two periods are simultaneously open. */
|
|
342
|
+
name: Scalars['String'];
|
|
343
|
+
/** Date that this period opens for applications. */
|
|
344
|
+
openDate: Scalars['DateTime'];
|
|
345
|
+
programs: PeriodProgram[];
|
|
346
|
+
prompts: PeriodPrompt[];
|
|
347
|
+
requirements: PeriodProgramRequirement[];
|
|
348
|
+
__typename: 'Period';
|
|
349
|
+
}
|
|
350
|
+
export interface PeriodActions {
|
|
351
|
+
update: Scalars['Boolean'];
|
|
352
|
+
view: Scalars['Boolean'];
|
|
353
|
+
__typename: 'PeriodActions';
|
|
354
|
+
}
|
|
355
|
+
export interface PeriodProgram {
|
|
356
|
+
actions: PeriodProgramActions;
|
|
357
|
+
/** Whether the program is enabled in this period. This is set by the system administrator. */
|
|
358
|
+
enabled: Scalars['Boolean'];
|
|
359
|
+
group: PeriodProgramActions;
|
|
360
|
+
key: Scalars['ID'];
|
|
361
|
+
navTitle: Scalars['String'];
|
|
362
|
+
period: Period;
|
|
363
|
+
requirements: PeriodProgramRequirement[];
|
|
364
|
+
title: Scalars['String'];
|
|
365
|
+
__typename: 'PeriodProgram';
|
|
366
|
+
}
|
|
367
|
+
export interface PeriodProgramActions {
|
|
368
|
+
configure: Scalars['Boolean'];
|
|
369
|
+
__typename: 'PeriodProgramActions';
|
|
370
|
+
}
|
|
371
|
+
export interface PeriodProgramRequirement {
|
|
372
|
+
/** The configuration for this requirement in the period. */
|
|
373
|
+
configuration: Configuration;
|
|
374
|
+
/** An internal description of the requirement. Probably not shown to users. */
|
|
375
|
+
description: Scalars['String'];
|
|
376
|
+
/** Whether the requirement is enabled in this period. This is set by the system administrator. */
|
|
377
|
+
enabled: Scalars['Boolean'];
|
|
378
|
+
/** A human and machine readable unique and stable identifier that we can use to add javascript logic to the evaluation of whether a requirement is satisfied. For example: "gi_ch33_must_be_post911" */
|
|
379
|
+
key: Scalars['String'];
|
|
380
|
+
/** A human readable title for the requirement in the navigation. You probably want it to be shorter than the full title. If not provided, the title will be used. */
|
|
381
|
+
navTitle: Scalars['String'];
|
|
382
|
+
prompts: PeriodPrompt[];
|
|
383
|
+
/** A human readable title for the requirement. This is what will be shown to users. */
|
|
384
|
+
title: Scalars['String'];
|
|
385
|
+
/** The type of requirement. This determines when the requirement is evaluated and who can see the requirement. */
|
|
386
|
+
type: RequirementType;
|
|
387
|
+
__typename: 'PeriodProgramRequirement';
|
|
388
|
+
}
|
|
389
|
+
export interface PeriodPrompt {
|
|
390
|
+
/** The configuration for this prompt in the given period. */
|
|
391
|
+
configuration: Configuration;
|
|
392
|
+
/** A brief description of the prompt. This should be shown to administrators to help explain the full meaning of the prompt while assigning permissions or editing its configuration. */
|
|
393
|
+
description: (Scalars['String'] | null);
|
|
394
|
+
/** A human and machine readable identifier for the prompt. Will be used to match prompt data with UI and API code that handles it. */
|
|
395
|
+
key: Scalars['String'];
|
|
396
|
+
/** A human readable title for the prompt in the navigation. You probably want it to be shorter than the full title. If not provided, the title will be used. */
|
|
397
|
+
navTitle: Scalars['String'];
|
|
398
|
+
periodId: Scalars['String'];
|
|
399
|
+
/** A human readable title for the prompt. This is what will be shown to users. */
|
|
400
|
+
title: Scalars['String'];
|
|
401
|
+
__typename: 'PeriodPrompt';
|
|
402
|
+
}
|
|
403
|
+
export interface Program {
|
|
404
|
+
key: Scalars['ID'];
|
|
405
|
+
navTitle: Scalars['String'];
|
|
406
|
+
title: Scalars['String'];
|
|
407
|
+
__typename: 'Program';
|
|
408
|
+
}
|
|
409
|
+
export interface ProgramGroup {
|
|
410
|
+
key: Scalars['ID'];
|
|
411
|
+
/** A human readable title for the program group in the navigation. You may want it to be shorter than the full title. If not provided, the title will be used. */
|
|
412
|
+
navTitle: Scalars['String'];
|
|
413
|
+
programs: Program[];
|
|
414
|
+
/** A human readable title for the program group. This will be shown to users. */
|
|
415
|
+
title: Scalars['String'];
|
|
416
|
+
__typename: 'ProgramGroup';
|
|
417
|
+
}
|
|
418
|
+
/** The visibility of a prompt on a request. This is used to determine whether the prompt should be shown to the user in the UI. */
|
|
419
|
+
export type PromptVisibility = 'APPLICATION_DUPE' | 'AUTOMATION' | 'AVAILABLE' | 'REQUEST_DUPE' | 'UNREACHABLE';
|
|
420
|
+
export interface Query {
|
|
421
|
+
/**
|
|
422
|
+
*
|
|
423
|
+
* This is the global access object. Each field represents a global permission
|
|
424
|
+
* like the ability to view the role management interface.
|
|
425
|
+
*
|
|
426
|
+
*/
|
|
427
|
+
access: Access;
|
|
428
|
+
accessUsers: AccessUser[];
|
|
429
|
+
appRequestIndexes: IndexCategory[];
|
|
430
|
+
appRequests: AppRequest[];
|
|
431
|
+
periods: Period[];
|
|
432
|
+
programGroups: ProgramGroup[];
|
|
433
|
+
programs: Program[];
|
|
434
|
+
roles: AccessRole[];
|
|
435
|
+
/** A list of all possible scopes. Scopes are used to limit users when they are accessing the system through an alternate UI or login method. For instance, if you generate an authentication token to give to a third party, it may have a scope identifying that third party and limiting their access even though they are acting as you. Roles must match the token scope in order to apply permissions. */
|
|
436
|
+
scopes: Scalars['String'][];
|
|
437
|
+
/** This is where you get information about the authorization system. Each grant will be associated with one of these subjectTypes and optionally a list of subject instances. The grant will also have a set of controls, and each control will have an optional set of tags. The tags are used to limit the scope of the grant. */
|
|
438
|
+
subjectTypes: AccessSubjectType[];
|
|
439
|
+
__typename: 'Query';
|
|
440
|
+
}
|
|
441
|
+
/** A RequestPrompt is an instance of a Prompt on a particular request. Once the user has answered the prompt, it contains the answer and the prompt status on that request. */
|
|
442
|
+
export interface RequirementPrompt {
|
|
443
|
+
/** Actions that the user can take on this prompt. */
|
|
444
|
+
actions: RequirementPromptActions;
|
|
445
|
+
/** Whether the prompt has been answered on this request. */
|
|
446
|
+
answered: Scalars['Boolean'];
|
|
447
|
+
/** The configuration data for this prompt in the app request's period. */
|
|
448
|
+
configurationData: Scalars['JsonData'];
|
|
449
|
+
/** All the configuration data that could be relevant for this prompt. This includes its own config, and also the config data for any requirements and programs that are related to it. */
|
|
450
|
+
configurationRelatedData: Scalars['JsonData'];
|
|
451
|
+
/** The data that has been gathered from the user in response to this prompt. The schema is controlled by the question's implementation. */
|
|
452
|
+
data: (Scalars['JsonData'] | null);
|
|
453
|
+
/** A brief description of the prompt. This should be shown to administrators to help explain the full meaning of the prompt while assigning permissions or editing its configuration. */
|
|
454
|
+
description: (Scalars['String'] | null);
|
|
455
|
+
/** Any data that the API needs to provide to the UI to display the prompt properly. For instance, if the prompt text is in the database and able to be modified by admins, the UI can't hardcode the prompt text and needs it from the API. Could also be used to pull reference information from an external system, e.g. a student's course schedule, for display in the prompt dialog. */
|
|
456
|
+
fetchedData: (Scalars['JsonData'] | null);
|
|
457
|
+
id: Scalars['ID'];
|
|
458
|
+
/** When true, this prompt has been invalidated by the answer to another prompt. The `answered` field should remain false until the user specifically answers this prompt again, regardless of the output of the definition's `complete` method. */
|
|
459
|
+
invalidated: Scalars['Boolean'];
|
|
460
|
+
/** A human and machine readable identifier for the prompt. Will be used to match prompt data with UI and API code that handles it. */
|
|
461
|
+
key: Scalars['String'];
|
|
462
|
+
/** A human readable title for the prompt in the navigation. You probably want it to be shorter than the full title. If not provided, the title will be used. */
|
|
463
|
+
navTitle: Scalars['String'];
|
|
464
|
+
/** Preload data that has been generated according to the prompt definition. For example, a prompt might query the database for answers given in previous requests or query an external API to learn facts about the user. */
|
|
465
|
+
preloadData: (Scalars['JsonData'] | null);
|
|
466
|
+
/** The requirement that this prompt is associated with. */
|
|
467
|
+
requirement: ApplicationRequirement;
|
|
468
|
+
/** A human readable title for the prompt. This is what will be shown to users. */
|
|
469
|
+
title: Scalars['String'];
|
|
470
|
+
/** The visibility of the prompt on the request. This is used to determine whether the prompt should be shown to the user in the UI. */
|
|
471
|
+
visibility: PromptVisibility;
|
|
472
|
+
__typename: 'RequirementPrompt';
|
|
473
|
+
}
|
|
474
|
+
export interface RequirementPromptActions {
|
|
475
|
+
update: Scalars['Boolean'];
|
|
476
|
+
__typename: 'RequirementPromptActions';
|
|
477
|
+
}
|
|
478
|
+
export type RequirementStatus = 'DISQUALIFYING' | 'MET' | 'NOT_APPLICABLE' | 'PENDING' | 'WARNING';
|
|
479
|
+
export type RequirementType = 'ACCEPTANCE' | 'APPROVAL' | 'POSTQUAL' | 'PREAPPROVAL' | 'PREQUAL' | 'QUALIFICATION';
|
|
480
|
+
export interface RoleActions {
|
|
481
|
+
delete: Scalars['Boolean'];
|
|
482
|
+
update: Scalars['Boolean'];
|
|
483
|
+
__typename: 'RoleActions';
|
|
484
|
+
}
|
|
485
|
+
export interface ValidatedAppRequestResponse {
|
|
486
|
+
appRequest: AppRequest;
|
|
487
|
+
messages: MutationMessage[];
|
|
488
|
+
/** True if the mutation succeeded (e.g. saved data or passed validation), even if there were warnings. */
|
|
489
|
+
success: Scalars['Boolean'];
|
|
490
|
+
__typename: 'ValidatedAppRequestResponse';
|
|
491
|
+
}
|
|
492
|
+
export interface ValidatedConfigurationResponse {
|
|
493
|
+
configuration: (Configuration | null);
|
|
494
|
+
messages: MutationMessage[];
|
|
495
|
+
/** True if the mutation succeeded (e.g. saved data or passed validation), even if there were warnings. */
|
|
496
|
+
success: Scalars['Boolean'];
|
|
497
|
+
__typename: 'ValidatedConfigurationResponse';
|
|
498
|
+
}
|
|
499
|
+
export interface ValidatedPeriodResponse {
|
|
500
|
+
messages: MutationMessage[];
|
|
501
|
+
period: (Period | null);
|
|
502
|
+
/** True if the mutation succeeded (e.g. saved data or passed validation), even if there were warnings. */
|
|
503
|
+
success: Scalars['Boolean'];
|
|
504
|
+
__typename: 'ValidatedPeriodResponse';
|
|
505
|
+
}
|
|
506
|
+
export interface ValidatedResponse {
|
|
507
|
+
messages: MutationMessage[];
|
|
508
|
+
/** True if the mutation succeeded (e.g. saved data or passed validation), even if there were warnings. */
|
|
509
|
+
success: Scalars['Boolean'];
|
|
510
|
+
__typename: 'ValidatedResponse';
|
|
511
|
+
}
|
|
512
|
+
export interface AccessGenqlSelection {
|
|
513
|
+
/** Current user may create a new app request, either for themselves or on behalf of another user. */
|
|
514
|
+
createAppRequest?: boolean | number;
|
|
515
|
+
/** Current user is permitted to create new periods in the period management UI. */
|
|
516
|
+
createPeriod?: boolean | number;
|
|
517
|
+
/** Current user is permitted to create new roles in the role management UI. */
|
|
518
|
+
createRole?: boolean | number;
|
|
519
|
+
/** Current user is permitted to view the app request list. */
|
|
520
|
+
viewAppRequestList?: boolean | number;
|
|
521
|
+
/** Current user is permitted to view the applicant dashboard. */
|
|
522
|
+
viewApplicantDashboard?: boolean | number;
|
|
523
|
+
/** Current user is permitted to view the period management UI. */
|
|
524
|
+
viewPeriodManagement?: boolean | number;
|
|
525
|
+
/** Current user is permitted to view the reviewer dashboard. */
|
|
526
|
+
viewReviewerInterface?: boolean | number;
|
|
527
|
+
/** Current user is permitted to view the role management UI. */
|
|
528
|
+
viewRoleManagement?: boolean | number;
|
|
529
|
+
__typename?: boolean | number;
|
|
530
|
+
__scalar?: boolean | number;
|
|
531
|
+
}
|
|
532
|
+
export interface AccessControlGenqlSelection {
|
|
533
|
+
description?: boolean | number;
|
|
534
|
+
name?: boolean | number;
|
|
535
|
+
__typename?: boolean | number;
|
|
536
|
+
__scalar?: boolean | number;
|
|
537
|
+
}
|
|
538
|
+
export interface AccessGrantTagGenqlSelection {
|
|
539
|
+
category?: boolean | number;
|
|
540
|
+
categoryLabel?: boolean | number;
|
|
541
|
+
label?: boolean | number;
|
|
542
|
+
tag?: boolean | number;
|
|
543
|
+
__typename?: boolean | number;
|
|
544
|
+
__scalar?: boolean | number;
|
|
545
|
+
}
|
|
546
|
+
export interface AccessRoleGenqlSelection {
|
|
547
|
+
actions?: RoleActionsGenqlSelection;
|
|
548
|
+
/** A description of the grant. This is not used for anything, but can be useful for admins to understand what the grant was trying to do. */
|
|
549
|
+
description?: boolean | number;
|
|
550
|
+
grants?: AccessRoleGrantGenqlSelection;
|
|
551
|
+
groups?: boolean | number;
|
|
552
|
+
id?: boolean | number;
|
|
553
|
+
name?: boolean | number;
|
|
554
|
+
scope?: boolean | number;
|
|
555
|
+
__typename?: boolean | number;
|
|
556
|
+
__scalar?: boolean | number;
|
|
557
|
+
}
|
|
558
|
+
export interface AccessRoleFilter {
|
|
559
|
+
groups?: (Scalars['String'][] | null);
|
|
560
|
+
ids?: (Scalars['ID'][] | null);
|
|
561
|
+
names?: (Scalars['String'][] | null);
|
|
562
|
+
scopes?: (Scalars['String'][] | null);
|
|
563
|
+
}
|
|
564
|
+
export interface AccessRoleGrantGenqlSelection {
|
|
565
|
+
actions?: AccessRoleGrantActionsGenqlSelection;
|
|
566
|
+
/**
|
|
567
|
+
*
|
|
568
|
+
* If true, this grant allows the action specified by the selected controls. If false, it removes
|
|
569
|
+
* the controls.
|
|
570
|
+
*
|
|
571
|
+
* Removing a control only happens within the context of a single role. If another role grants the
|
|
572
|
+
* same control, the action is allowed. This is more of an exception system than a denial
|
|
573
|
+
* system. So you can do something like add the "view" control to the "movie" subject type in one
|
|
574
|
+
* grant, and then in a second grant in the same role, remove it from "The Princess Bride". Now you
|
|
575
|
+
* have a role that grants "view" on all movies _except_ The Princess Bride. If the user has another role
|
|
576
|
+
* that grants "view" on The Princess Bride (or on all movies), they can view it based on that other role.
|
|
577
|
+
*
|
|
578
|
+
*/
|
|
579
|
+
allow?: boolean | number;
|
|
580
|
+
controls?: boolean | number;
|
|
581
|
+
id?: boolean | number;
|
|
582
|
+
/** The type of subject this grant applies to, e.g. "movie". */
|
|
583
|
+
subjectType?: AccessSubjectTypeGenqlSelection;
|
|
584
|
+
tags?: AccessGrantTagGenqlSelection;
|
|
585
|
+
__typename?: boolean | number;
|
|
586
|
+
__scalar?: boolean | number;
|
|
587
|
+
}
|
|
588
|
+
export interface AccessRoleGrantActionsGenqlSelection {
|
|
589
|
+
delete?: boolean | number;
|
|
590
|
+
update?: boolean | number;
|
|
591
|
+
__typename?: boolean | number;
|
|
592
|
+
__scalar?: boolean | number;
|
|
593
|
+
}
|
|
594
|
+
export interface AccessRoleGrantCreate {
|
|
595
|
+
allow: Scalars['Boolean'];
|
|
596
|
+
/** A list of controls that are allowed or denied by this grant. Each subjectType has a list of available controls, available under Query.subjectTypes. */
|
|
597
|
+
controls?: (Scalars['String'][] | null);
|
|
598
|
+
subjectType?: (Scalars['String'] | null);
|
|
599
|
+
/** A list of tags to restrict a grant. For instance, if this is added to a grant on PromptAnswer-update, each tag refers to a subset of App Requests. */
|
|
600
|
+
tags?: (AccessTagInput[] | null);
|
|
601
|
+
}
|
|
602
|
+
export interface AccessRoleGrantUpdate {
|
|
603
|
+
allow: Scalars['Boolean'];
|
|
604
|
+
/** A list of controls that are allowed or denied by this grant. Each subjectType has a list of available controls, available under Query.subjectTypes. */
|
|
605
|
+
controls?: (Scalars['String'][] | null);
|
|
606
|
+
subjectType?: (Scalars['String'] | null);
|
|
607
|
+
/** A list of tags to restrict a grant. For instance, if this is added to a grant on PromptAnswer-update, each tag refers to a subset of App Requests. */
|
|
608
|
+
tags?: (AccessTagInput[] | null);
|
|
609
|
+
}
|
|
610
|
+
export interface AccessRoleInput {
|
|
611
|
+
/** A description of the role. This is not used for anything, but can be useful for admins to understand what the role is trying to do. */
|
|
612
|
+
description?: (Scalars['String'] | null);
|
|
613
|
+
/** A list of groups this role is associated with. */
|
|
614
|
+
groups: Scalars['String'][];
|
|
615
|
+
name: Scalars['String'];
|
|
616
|
+
/** Attach this role to a specific authentication scope, e.g. "parent". */
|
|
617
|
+
scope?: (Scalars['String'] | null);
|
|
618
|
+
}
|
|
619
|
+
export interface AccessRoleValidatedResponseGenqlSelection {
|
|
620
|
+
accessRole?: AccessRoleGenqlSelection;
|
|
621
|
+
messages?: MutationMessageGenqlSelection;
|
|
622
|
+
/** True if the mutation succeeded (e.g. saved data or passed validation), even if there were warnings. */
|
|
623
|
+
success?: boolean | number;
|
|
624
|
+
__typename?: boolean | number;
|
|
625
|
+
__scalar?: boolean | number;
|
|
626
|
+
}
|
|
627
|
+
export interface AccessSubjectTypeGenqlSelection {
|
|
628
|
+
/** A list of all possible controls for this subjectType. Use this to populate the control dropdown when creating a grant. */
|
|
629
|
+
controls?: AccessControlGenqlSelection;
|
|
630
|
+
/** A longer explanation of the subject type for display in the role management interface. */
|
|
631
|
+
description?: boolean | number;
|
|
632
|
+
name?: boolean | number;
|
|
633
|
+
tags?: AccessTagCategoryGenqlSelection;
|
|
634
|
+
/** A slightly longer version of the subject type's name, for display in the role management interface. */
|
|
635
|
+
title?: boolean | number;
|
|
636
|
+
__typename?: boolean | number;
|
|
637
|
+
__scalar?: boolean | number;
|
|
638
|
+
}
|
|
639
|
+
export interface AccessTagGenqlSelection {
|
|
640
|
+
label?: boolean | number;
|
|
641
|
+
value?: boolean | number;
|
|
642
|
+
__typename?: boolean | number;
|
|
643
|
+
__scalar?: boolean | number;
|
|
644
|
+
}
|
|
645
|
+
export interface AccessTagCategoryGenqlSelection {
|
|
646
|
+
category?: boolean | number;
|
|
647
|
+
description?: boolean | number;
|
|
648
|
+
label?: boolean | number;
|
|
649
|
+
listable?: boolean | number;
|
|
650
|
+
/** A list of all possible tags for this category. Use this to populate the tag dropdown when creating a grant. */
|
|
651
|
+
tags?: AccessTagGenqlSelection;
|
|
652
|
+
__typename?: boolean | number;
|
|
653
|
+
__scalar?: boolean | number;
|
|
654
|
+
}
|
|
655
|
+
export interface AccessTagInput {
|
|
656
|
+
/** The category this tag belongs to, e.g. "State". */
|
|
657
|
+
category: Scalars['String'];
|
|
658
|
+
/** The tag value, e.g. "TX". */
|
|
659
|
+
tag: Scalars['String'];
|
|
660
|
+
}
|
|
661
|
+
/** A user that has or once had access to the system. */
|
|
662
|
+
export interface AccessUserGenqlSelection {
|
|
663
|
+
fullname?: boolean | number;
|
|
664
|
+
groups?: boolean | number;
|
|
665
|
+
login?: boolean | number;
|
|
666
|
+
otherIdentifiers?: AccessUserIdentifierGenqlSelection;
|
|
667
|
+
/** A JSON object containing any information about the user that the implementing application wants to store. Could be useful for constructing personalized UI. */
|
|
668
|
+
otherInfo?: boolean | number;
|
|
669
|
+
roles?: AccessRoleGenqlSelection;
|
|
670
|
+
__typename?: boolean | number;
|
|
671
|
+
__scalar?: boolean | number;
|
|
672
|
+
}
|
|
673
|
+
export interface AccessUserFilter {
|
|
674
|
+
logins?: (Scalars['ID'][] | null);
|
|
675
|
+
/** Filter by identifiers aside from username, like an Employee ID. */
|
|
676
|
+
otherIdentifiers?: (Scalars['String'][] | null);
|
|
677
|
+
otherIdentifiersByLabel?: (AccessUserIdentifierInput[] | null);
|
|
678
|
+
search?: (Scalars['String'] | null);
|
|
679
|
+
/** If true, only return the user that is currently logged in. */
|
|
680
|
+
self?: (Scalars['Boolean'] | null);
|
|
681
|
+
}
|
|
682
|
+
/** A label and ID pair for an external user unique ID. For example, { label: "Student ID", id: "123456" } */
|
|
683
|
+
export interface AccessUserIdentifierGenqlSelection {
|
|
684
|
+
/** The unique ID for this identifier, e.g. "123456". */
|
|
685
|
+
id?: boolean | number;
|
|
686
|
+
/** The label for this identifier, e.g. "Student ID". */
|
|
687
|
+
label?: boolean | number;
|
|
688
|
+
__typename?: boolean | number;
|
|
689
|
+
__scalar?: boolean | number;
|
|
690
|
+
}
|
|
691
|
+
/** A label and ID pair for an external user unique ID. For example, { label: "Student ID", id: "123456" } */
|
|
692
|
+
export interface AccessUserIdentifierInput {
|
|
693
|
+
id: Scalars['ID'];
|
|
694
|
+
label: Scalars['String'];
|
|
695
|
+
}
|
|
696
|
+
/** Represents a group of applications all being applied for at the same time. As part of the request, multiple applications will be created and either eliminated as ineligible or submitted for approval. */
|
|
697
|
+
export interface AppRequestGenqlSelection {
|
|
698
|
+
/** Actions the user can take on this app request. */
|
|
699
|
+
actions?: AppRequestActionsGenqlSelection;
|
|
700
|
+
/** The activity log for this app request. This is a list of actions taken on the app request, such as submission, updating prompts, make an offer, add a note, etc. It will be sorted by the date of the activity in descending order. */
|
|
701
|
+
activity?: (AppRequestActivityGenqlSelection & {
|
|
702
|
+
__args?: {
|
|
703
|
+
/** Filters to apply to the activity log. This can be used to filter by action type, date range, etc. */
|
|
704
|
+
filters?: (AppRequestActivityFilters | null);
|
|
705
|
+
};
|
|
706
|
+
});
|
|
707
|
+
applicant?: AccessUserGenqlSelection;
|
|
708
|
+
applications?: ApplicationGenqlSelection;
|
|
709
|
+
/** Date that this request was considered closed and no longer editable. If active or re-opened, will be null. If closed again, will be the second closure date. */
|
|
710
|
+
closedAt?: boolean | number;
|
|
711
|
+
createdAt?: boolean | number;
|
|
712
|
+
/** All data that has been gathered from the user for this request. It is a Record whose properties are the prompt keys and values are the data gathered by the corresponding prompt dialog. */
|
|
713
|
+
data?: {
|
|
714
|
+
__args: {
|
|
715
|
+
/** Provide the schemaVersion at the time the UI was built. Will throw an error if the client is too old, so it knows to refresh. */
|
|
716
|
+
schemaVersion?: (Scalars['String'] | null);
|
|
717
|
+
};
|
|
718
|
+
} | boolean | number;
|
|
719
|
+
id?: boolean | number;
|
|
720
|
+
/** Indexes associated with the App Request. These are pieces of data extracted from the App Request by individual prompts in the ReqQuest project. They have several uses such as filtering App Requests and enriching list views. */
|
|
721
|
+
indexCategories?: (AppRequestIndexCategoryGenqlSelection & {
|
|
722
|
+
__args?: {
|
|
723
|
+
/** Returns indexes that are flagged to appear in this destination. Also sorts for this destination. */
|
|
724
|
+
for?: (AppRequestIndexDestination | null);
|
|
725
|
+
};
|
|
726
|
+
});
|
|
727
|
+
/** The period this appRequest is associated with. */
|
|
728
|
+
period?: PeriodGenqlSelection;
|
|
729
|
+
/** Retrieve a specific prompt by its ID. This is useful for the UI to get the full prompt data and configuration when trying to edit an individual prompt. We don't want to be downloading all the config data for everything up front. */
|
|
730
|
+
prompt?: (RequirementPromptGenqlSelection & {
|
|
731
|
+
__args: {
|
|
732
|
+
promptId: Scalars['ID'];
|
|
733
|
+
};
|
|
734
|
+
});
|
|
735
|
+
status?: boolean | number;
|
|
736
|
+
/** The most pertinent status reason for this app request. The logic is complicated and depends on the AppRequest's status. */
|
|
737
|
+
statusReason?: boolean | number;
|
|
738
|
+
updatedAt?: boolean | number;
|
|
739
|
+
__typename?: boolean | number;
|
|
740
|
+
__scalar?: boolean | number;
|
|
741
|
+
}
|
|
742
|
+
export interface AppRequestActionsGenqlSelection {
|
|
743
|
+
/** User may cancel this app request as the owner. Separate from closing as a reviewer/admin. */
|
|
744
|
+
cancel?: boolean | number;
|
|
745
|
+
/** User may close this app request as a reviewer/admin. Separate from cancelling as the app request owner. */
|
|
746
|
+
close?: boolean | number;
|
|
747
|
+
/** User may make an offer on this app request. */
|
|
748
|
+
offer?: boolean | number;
|
|
749
|
+
/** User may reopen this app request, whether as the owner or as a reviewer/admin. */
|
|
750
|
+
reopen?: boolean | number;
|
|
751
|
+
/** User may return this app request to the applicant phase. */
|
|
752
|
+
return?: boolean | number;
|
|
753
|
+
/** Whether the user can view this app request as a reviewer. */
|
|
754
|
+
review?: boolean | number;
|
|
755
|
+
/** User may submit this app request either as or on behalf of the owner. */
|
|
756
|
+
submit?: boolean | number;
|
|
757
|
+
__typename?: boolean | number;
|
|
758
|
+
__scalar?: boolean | number;
|
|
759
|
+
}
|
|
760
|
+
export interface AppRequestActivityGenqlSelection {
|
|
761
|
+
action?: boolean | number;
|
|
762
|
+
/** The app request this activity is associated with. */
|
|
763
|
+
appRequest?: AppRequestGenqlSelection;
|
|
764
|
+
/** The date and time when the action occurred. */
|
|
765
|
+
createdAt?: boolean | number;
|
|
766
|
+
/** A JSON object containing additional data about the activity. This could be filtered but different actions would place different data here so it is not strongly typed. */
|
|
767
|
+
data?: boolean | number;
|
|
768
|
+
/** A detailed description of the activity. This is not meant to be filtered and could contain specific details about the action. */
|
|
769
|
+
description?: boolean | number;
|
|
770
|
+
id?: boolean | number;
|
|
771
|
+
/** If this activity was performed by an impersonated user, this will be the user that did the impersonation. */
|
|
772
|
+
impersonatedBy?: AccessUserGenqlSelection;
|
|
773
|
+
/** The user that performed the activity. */
|
|
774
|
+
user?: AccessUserGenqlSelection;
|
|
775
|
+
__typename?: boolean | number;
|
|
776
|
+
__scalar?: boolean | number;
|
|
777
|
+
}
|
|
778
|
+
/** This is used to filter a list of activities. */
|
|
779
|
+
export interface AppRequestActivityFilters {
|
|
780
|
+
/** Filter activities by action. This is a list of action names that should be matched. There are many potential action names, they are untyped. */
|
|
781
|
+
actions?: (Scalars['String'][] | null);
|
|
782
|
+
appRequestIds?: (Scalars['ID'][] | null);
|
|
783
|
+
/** Return activities that happened after this date. */
|
|
784
|
+
happenedAfter?: (Scalars['DateTime'] | null);
|
|
785
|
+
/** Return activities that happened before this date. */
|
|
786
|
+
happenedBefore?: (Scalars['DateTime'] | null);
|
|
787
|
+
/** true -> Return activities that were performed while a user was impersonating another user. false -> Return activities that were not impersonated. */
|
|
788
|
+
impersonated?: (Scalars['Boolean'] | null);
|
|
789
|
+
/** Return activities that were performed while one of the given logins was impersonating another user. */
|
|
790
|
+
impersonatedBy?: (Scalars['ID'][] | null);
|
|
791
|
+
/** Return activities that were performed while one of the given logins was being impersonated by someone else. */
|
|
792
|
+
impersonatedUsers?: (Scalars['ID'][] | null);
|
|
793
|
+
/** Return activities that were performed by one of the given logins. */
|
|
794
|
+
users?: (Scalars['ID'][] | null);
|
|
795
|
+
}
|
|
796
|
+
export interface AppRequestFilter {
|
|
797
|
+
/** true -> only return appRequests that are closed. false -> only return appRequests that are open. null -> return all appRequests. */
|
|
798
|
+
closed?: (Scalars['Boolean'] | null);
|
|
799
|
+
ids?: (Scalars['ID'][] | null);
|
|
800
|
+
/** Only return appRequests that are owned by one the given logins. */
|
|
801
|
+
logins?: (Scalars['ID'][] | null);
|
|
802
|
+
/** Only return appRequests that are owned by the current user. */
|
|
803
|
+
own?: (Scalars['Boolean'] | null);
|
|
804
|
+
periodIds?: (Scalars['ID'][] | null);
|
|
805
|
+
status?: (AppRequestStatus[] | null);
|
|
806
|
+
}
|
|
807
|
+
/** This represents an index category attached to an app request. Its tagStrings property contains the tag values that have been extracted from the app request data. */
|
|
808
|
+
export interface AppRequestIndexCategoryGenqlSelection {
|
|
809
|
+
/** If this is > 0, the index values should be shown on the main app request list page, sorted by this priority in descending order. */
|
|
810
|
+
appRequestListPriority?: boolean | number;
|
|
811
|
+
/** If this is > 0, the index values should be shown on the applicant dashboard, sorted by this priority in descending order. */
|
|
812
|
+
applicantDashboardPriority?: boolean | number;
|
|
813
|
+
category?: boolean | number;
|
|
814
|
+
categoryLabel?: boolean | number;
|
|
815
|
+
/** If this is > 0, the index values should be shown on the list filters, sorted by this priority in descending order. */
|
|
816
|
+
listFiltersPriority?: boolean | number;
|
|
817
|
+
listable?: boolean | number;
|
|
818
|
+
/** If this is > 0, the index values should be shown on the reviewer dashboard, sorted by this priority in descending order. */
|
|
819
|
+
reviewerDashboardPriority?: boolean | number;
|
|
820
|
+
values?: IndexValueGenqlSelection;
|
|
821
|
+
__typename?: boolean | number;
|
|
822
|
+
__scalar?: boolean | number;
|
|
823
|
+
}
|
|
824
|
+
/** An application represents the applicant applying to a specific program. Each appRequest has multiple applications - one per program defined in the system. Some applications are mutually exclusive and/or will be eliminated early based on PREQUAL requirements, but they all technically exist in the data model - there is no concept of picking one application over another, just two applications where one dies and the other survives. */
|
|
825
|
+
export interface ApplicationGenqlSelection {
|
|
826
|
+
actions?: ApplicationActionsGenqlSelection;
|
|
827
|
+
id?: boolean | number;
|
|
828
|
+
/** The navigation title of the program this application is for. */
|
|
829
|
+
navTitle?: boolean | number;
|
|
830
|
+
requirements?: ApplicationRequirementGenqlSelection;
|
|
831
|
+
status?: boolean | number;
|
|
832
|
+
/** When one of the application's requirements is failing or throwing a warning, its reason will be copied here for convenience. If there is a warning and then later a failure, the failure reason will win. */
|
|
833
|
+
statusReason?: boolean | number;
|
|
834
|
+
/** The title of the program this application is for. */
|
|
835
|
+
title?: boolean | number;
|
|
836
|
+
__typename?: boolean | number;
|
|
837
|
+
__scalar?: boolean | number;
|
|
838
|
+
}
|
|
839
|
+
export interface ApplicationActionsGenqlSelection {
|
|
840
|
+
viewAsReviewer?: boolean | number;
|
|
841
|
+
__typename?: boolean | number;
|
|
842
|
+
__scalar?: boolean | number;
|
|
843
|
+
}
|
|
844
|
+
/** The specific instance of a requirement on a particular application. Stores the status of the requirement, e.g. being satisfied or not. */
|
|
845
|
+
export interface ApplicationRequirementGenqlSelection {
|
|
846
|
+
application?: ApplicationGenqlSelection;
|
|
847
|
+
/** The configuration data for this requirement in the app request's period. */
|
|
848
|
+
configurationData?: boolean | number;
|
|
849
|
+
/** An internal description of the requirement. Probably not shown to users. */
|
|
850
|
+
description?: boolean | number;
|
|
851
|
+
id?: boolean | number;
|
|
852
|
+
/** A human and machine readable unique and stable identifier that we can use to add javascript logic to the evaluation of whether a requirement is satisfied. For example: "gi_ch33_must_be_post911" */
|
|
853
|
+
key?: boolean | number;
|
|
854
|
+
/** A human readable title for the requirement in the navigation. You probably want it to be shorter than the full title. If not provided, the title will be used. */
|
|
855
|
+
navTitle?: boolean | number;
|
|
856
|
+
prompts?: RequirementPromptGenqlSelection;
|
|
857
|
+
/** When true, means that the requirement has not been made moot by an earlier requirement failing. It may still need to be hidden from navigation based on evaluatedInEarlierApplication. */
|
|
858
|
+
reachable?: boolean | number;
|
|
859
|
+
/** The smart title for this requirement in the app request's period. For instance, might be "Applicant must have GPA over 3.4" instead of the regular title "Applicant must meet GPA requirement". Will fall back to the regular title for any requirement that does not provide a smart title. */
|
|
860
|
+
smartTitle?: boolean | number;
|
|
861
|
+
/** The status of the requirement. This is what will be shown to users. */
|
|
862
|
+
status?: boolean | number;
|
|
863
|
+
/** The reason why the requirement is in the status it is in. This will be shown to the applicant. */
|
|
864
|
+
statusReason?: boolean | number;
|
|
865
|
+
/** A human readable title for the requirement. This is what will be shown to users. */
|
|
866
|
+
title?: boolean | number;
|
|
867
|
+
/** The type of requirement. This determines when the requirement is evaluated and who can see the requirement. */
|
|
868
|
+
type?: boolean | number;
|
|
869
|
+
__typename?: boolean | number;
|
|
870
|
+
__scalar?: boolean | number;
|
|
871
|
+
}
|
|
872
|
+
export interface ConfigurationGenqlSelection {
|
|
873
|
+
actions?: ConfigurationAccessGenqlSelection;
|
|
874
|
+
data?: boolean | number;
|
|
875
|
+
/** The key being configured. Could be a requirement or prompt key. */
|
|
876
|
+
key?: boolean | number;
|
|
877
|
+
__typename?: boolean | number;
|
|
878
|
+
__scalar?: boolean | number;
|
|
879
|
+
}
|
|
880
|
+
export interface ConfigurationAccessGenqlSelection {
|
|
881
|
+
update?: boolean | number;
|
|
882
|
+
view?: boolean | number;
|
|
883
|
+
__typename?: boolean | number;
|
|
884
|
+
__scalar?: boolean | number;
|
|
885
|
+
}
|
|
886
|
+
export interface ConfigurationFilters {
|
|
887
|
+
/** Return specific configurations. */
|
|
888
|
+
ids?: (Scalars['ID'][] | null);
|
|
889
|
+
/** Return configurations for these keys. */
|
|
890
|
+
keys?: (Scalars['String'][] | null);
|
|
891
|
+
/** Return configurations for these period codes. */
|
|
892
|
+
periodCodes?: (Scalars['String'][] | null);
|
|
893
|
+
/** Return configurations for these period IDs. */
|
|
894
|
+
periodIds?: (Scalars['ID'][] | null);
|
|
895
|
+
}
|
|
896
|
+
/** This represents an index as registered by one of the project's prompt definitions. */
|
|
897
|
+
export interface IndexCategoryGenqlSelection {
|
|
898
|
+
/** If this is > 0, the index values should be shown on the main app request list page, sorted by this priority in descending order. */
|
|
899
|
+
appRequestListPriority?: boolean | number;
|
|
900
|
+
/** If this is > 0, the index values should be shown on the applicant dashboard, sorted by this priority in descending order. */
|
|
901
|
+
applicantDashboardPriority?: boolean | number;
|
|
902
|
+
category?: boolean | number;
|
|
903
|
+
categoryLabel?: boolean | number;
|
|
904
|
+
/** If this is > 0, the index values should be shown on the list filters, sorted by this priority in descending order. */
|
|
905
|
+
listFiltersPriority?: boolean | number;
|
|
906
|
+
listable?: boolean | number;
|
|
907
|
+
/** If this is > 0, the index values should be shown on the reviewer dashboard, sorted by this priority in descending order. */
|
|
908
|
+
reviewerDashboardPriority?: boolean | number;
|
|
909
|
+
values?: (IndexValueGenqlSelection & {
|
|
910
|
+
__args?: {
|
|
911
|
+
/** If true, only return tags that are currently in use by app requests. This is useful for only presenting useful filters. */
|
|
912
|
+
inUse?: (Scalars['Boolean'] | null);
|
|
913
|
+
search?: (Scalars['String'] | null);
|
|
914
|
+
};
|
|
915
|
+
});
|
|
916
|
+
__typename?: boolean | number;
|
|
917
|
+
__scalar?: boolean | number;
|
|
918
|
+
}
|
|
919
|
+
export interface IndexValueGenqlSelection {
|
|
920
|
+
label?: boolean | number;
|
|
921
|
+
value?: boolean | number;
|
|
922
|
+
__typename?: boolean | number;
|
|
923
|
+
__scalar?: boolean | number;
|
|
924
|
+
}
|
|
925
|
+
export interface MutationGenqlSelection {
|
|
926
|
+
/** Add a note to the app request. */
|
|
927
|
+
addNote?: (ValidatedAppRequestResponseGenqlSelection & {
|
|
928
|
+
__args: {
|
|
929
|
+
content: Scalars['String'];
|
|
930
|
+
/** If true, the note will be marked as internal and only visible to reviewers. */
|
|
931
|
+
internal: Scalars['Boolean'];
|
|
932
|
+
};
|
|
933
|
+
});
|
|
934
|
+
/** Make an offer on the app request. */
|
|
935
|
+
offerAppRequest?: (ValidatedAppRequestResponseGenqlSelection & {
|
|
936
|
+
__args: {
|
|
937
|
+
appRequestId: Scalars['ID'];
|
|
938
|
+
};
|
|
939
|
+
});
|
|
940
|
+
roleAddGrant?: (AccessRoleValidatedResponseGenqlSelection & {
|
|
941
|
+
__args: {
|
|
942
|
+
grant: AccessRoleGrantCreate;
|
|
943
|
+
roleId: Scalars['ID'];
|
|
944
|
+
validateOnly?: (Scalars['Boolean'] | null);
|
|
945
|
+
};
|
|
946
|
+
});
|
|
947
|
+
roleCreate?: (AccessRoleValidatedResponseGenqlSelection & {
|
|
948
|
+
__args: {
|
|
949
|
+
role: AccessRoleInput;
|
|
950
|
+
validateOnly?: (Scalars['Boolean'] | null);
|
|
951
|
+
};
|
|
952
|
+
});
|
|
953
|
+
roleDelete?: (ValidatedResponseGenqlSelection & {
|
|
954
|
+
__args: {
|
|
955
|
+
roleId: Scalars['ID'];
|
|
956
|
+
};
|
|
957
|
+
});
|
|
958
|
+
roleDeleteGrant?: (AccessRoleValidatedResponseGenqlSelection & {
|
|
959
|
+
__args: {
|
|
960
|
+
grantId: Scalars['ID'];
|
|
961
|
+
};
|
|
962
|
+
});
|
|
963
|
+
roleUpdate?: (AccessRoleValidatedResponseGenqlSelection & {
|
|
964
|
+
__args: {
|
|
965
|
+
role: AccessRoleInput;
|
|
966
|
+
roleId: Scalars['ID'];
|
|
967
|
+
validateOnly?: (Scalars['Boolean'] | null);
|
|
968
|
+
};
|
|
969
|
+
});
|
|
970
|
+
roleUpdateGrant?: (AccessRoleValidatedResponseGenqlSelection & {
|
|
971
|
+
__args: {
|
|
972
|
+
grant: AccessRoleGrantUpdate;
|
|
973
|
+
grantId: Scalars['ID'];
|
|
974
|
+
validateOnly?: (Scalars['Boolean'] | null);
|
|
975
|
+
};
|
|
976
|
+
});
|
|
977
|
+
/** Submit the app request. */
|
|
978
|
+
submitAppRequest?: (ValidatedAppRequestResponseGenqlSelection & {
|
|
979
|
+
__args: {
|
|
980
|
+
appRequestId: Scalars['ID'];
|
|
981
|
+
};
|
|
982
|
+
});
|
|
983
|
+
updateConfiguration?: (ValidatedConfigurationResponseGenqlSelection & {
|
|
984
|
+
__args: {
|
|
985
|
+
data: Scalars['JsonData'];
|
|
986
|
+
key: Scalars['String'];
|
|
987
|
+
periodId: Scalars['String'];
|
|
988
|
+
validateOnly?: (Scalars['Boolean'] | null);
|
|
989
|
+
};
|
|
990
|
+
});
|
|
991
|
+
updatePeriod?: (ValidatedPeriodResponseGenqlSelection & {
|
|
992
|
+
__args: {
|
|
993
|
+
id: Scalars['String'];
|
|
994
|
+
update: PeriodUpdate;
|
|
995
|
+
validateOnly?: (Scalars['Boolean'] | null);
|
|
996
|
+
};
|
|
997
|
+
});
|
|
998
|
+
/** Update the data for a prompt in this app request. */
|
|
999
|
+
updatePrompt?: (ValidatedAppRequestResponseGenqlSelection & {
|
|
1000
|
+
__args: {
|
|
1001
|
+
data: Scalars['JsonData'];
|
|
1002
|
+
promptId: Scalars['ID'];
|
|
1003
|
+
validateOnly?: (Scalars['Boolean'] | null);
|
|
1004
|
+
};
|
|
1005
|
+
});
|
|
1006
|
+
__typename?: boolean | number;
|
|
1007
|
+
__scalar?: boolean | number;
|
|
1008
|
+
}
|
|
1009
|
+
export interface MutationMessageGenqlSelection {
|
|
1010
|
+
/** The path to the arg that produced the error. Dot-separated (lodash.get compatible) if it is deep inside an input type. Null if no particular arg can be blamed for the error. */
|
|
1011
|
+
arg?: boolean | number;
|
|
1012
|
+
/** An error message to be shown to the end user, with the context of the given arg. */
|
|
1013
|
+
message?: boolean | number;
|
|
1014
|
+
/** The type of error message. See the enum descriptions for more detail. */
|
|
1015
|
+
type?: boolean | number;
|
|
1016
|
+
__typename?: boolean | number;
|
|
1017
|
+
__scalar?: boolean | number;
|
|
1018
|
+
}
|
|
1019
|
+
export interface PeriodGenqlSelection {
|
|
1020
|
+
actions?: PeriodActionsGenqlSelection;
|
|
1021
|
+
/** This is useful for filtering out periods that are no longer useful. For instance, a window might close applications after 2 weeks but the reviewers could be working. */
|
|
1022
|
+
archiveDate?: boolean | number;
|
|
1023
|
+
/** Date that this period closes for applications. Some periods do not set a close date. */
|
|
1024
|
+
closeDate?: boolean | number;
|
|
1025
|
+
/** Unique identifier for this period that references an external system. Ideally human readable. */
|
|
1026
|
+
code?: boolean | number;
|
|
1027
|
+
configurations?: (ConfigurationGenqlSelection & {
|
|
1028
|
+
__args?: {
|
|
1029
|
+
filter?: (ConfigurationFilters | null);
|
|
1030
|
+
};
|
|
1031
|
+
});
|
|
1032
|
+
id?: boolean | number;
|
|
1033
|
+
/** Name for this period. Will be displayed to applicants if they create an App Request while two periods are simultaneously open. */
|
|
1034
|
+
name?: boolean | number;
|
|
1035
|
+
/** Date that this period opens for applications. */
|
|
1036
|
+
openDate?: boolean | number;
|
|
1037
|
+
programs?: PeriodProgramGenqlSelection;
|
|
1038
|
+
prompts?: PeriodPromptGenqlSelection;
|
|
1039
|
+
requirements?: PeriodProgramRequirementGenqlSelection;
|
|
1040
|
+
__typename?: boolean | number;
|
|
1041
|
+
__scalar?: boolean | number;
|
|
1042
|
+
}
|
|
1043
|
+
export interface PeriodActionsGenqlSelection {
|
|
1044
|
+
update?: boolean | number;
|
|
1045
|
+
view?: boolean | number;
|
|
1046
|
+
__typename?: boolean | number;
|
|
1047
|
+
__scalar?: boolean | number;
|
|
1048
|
+
}
|
|
1049
|
+
export interface PeriodFilters {
|
|
1050
|
+
/** Return periods that will be archived after this date. */
|
|
1051
|
+
archiveAfter?: (Scalars['DateTime'] | null);
|
|
1052
|
+
/** Return periods that were archived before this date. */
|
|
1053
|
+
archiveBefore?: (Scalars['DateTime'] | null);
|
|
1054
|
+
/** Return periods that are open at this date or will be open after it. */
|
|
1055
|
+
closesAfter?: (Scalars['DateTime'] | null);
|
|
1056
|
+
/** Return periods that closed before this date, not including that date's active period(s). */
|
|
1057
|
+
closesBefore?: (Scalars['DateTime'] | null);
|
|
1058
|
+
/** Return periods that have any of these codes. */
|
|
1059
|
+
codes?: (Scalars['String'][] | null);
|
|
1060
|
+
/** Return periods that have any of these IDs. */
|
|
1061
|
+
ids?: (Scalars['ID'][] | null);
|
|
1062
|
+
/** true -> open periods. false -> closed periods. null -> all periods. */
|
|
1063
|
+
openNow?: (Scalars['Boolean'] | null);
|
|
1064
|
+
/** Return periods that open after this date, not including that date's active period(s). */
|
|
1065
|
+
opensAfter?: (Scalars['DateTime'] | null);
|
|
1066
|
+
/** Return periods that are open at this date or have been open before it. */
|
|
1067
|
+
opensBefore?: (Scalars['DateTime'] | null);
|
|
1068
|
+
}
|
|
1069
|
+
export interface PeriodProgramGenqlSelection {
|
|
1070
|
+
actions?: PeriodProgramActionsGenqlSelection;
|
|
1071
|
+
/** Whether the program is enabled in this period. This is set by the system administrator. */
|
|
1072
|
+
enabled?: boolean | number;
|
|
1073
|
+
group?: PeriodProgramActionsGenqlSelection;
|
|
1074
|
+
key?: boolean | number;
|
|
1075
|
+
navTitle?: boolean | number;
|
|
1076
|
+
period?: PeriodGenqlSelection;
|
|
1077
|
+
requirements?: PeriodProgramRequirementGenqlSelection;
|
|
1078
|
+
title?: boolean | number;
|
|
1079
|
+
__typename?: boolean | number;
|
|
1080
|
+
__scalar?: boolean | number;
|
|
1081
|
+
}
|
|
1082
|
+
export interface PeriodProgramActionsGenqlSelection {
|
|
1083
|
+
configure?: boolean | number;
|
|
1084
|
+
__typename?: boolean | number;
|
|
1085
|
+
__scalar?: boolean | number;
|
|
1086
|
+
}
|
|
1087
|
+
export interface PeriodProgramRequirementGenqlSelection {
|
|
1088
|
+
/** The configuration for this requirement in the period. */
|
|
1089
|
+
configuration?: ConfigurationGenqlSelection;
|
|
1090
|
+
/** An internal description of the requirement. Probably not shown to users. */
|
|
1091
|
+
description?: boolean | number;
|
|
1092
|
+
/** Whether the requirement is enabled in this period. This is set by the system administrator. */
|
|
1093
|
+
enabled?: boolean | number;
|
|
1094
|
+
/** A human and machine readable unique and stable identifier that we can use to add javascript logic to the evaluation of whether a requirement is satisfied. For example: "gi_ch33_must_be_post911" */
|
|
1095
|
+
key?: boolean | number;
|
|
1096
|
+
/** A human readable title for the requirement in the navigation. You probably want it to be shorter than the full title. If not provided, the title will be used. */
|
|
1097
|
+
navTitle?: boolean | number;
|
|
1098
|
+
prompts?: PeriodPromptGenqlSelection;
|
|
1099
|
+
/** A human readable title for the requirement. This is what will be shown to users. */
|
|
1100
|
+
title?: boolean | number;
|
|
1101
|
+
/** The type of requirement. This determines when the requirement is evaluated and who can see the requirement. */
|
|
1102
|
+
type?: boolean | number;
|
|
1103
|
+
__typename?: boolean | number;
|
|
1104
|
+
__scalar?: boolean | number;
|
|
1105
|
+
}
|
|
1106
|
+
export interface PeriodPromptGenqlSelection {
|
|
1107
|
+
/** The configuration for this prompt in the given period. */
|
|
1108
|
+
configuration?: ConfigurationGenqlSelection;
|
|
1109
|
+
/** A brief description of the prompt. This should be shown to administrators to help explain the full meaning of the prompt while assigning permissions or editing its configuration. */
|
|
1110
|
+
description?: boolean | number;
|
|
1111
|
+
/** A human and machine readable identifier for the prompt. Will be used to match prompt data with UI and API code that handles it. */
|
|
1112
|
+
key?: boolean | number;
|
|
1113
|
+
/** A human readable title for the prompt in the navigation. You probably want it to be shorter than the full title. If not provided, the title will be used. */
|
|
1114
|
+
navTitle?: boolean | number;
|
|
1115
|
+
periodId?: boolean | number;
|
|
1116
|
+
/** A human readable title for the prompt. This is what will be shown to users. */
|
|
1117
|
+
title?: boolean | number;
|
|
1118
|
+
__typename?: boolean | number;
|
|
1119
|
+
__scalar?: boolean | number;
|
|
1120
|
+
}
|
|
1121
|
+
export interface PeriodUpdate {
|
|
1122
|
+
archiveDate?: (Scalars['DateTime'] | null);
|
|
1123
|
+
closeDate?: (Scalars['DateTime'] | null);
|
|
1124
|
+
code?: (Scalars['String'] | null);
|
|
1125
|
+
name: Scalars['String'];
|
|
1126
|
+
openDate: Scalars['DateTime'];
|
|
1127
|
+
}
|
|
1128
|
+
export interface ProgramGenqlSelection {
|
|
1129
|
+
key?: boolean | number;
|
|
1130
|
+
navTitle?: boolean | number;
|
|
1131
|
+
title?: boolean | number;
|
|
1132
|
+
__typename?: boolean | number;
|
|
1133
|
+
__scalar?: boolean | number;
|
|
1134
|
+
}
|
|
1135
|
+
export interface ProgramFilters {
|
|
1136
|
+
keys?: (Scalars['String'][] | null);
|
|
1137
|
+
}
|
|
1138
|
+
export interface ProgramGroupGenqlSelection {
|
|
1139
|
+
key?: boolean | number;
|
|
1140
|
+
/** A human readable title for the program group in the navigation. You may want it to be shorter than the full title. If not provided, the title will be used. */
|
|
1141
|
+
navTitle?: boolean | number;
|
|
1142
|
+
programs?: (ProgramGenqlSelection & {
|
|
1143
|
+
__args?: {
|
|
1144
|
+
filter?: (ProgramFilters | null);
|
|
1145
|
+
};
|
|
1146
|
+
});
|
|
1147
|
+
/** A human readable title for the program group. This will be shown to users. */
|
|
1148
|
+
title?: boolean | number;
|
|
1149
|
+
__typename?: boolean | number;
|
|
1150
|
+
__scalar?: boolean | number;
|
|
1151
|
+
}
|
|
1152
|
+
export interface ProgramGroupFilter {
|
|
1153
|
+
keys?: (Scalars['ID'][] | null);
|
|
1154
|
+
}
|
|
1155
|
+
export interface QueryGenqlSelection {
|
|
1156
|
+
/**
|
|
1157
|
+
*
|
|
1158
|
+
* This is the global access object. Each field represents a global permission
|
|
1159
|
+
* like the ability to view the role management interface.
|
|
1160
|
+
*
|
|
1161
|
+
*/
|
|
1162
|
+
access?: AccessGenqlSelection;
|
|
1163
|
+
accessUsers?: (AccessUserGenqlSelection & {
|
|
1164
|
+
__args?: {
|
|
1165
|
+
filter?: (AccessUserFilter | null);
|
|
1166
|
+
};
|
|
1167
|
+
});
|
|
1168
|
+
appRequestIndexes?: (IndexCategoryGenqlSelection & {
|
|
1169
|
+
__args?: {
|
|
1170
|
+
categories?: (Scalars['String'][] | null);
|
|
1171
|
+
/** Returns indexes that are flagged to appear in this destination. Also sorts for this destination. */
|
|
1172
|
+
for?: (AppRequestIndexDestination | null);
|
|
1173
|
+
};
|
|
1174
|
+
});
|
|
1175
|
+
appRequests?: (AppRequestGenqlSelection & {
|
|
1176
|
+
__args?: {
|
|
1177
|
+
filter?: (AppRequestFilter | null);
|
|
1178
|
+
};
|
|
1179
|
+
});
|
|
1180
|
+
periods?: (PeriodGenqlSelection & {
|
|
1181
|
+
__args?: {
|
|
1182
|
+
filter?: (PeriodFilters | null);
|
|
1183
|
+
};
|
|
1184
|
+
});
|
|
1185
|
+
programGroups?: (ProgramGroupGenqlSelection & {
|
|
1186
|
+
__args?: {
|
|
1187
|
+
filter?: (ProgramGroupFilter | null);
|
|
1188
|
+
};
|
|
1189
|
+
});
|
|
1190
|
+
programs?: (ProgramGenqlSelection & {
|
|
1191
|
+
__args?: {
|
|
1192
|
+
filter?: (ProgramFilters | null);
|
|
1193
|
+
};
|
|
1194
|
+
});
|
|
1195
|
+
roles?: (AccessRoleGenqlSelection & {
|
|
1196
|
+
__args?: {
|
|
1197
|
+
filter?: (AccessRoleFilter | null);
|
|
1198
|
+
};
|
|
1199
|
+
});
|
|
1200
|
+
/** A list of all possible scopes. Scopes are used to limit users when they are accessing the system through an alternate UI or login method. For instance, if you generate an authentication token to give to a third party, it may have a scope identifying that third party and limiting their access even though they are acting as you. Roles must match the token scope in order to apply permissions. */
|
|
1201
|
+
scopes?: boolean | number;
|
|
1202
|
+
/** This is where you get information about the authorization system. Each grant will be associated with one of these subjectTypes and optionally a list of subject instances. The grant will also have a set of controls, and each control will have an optional set of tags. The tags are used to limit the scope of the grant. */
|
|
1203
|
+
subjectTypes?: AccessSubjectTypeGenqlSelection;
|
|
1204
|
+
__typename?: boolean | number;
|
|
1205
|
+
__scalar?: boolean | number;
|
|
1206
|
+
}
|
|
1207
|
+
/** A RequestPrompt is an instance of a Prompt on a particular request. Once the user has answered the prompt, it contains the answer and the prompt status on that request. */
|
|
1208
|
+
export interface RequirementPromptGenqlSelection {
|
|
1209
|
+
/** Actions that the user can take on this prompt. */
|
|
1210
|
+
actions?: RequirementPromptActionsGenqlSelection;
|
|
1211
|
+
/** Whether the prompt has been answered on this request. */
|
|
1212
|
+
answered?: boolean | number;
|
|
1213
|
+
/** The configuration data for this prompt in the app request's period. */
|
|
1214
|
+
configurationData?: boolean | number;
|
|
1215
|
+
/** All the configuration data that could be relevant for this prompt. This includes its own config, and also the config data for any requirements and programs that are related to it. */
|
|
1216
|
+
configurationRelatedData?: boolean | number;
|
|
1217
|
+
/** The data that has been gathered from the user in response to this prompt. The schema is controlled by the question's implementation. */
|
|
1218
|
+
data?: {
|
|
1219
|
+
__args: {
|
|
1220
|
+
/** Provide the schemaVersion at the time the UI was built. Will throw an error if the client is too old, so it knows to refresh. */
|
|
1221
|
+
schemaVersion?: (Scalars['String'] | null);
|
|
1222
|
+
};
|
|
1223
|
+
} | boolean | number;
|
|
1224
|
+
/** A brief description of the prompt. This should be shown to administrators to help explain the full meaning of the prompt while assigning permissions or editing its configuration. */
|
|
1225
|
+
description?: boolean | number;
|
|
1226
|
+
/** Any data that the API needs to provide to the UI to display the prompt properly. For instance, if the prompt text is in the database and able to be modified by admins, the UI can't hardcode the prompt text and needs it from the API. Could also be used to pull reference information from an external system, e.g. a student's course schedule, for display in the prompt dialog. */
|
|
1227
|
+
fetchedData?: {
|
|
1228
|
+
__args: {
|
|
1229
|
+
/** Provide the schemaVersion at the time the UI was built. Will throw an error if the client is too old, so it knows to refresh. */
|
|
1230
|
+
schemaVersion?: (Scalars['String'] | null);
|
|
1231
|
+
};
|
|
1232
|
+
} | boolean | number;
|
|
1233
|
+
id?: boolean | number;
|
|
1234
|
+
/** When true, this prompt has been invalidated by the answer to another prompt. The `answered` field should remain false until the user specifically answers this prompt again, regardless of the output of the definition's `complete` method. */
|
|
1235
|
+
invalidated?: boolean | number;
|
|
1236
|
+
/** A human and machine readable identifier for the prompt. Will be used to match prompt data with UI and API code that handles it. */
|
|
1237
|
+
key?: boolean | number;
|
|
1238
|
+
/** A human readable title for the prompt in the navigation. You probably want it to be shorter than the full title. If not provided, the title will be used. */
|
|
1239
|
+
navTitle?: boolean | number;
|
|
1240
|
+
/** Preload data that has been generated according to the prompt definition. For example, a prompt might query the database for answers given in previous requests or query an external API to learn facts about the user. */
|
|
1241
|
+
preloadData?: {
|
|
1242
|
+
__args: {
|
|
1243
|
+
/** Provide the schemaVersion at the time the UI was built. Will throw an error if the client is too old, so it knows to refresh. */
|
|
1244
|
+
schemaVersion?: (Scalars['String'] | null);
|
|
1245
|
+
};
|
|
1246
|
+
} | boolean | number;
|
|
1247
|
+
/** The requirement that this prompt is associated with. */
|
|
1248
|
+
requirement?: ApplicationRequirementGenqlSelection;
|
|
1249
|
+
/** A human readable title for the prompt. This is what will be shown to users. */
|
|
1250
|
+
title?: boolean | number;
|
|
1251
|
+
/** The visibility of the prompt on the request. This is used to determine whether the prompt should be shown to the user in the UI. */
|
|
1252
|
+
visibility?: boolean | number;
|
|
1253
|
+
__typename?: boolean | number;
|
|
1254
|
+
__scalar?: boolean | number;
|
|
1255
|
+
}
|
|
1256
|
+
export interface RequirementPromptActionsGenqlSelection {
|
|
1257
|
+
update?: boolean | number;
|
|
1258
|
+
__typename?: boolean | number;
|
|
1259
|
+
__scalar?: boolean | number;
|
|
1260
|
+
}
|
|
1261
|
+
export interface RoleActionsGenqlSelection {
|
|
1262
|
+
delete?: boolean | number;
|
|
1263
|
+
update?: boolean | number;
|
|
1264
|
+
__typename?: boolean | number;
|
|
1265
|
+
__scalar?: boolean | number;
|
|
1266
|
+
}
|
|
1267
|
+
export interface ValidatedAppRequestResponseGenqlSelection {
|
|
1268
|
+
appRequest?: AppRequestGenqlSelection;
|
|
1269
|
+
messages?: MutationMessageGenqlSelection;
|
|
1270
|
+
/** True if the mutation succeeded (e.g. saved data or passed validation), even if there were warnings. */
|
|
1271
|
+
success?: boolean | number;
|
|
1272
|
+
__typename?: boolean | number;
|
|
1273
|
+
__scalar?: boolean | number;
|
|
1274
|
+
}
|
|
1275
|
+
export interface ValidatedConfigurationResponseGenqlSelection {
|
|
1276
|
+
configuration?: ConfigurationGenqlSelection;
|
|
1277
|
+
messages?: MutationMessageGenqlSelection;
|
|
1278
|
+
/** True if the mutation succeeded (e.g. saved data or passed validation), even if there were warnings. */
|
|
1279
|
+
success?: boolean | number;
|
|
1280
|
+
__typename?: boolean | number;
|
|
1281
|
+
__scalar?: boolean | number;
|
|
1282
|
+
}
|
|
1283
|
+
export interface ValidatedPeriodResponseGenqlSelection {
|
|
1284
|
+
messages?: MutationMessageGenqlSelection;
|
|
1285
|
+
period?: PeriodGenqlSelection;
|
|
1286
|
+
/** True if the mutation succeeded (e.g. saved data or passed validation), even if there were warnings. */
|
|
1287
|
+
success?: boolean | number;
|
|
1288
|
+
__typename?: boolean | number;
|
|
1289
|
+
__scalar?: boolean | number;
|
|
1290
|
+
}
|
|
1291
|
+
export interface ValidatedResponseGenqlSelection {
|
|
1292
|
+
messages?: MutationMessageGenqlSelection;
|
|
1293
|
+
/** True if the mutation succeeded (e.g. saved data or passed validation), even if there were warnings. */
|
|
1294
|
+
success?: boolean | number;
|
|
1295
|
+
__typename?: boolean | number;
|
|
1296
|
+
__scalar?: boolean | number;
|
|
1297
|
+
}
|
|
1298
|
+
export declare const isAccess: (obj?: {
|
|
1299
|
+
__typename?: any;
|
|
1300
|
+
} | null) => obj is Access;
|
|
1301
|
+
export declare const isAccessControl: (obj?: {
|
|
1302
|
+
__typename?: any;
|
|
1303
|
+
} | null) => obj is AccessControl;
|
|
1304
|
+
export declare const isAccessGrantTag: (obj?: {
|
|
1305
|
+
__typename?: any;
|
|
1306
|
+
} | null) => obj is AccessGrantTag;
|
|
1307
|
+
export declare const isAccessRole: (obj?: {
|
|
1308
|
+
__typename?: any;
|
|
1309
|
+
} | null) => obj is AccessRole;
|
|
1310
|
+
export declare const isAccessRoleGrant: (obj?: {
|
|
1311
|
+
__typename?: any;
|
|
1312
|
+
} | null) => obj is AccessRoleGrant;
|
|
1313
|
+
export declare const isAccessRoleGrantActions: (obj?: {
|
|
1314
|
+
__typename?: any;
|
|
1315
|
+
} | null) => obj is AccessRoleGrantActions;
|
|
1316
|
+
export declare const isAccessRoleValidatedResponse: (obj?: {
|
|
1317
|
+
__typename?: any;
|
|
1318
|
+
} | null) => obj is AccessRoleValidatedResponse;
|
|
1319
|
+
export declare const isAccessSubjectType: (obj?: {
|
|
1320
|
+
__typename?: any;
|
|
1321
|
+
} | null) => obj is AccessSubjectType;
|
|
1322
|
+
export declare const isAccessTag: (obj?: {
|
|
1323
|
+
__typename?: any;
|
|
1324
|
+
} | null) => obj is AccessTag;
|
|
1325
|
+
export declare const isAccessTagCategory: (obj?: {
|
|
1326
|
+
__typename?: any;
|
|
1327
|
+
} | null) => obj is AccessTagCategory;
|
|
1328
|
+
export declare const isAccessUser: (obj?: {
|
|
1329
|
+
__typename?: any;
|
|
1330
|
+
} | null) => obj is AccessUser;
|
|
1331
|
+
export declare const isAccessUserIdentifier: (obj?: {
|
|
1332
|
+
__typename?: any;
|
|
1333
|
+
} | null) => obj is AccessUserIdentifier;
|
|
1334
|
+
export declare const isAppRequest: (obj?: {
|
|
1335
|
+
__typename?: any;
|
|
1336
|
+
} | null) => obj is AppRequest;
|
|
1337
|
+
export declare const isAppRequestActions: (obj?: {
|
|
1338
|
+
__typename?: any;
|
|
1339
|
+
} | null) => obj is AppRequestActions;
|
|
1340
|
+
export declare const isAppRequestActivity: (obj?: {
|
|
1341
|
+
__typename?: any;
|
|
1342
|
+
} | null) => obj is AppRequestActivity;
|
|
1343
|
+
export declare const isAppRequestIndexCategory: (obj?: {
|
|
1344
|
+
__typename?: any;
|
|
1345
|
+
} | null) => obj is AppRequestIndexCategory;
|
|
1346
|
+
export declare const isApplication: (obj?: {
|
|
1347
|
+
__typename?: any;
|
|
1348
|
+
} | null) => obj is Application;
|
|
1349
|
+
export declare const isApplicationActions: (obj?: {
|
|
1350
|
+
__typename?: any;
|
|
1351
|
+
} | null) => obj is ApplicationActions;
|
|
1352
|
+
export declare const isApplicationRequirement: (obj?: {
|
|
1353
|
+
__typename?: any;
|
|
1354
|
+
} | null) => obj is ApplicationRequirement;
|
|
1355
|
+
export declare const isConfiguration: (obj?: {
|
|
1356
|
+
__typename?: any;
|
|
1357
|
+
} | null) => obj is Configuration;
|
|
1358
|
+
export declare const isConfigurationAccess: (obj?: {
|
|
1359
|
+
__typename?: any;
|
|
1360
|
+
} | null) => obj is ConfigurationAccess;
|
|
1361
|
+
export declare const isIndexCategory: (obj?: {
|
|
1362
|
+
__typename?: any;
|
|
1363
|
+
} | null) => obj is IndexCategory;
|
|
1364
|
+
export declare const isIndexValue: (obj?: {
|
|
1365
|
+
__typename?: any;
|
|
1366
|
+
} | null) => obj is IndexValue;
|
|
1367
|
+
export declare const isMutation: (obj?: {
|
|
1368
|
+
__typename?: any;
|
|
1369
|
+
} | null) => obj is Mutation;
|
|
1370
|
+
export declare const isMutationMessage: (obj?: {
|
|
1371
|
+
__typename?: any;
|
|
1372
|
+
} | null) => obj is MutationMessage;
|
|
1373
|
+
export declare const isPeriod: (obj?: {
|
|
1374
|
+
__typename?: any;
|
|
1375
|
+
} | null) => obj is Period;
|
|
1376
|
+
export declare const isPeriodActions: (obj?: {
|
|
1377
|
+
__typename?: any;
|
|
1378
|
+
} | null) => obj is PeriodActions;
|
|
1379
|
+
export declare const isPeriodProgram: (obj?: {
|
|
1380
|
+
__typename?: any;
|
|
1381
|
+
} | null) => obj is PeriodProgram;
|
|
1382
|
+
export declare const isPeriodProgramActions: (obj?: {
|
|
1383
|
+
__typename?: any;
|
|
1384
|
+
} | null) => obj is PeriodProgramActions;
|
|
1385
|
+
export declare const isPeriodProgramRequirement: (obj?: {
|
|
1386
|
+
__typename?: any;
|
|
1387
|
+
} | null) => obj is PeriodProgramRequirement;
|
|
1388
|
+
export declare const isPeriodPrompt: (obj?: {
|
|
1389
|
+
__typename?: any;
|
|
1390
|
+
} | null) => obj is PeriodPrompt;
|
|
1391
|
+
export declare const isProgram: (obj?: {
|
|
1392
|
+
__typename?: any;
|
|
1393
|
+
} | null) => obj is Program;
|
|
1394
|
+
export declare const isProgramGroup: (obj?: {
|
|
1395
|
+
__typename?: any;
|
|
1396
|
+
} | null) => obj is ProgramGroup;
|
|
1397
|
+
export declare const isQuery: (obj?: {
|
|
1398
|
+
__typename?: any;
|
|
1399
|
+
} | null) => obj is Query;
|
|
1400
|
+
export declare const isRequirementPrompt: (obj?: {
|
|
1401
|
+
__typename?: any;
|
|
1402
|
+
} | null) => obj is RequirementPrompt;
|
|
1403
|
+
export declare const isRequirementPromptActions: (obj?: {
|
|
1404
|
+
__typename?: any;
|
|
1405
|
+
} | null) => obj is RequirementPromptActions;
|
|
1406
|
+
export declare const isRoleActions: (obj?: {
|
|
1407
|
+
__typename?: any;
|
|
1408
|
+
} | null) => obj is RoleActions;
|
|
1409
|
+
export declare const isValidatedAppRequestResponse: (obj?: {
|
|
1410
|
+
__typename?: any;
|
|
1411
|
+
} | null) => obj is ValidatedAppRequestResponse;
|
|
1412
|
+
export declare const isValidatedConfigurationResponse: (obj?: {
|
|
1413
|
+
__typename?: any;
|
|
1414
|
+
} | null) => obj is ValidatedConfigurationResponse;
|
|
1415
|
+
export declare const isValidatedPeriodResponse: (obj?: {
|
|
1416
|
+
__typename?: any;
|
|
1417
|
+
} | null) => obj is ValidatedPeriodResponse;
|
|
1418
|
+
export declare const isValidatedResponse: (obj?: {
|
|
1419
|
+
__typename?: any;
|
|
1420
|
+
} | null) => obj is ValidatedResponse;
|
|
1421
|
+
export declare const enumAppRequestIndexDestination: {
|
|
1422
|
+
APPLICANT_DASHBOARD: "APPLICANT_DASHBOARD";
|
|
1423
|
+
APP_REQUEST_LIST: "APP_REQUEST_LIST";
|
|
1424
|
+
LIST_FILTERS: "LIST_FILTERS";
|
|
1425
|
+
REVIEWER_DASHBOARD: "REVIEWER_DASHBOARD";
|
|
1426
|
+
};
|
|
1427
|
+
export declare const enumAppRequestStatus: {
|
|
1428
|
+
ACCEPTANCE: "ACCEPTANCE";
|
|
1429
|
+
ACCEPTED: "ACCEPTED";
|
|
1430
|
+
APPROVAL: "APPROVAL";
|
|
1431
|
+
APPROVED: "APPROVED";
|
|
1432
|
+
CANCELLED: "CANCELLED";
|
|
1433
|
+
DISQUALIFIED: "DISQUALIFIED";
|
|
1434
|
+
NOT_ACCEPTED: "NOT_ACCEPTED";
|
|
1435
|
+
NOT_APPROVED: "NOT_APPROVED";
|
|
1436
|
+
PREAPPROVAL: "PREAPPROVAL";
|
|
1437
|
+
READY_TO_SUBMIT: "READY_TO_SUBMIT";
|
|
1438
|
+
STARTED: "STARTED";
|
|
1439
|
+
WITHDRAWN: "WITHDRAWN";
|
|
1440
|
+
};
|
|
1441
|
+
export declare const enumApplicationStatus: {
|
|
1442
|
+
ACCEPTANCE: "ACCEPTANCE";
|
|
1443
|
+
ACCEPTED: "ACCEPTED";
|
|
1444
|
+
APPROVAL: "APPROVAL";
|
|
1445
|
+
APPROVED: "APPROVED";
|
|
1446
|
+
CANCELLED: "CANCELLED";
|
|
1447
|
+
FAILED_PREQUAL: "FAILED_PREQUAL";
|
|
1448
|
+
FAILED_QUALIFICATION: "FAILED_QUALIFICATION";
|
|
1449
|
+
NOT_ACCEPTED: "NOT_ACCEPTED";
|
|
1450
|
+
NOT_APPROVED: "NOT_APPROVED";
|
|
1451
|
+
PREAPPROVAL: "PREAPPROVAL";
|
|
1452
|
+
PREQUAL: "PREQUAL";
|
|
1453
|
+
QUALIFICATION: "QUALIFICATION";
|
|
1454
|
+
READY_TO_SUBMIT: "READY_TO_SUBMIT";
|
|
1455
|
+
WITHDRAWN: "WITHDRAWN";
|
|
1456
|
+
};
|
|
1457
|
+
export declare const enumMutationMessageType: {
|
|
1458
|
+
error: "error";
|
|
1459
|
+
success: "success";
|
|
1460
|
+
warning: "warning";
|
|
1461
|
+
};
|
|
1462
|
+
export declare const enumPromptVisibility: {
|
|
1463
|
+
APPLICATION_DUPE: "APPLICATION_DUPE";
|
|
1464
|
+
AUTOMATION: "AUTOMATION";
|
|
1465
|
+
AVAILABLE: "AVAILABLE";
|
|
1466
|
+
REQUEST_DUPE: "REQUEST_DUPE";
|
|
1467
|
+
UNREACHABLE: "UNREACHABLE";
|
|
1468
|
+
};
|
|
1469
|
+
export declare const enumRequirementStatus: {
|
|
1470
|
+
DISQUALIFYING: "DISQUALIFYING";
|
|
1471
|
+
MET: "MET";
|
|
1472
|
+
NOT_APPLICABLE: "NOT_APPLICABLE";
|
|
1473
|
+
PENDING: "PENDING";
|
|
1474
|
+
WARNING: "WARNING";
|
|
1475
|
+
};
|
|
1476
|
+
export declare const enumRequirementType: {
|
|
1477
|
+
ACCEPTANCE: "ACCEPTANCE";
|
|
1478
|
+
APPROVAL: "APPROVAL";
|
|
1479
|
+
POSTQUAL: "POSTQUAL";
|
|
1480
|
+
PREAPPROVAL: "PREAPPROVAL";
|
|
1481
|
+
PREQUAL: "PREQUAL";
|
|
1482
|
+
QUALIFICATION: "QUALIFICATION";
|
|
1483
|
+
};
|