@topconsultnpm/sdk-ts 6.21.0-dev5.2 → 6.21.0-dev6.2
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/dist/types/Engine.d.ts
CHANGED
|
@@ -90,8 +90,8 @@ export declare class CaseFlowTemplateEngine extends BaseEngine implements ICaseF
|
|
|
90
90
|
static NewCaseFlowTemplateDescriptor(): CaseFlowTemplateDescriptor | undefined;
|
|
91
91
|
private static Normalize;
|
|
92
92
|
CreateAsync(d: CaseFlowTemplateDescriptor): Promise<number | undefined>;
|
|
93
|
-
RetrieveAdminAsync(id: number): Promise<
|
|
94
|
-
RetrieveAllAdminAsync(): Promise<
|
|
93
|
+
RetrieveAdminAsync(id: number): Promise<CaseFlowTemplateDescriptor>;
|
|
94
|
+
RetrieveAllAdminAsync(): Promise<CaseFlowTemplateDescriptor[]>;
|
|
95
95
|
RetrieveAsync(id: number): Promise<CaseFlowTemplateDescriptor | undefined>;
|
|
96
96
|
RetrieveAllAsync(): Promise<CaseFlowTemplateDescriptor[] | undefined>;
|
|
97
97
|
UpdateAsync(d: CaseFlowTemplateDescriptor): Promise<number | undefined>;
|
|
@@ -1431,6 +1431,7 @@ export declare enum AccessLevelsEx {
|
|
|
1431
1431
|
Deny = "Deny"
|
|
1432
1432
|
}
|
|
1433
1433
|
export declare class DocumentOperation {
|
|
1434
|
+
disabled?: boolean;
|
|
1434
1435
|
operationType?: DocumentOperations;
|
|
1435
1436
|
order?: number;
|
|
1436
1437
|
theFillFieldsOperation?: FillFieldsOperation;
|
|
@@ -1934,10 +1935,12 @@ export declare enum CDPSearchModes {
|
|
|
1934
1935
|
Aggregata = "Aggregata"
|
|
1935
1936
|
}
|
|
1936
1937
|
export declare enum CF_AssigneeTypes {
|
|
1938
|
+
None = "None",
|
|
1937
1939
|
User = "User",
|
|
1938
1940
|
Group = "Group",
|
|
1939
1941
|
Metadata = "Metadata",
|
|
1940
|
-
Query = "Query"
|
|
1942
|
+
Query = "Query",
|
|
1943
|
+
Starter = "Starter"
|
|
1941
1944
|
}
|
|
1942
1945
|
export declare enum CF_AutoTriggerTypes {
|
|
1943
1946
|
None = "None",
|
|
@@ -1979,11 +1982,14 @@ export declare enum CF_States {
|
|
|
1979
1982
|
Rejected = "Rejected"
|
|
1980
1983
|
}
|
|
1981
1984
|
export declare enum CF_WorkItemCategories {
|
|
1985
|
+
None = "None",
|
|
1986
|
+
Generic = "Generic",
|
|
1982
1987
|
Approval = "Approval",
|
|
1983
1988
|
Signature = "Signature",
|
|
1984
1989
|
MoreInfo = "MoreInfo",
|
|
1985
1990
|
Acknowledgment = "Acknowledgment",
|
|
1986
|
-
DataCompletion = "DataCompletion"
|
|
1991
|
+
DataCompletion = "DataCompletion",
|
|
1992
|
+
Upload = "Upload"
|
|
1987
1993
|
}
|
|
1988
1994
|
export declare enum CF_WorkItemStates {
|
|
1989
1995
|
Pending = "Pending",
|
|
@@ -2021,6 +2027,7 @@ export declare class CaseFlowAction extends BaseDescriptor {
|
|
|
2021
2027
|
dueDays?: number;
|
|
2022
2028
|
conditionalQd?: QueryDescriptor;
|
|
2023
2029
|
workItemCategory?: CF_WorkItemCategories;
|
|
2030
|
+
workItemDescription?: string | undefined;
|
|
2024
2031
|
assignees?: CaseFlowAssigneeDescriptor[] | undefined;
|
|
2025
2032
|
actionTID?: number;
|
|
2026
2033
|
assigneesSetRule?: WorkItemSetRules;
|
|
@@ -2142,11 +2149,9 @@ export declare class CaseFlowTemplateDescriptor extends OwnedDescriptor {
|
|
|
2142
2149
|
dcmts?: CaseFlowDcmt[] | undefined;
|
|
2143
2150
|
stateDefinitions?: CaseFlowStateDefinition[] | undefined;
|
|
2144
2151
|
stateTransitionRules?: CaseFlowStateTransitionRule[] | undefined;
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
templateParticipants?: CaseFlowParticipant[] | undefined;
|
|
2149
|
-
templateActions?: CaseFlowAction[] | undefined;
|
|
2152
|
+
cover?: MetadataDescriptor[] | undefined;
|
|
2153
|
+
participants?: CaseFlowParticipant[] | undefined;
|
|
2154
|
+
actions?: CaseFlowAction[] | undefined;
|
|
2150
2155
|
init(_data?: any): void;
|
|
2151
2156
|
static fromJS(data: any): CaseFlowTemplateDescriptor;
|
|
2152
2157
|
toJSON(data?: any): any;
|