@topconsultnpm/sdk-ts 6.21.0-dev5.2 → 6.21.0-dev5.3
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>;
|
|
@@ -1934,6 +1934,7 @@ export declare enum CDPSearchModes {
|
|
|
1934
1934
|
Aggregata = "Aggregata"
|
|
1935
1935
|
}
|
|
1936
1936
|
export declare enum CF_AssigneeTypes {
|
|
1937
|
+
None = "None",
|
|
1937
1938
|
User = "User",
|
|
1938
1939
|
Group = "Group",
|
|
1939
1940
|
Metadata = "Metadata",
|
|
@@ -1979,11 +1980,14 @@ export declare enum CF_States {
|
|
|
1979
1980
|
Rejected = "Rejected"
|
|
1980
1981
|
}
|
|
1981
1982
|
export declare enum CF_WorkItemCategories {
|
|
1983
|
+
None = "None",
|
|
1984
|
+
Generic = "Generic",
|
|
1982
1985
|
Approval = "Approval",
|
|
1983
1986
|
Signature = "Signature",
|
|
1984
1987
|
MoreInfo = "MoreInfo",
|
|
1985
1988
|
Acknowledgment = "Acknowledgment",
|
|
1986
|
-
DataCompletion = "DataCompletion"
|
|
1989
|
+
DataCompletion = "DataCompletion",
|
|
1990
|
+
Upload = "Upload"
|
|
1987
1991
|
}
|
|
1988
1992
|
export declare enum CF_WorkItemStates {
|
|
1989
1993
|
Pending = "Pending",
|
|
@@ -2142,11 +2146,9 @@ export declare class CaseFlowTemplateDescriptor extends OwnedDescriptor {
|
|
|
2142
2146
|
dcmts?: CaseFlowDcmt[] | undefined;
|
|
2143
2147
|
stateDefinitions?: CaseFlowStateDefinition[] | undefined;
|
|
2144
2148
|
stateTransitionRules?: CaseFlowStateTransitionRule[] | undefined;
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
templateParticipants?: CaseFlowParticipant[] | undefined;
|
|
2149
|
-
templateActions?: CaseFlowAction[] | undefined;
|
|
2149
|
+
cover?: MetadataDescriptor[] | undefined;
|
|
2150
|
+
participants?: CaseFlowParticipant[] | undefined;
|
|
2151
|
+
actions?: CaseFlowAction[] | undefined;
|
|
2150
2152
|
init(_data?: any): void;
|
|
2151
2153
|
static fromJS(data: any): CaseFlowTemplateDescriptor;
|
|
2152
2154
|
toJSON(data?: any): any;
|