2022-10-12 10:21:49 -04:00
|
|
|
export interface Secret {
|
2022-10-13 20:45:09 -04:00
|
|
|
id: number;
|
2022-10-12 10:21:49 -04:00
|
|
|
key: string;
|
|
|
|
value: string;
|
2022-10-13 20:45:09 -04:00
|
|
|
creator_user_id: string;
|
2022-10-12 10:21:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface RecentProcessModel {
|
2022-11-09 22:24:16 -05:00
|
|
|
processGroupIdentifier?: string;
|
2022-10-12 10:21:49 -04:00
|
|
|
processModelIdentifier: string;
|
|
|
|
processModelDisplayName: string;
|
|
|
|
}
|
|
|
|
|
2022-11-16 16:53:51 -05:00
|
|
|
export interface ProcessReference {
|
2022-11-07 14:35:49 -05:00
|
|
|
id: string; // The unique id of the process or decision table.
|
2022-11-16 16:53:51 -05:00
|
|
|
name: string; // The process or decision Display name.
|
|
|
|
identifier: string;
|
|
|
|
display_name: string;
|
|
|
|
process_group_id: string;
|
|
|
|
process_model_id: string;
|
2022-11-07 14:35:49 -05:00
|
|
|
type: string; // either "decision" or "process"
|
2022-11-16 16:53:51 -05:00
|
|
|
file_name: string;
|
|
|
|
has_lanes: boolean;
|
|
|
|
is_executable: boolean;
|
|
|
|
is_primary: boolean;
|
2022-11-07 14:35:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface ProcessFile {
|
|
|
|
content_type: string;
|
|
|
|
last_modified: string;
|
|
|
|
name: string;
|
|
|
|
process_model_id: string;
|
2022-11-16 16:53:51 -05:00
|
|
|
references: ProcessReference[];
|
2022-11-07 14:35:49 -05:00
|
|
|
size: number;
|
|
|
|
type: string;
|
2022-11-08 12:08:18 -05:00
|
|
|
file_contents?: string;
|
2022-11-07 14:35:49 -05:00
|
|
|
}
|
|
|
|
|
2022-11-18 16:40:49 -05:00
|
|
|
export interface ProcessInstance {
|
|
|
|
id: number;
|
|
|
|
process_model_identifier: string;
|
|
|
|
}
|
|
|
|
|
2022-11-22 09:35:42 -05:00
|
|
|
export interface ProcessInstanceReport {
|
|
|
|
id: string;
|
|
|
|
display_name: string;
|
|
|
|
}
|
|
|
|
|
2022-10-12 10:21:49 -04:00
|
|
|
export interface ProcessModel {
|
|
|
|
id: string;
|
2022-11-07 18:37:46 -05:00
|
|
|
description: string;
|
2022-10-12 10:21:49 -04:00
|
|
|
display_name: string;
|
|
|
|
primary_file_name: string;
|
2022-11-07 14:35:49 -05:00
|
|
|
files: ProcessFile[];
|
2022-10-12 10:21:49 -04:00
|
|
|
}
|
|
|
|
|
2022-11-18 12:42:08 -05:00
|
|
|
export interface ProcessGroup {
|
|
|
|
id: string;
|
|
|
|
display_name: string;
|
|
|
|
description?: string | null;
|
|
|
|
process_models?: ProcessModel[];
|
|
|
|
process_groups?: ProcessGroup[];
|
|
|
|
}
|
|
|
|
|
2022-10-12 10:21:49 -04:00
|
|
|
// tuple of display value and URL
|
2022-11-07 14:23:19 -05:00
|
|
|
export type HotCrumbItem = [displayValue: string, url?: string];
|
2022-10-18 16:41:13 -04:00
|
|
|
|
|
|
|
export interface ErrorForDisplay {
|
|
|
|
message: string;
|
|
|
|
sentry_link?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface AuthenticationParam {
|
|
|
|
id: string;
|
|
|
|
type: string;
|
|
|
|
required: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface AuthenticationItem {
|
|
|
|
id: string;
|
|
|
|
parameters: AuthenticationParam[];
|
|
|
|
}
|
2022-11-01 16:26:24 -04:00
|
|
|
|
|
|
|
export interface PaginationObject {
|
|
|
|
count: number;
|
|
|
|
total: number;
|
|
|
|
pages: number;
|
|
|
|
}
|
2022-11-02 17:16:41 -04:00
|
|
|
|
|
|
|
export interface CarbonComboBoxSelection {
|
|
|
|
selectedItem: ProcessModel;
|
|
|
|
}
|
2022-11-15 14:40:35 -05:00
|
|
|
|
2022-11-16 16:53:51 -05:00
|
|
|
export interface CarbonComboBoxProcessSelection {
|
|
|
|
selectedItem: ProcessReference;
|
|
|
|
}
|
|
|
|
|
2022-11-15 14:40:35 -05:00
|
|
|
export interface PermissionsToCheck {
|
|
|
|
[key: string]: string[];
|
|
|
|
}
|
2022-11-16 13:03:59 -05:00
|
|
|
export interface PermissionVerbResults {
|
|
|
|
[key: string]: boolean;
|
2022-11-15 14:40:35 -05:00
|
|
|
}
|
|
|
|
export interface PermissionCheckResult {
|
|
|
|
[key: string]: PermissionVerbResults;
|
|
|
|
}
|
2022-11-16 13:03:59 -05:00
|
|
|
export interface PermissionCheckResponseBody {
|
|
|
|
results: PermissionCheckResult;
|
2022-11-15 14:40:35 -05:00
|
|
|
}
|
2022-11-19 19:44:21 -05:00
|
|
|
|
|
|
|
export interface FormField {
|
|
|
|
id: string;
|
|
|
|
title: string;
|
|
|
|
required: boolean;
|
2022-11-19 20:55:27 -05:00
|
|
|
type: string;
|
|
|
|
enum: string[];
|
2022-11-19 19:44:21 -05:00
|
|
|
}
|