@topconsultnpm/sdk-ts 6.21.0-dev2.9 → 6.21.0-dev3.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,6 +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<DossierTypeDescriptor>;
|
|
94
|
+
RetrieveAllAdminAsync(): Promise<DossierTypeDescriptor[]>;
|
|
93
95
|
RetrieveAsync(id: number): Promise<CaseFlowTemplateDescriptor | undefined>;
|
|
94
96
|
RetrieveAllAsync(): Promise<CaseFlowTemplateDescriptor[] | undefined>;
|
|
95
97
|
UpdateAsync(d: CaseFlowTemplateDescriptor): Promise<number | undefined>;
|
|
@@ -1089,7 +1091,7 @@ export interface IBasketEngine {
|
|
|
1089
1091
|
export interface IBasketTypeEngine extends IAdminEngine<BasketTypeDescriptor>, INotAdminEngine<BasketTypeDescriptor> {
|
|
1090
1092
|
RetrieveAllAsync(refreshCache?: boolean): Promise<BasketTypeDescriptor[] | undefined>;
|
|
1091
1093
|
}
|
|
1092
|
-
export interface ICaseFlowTemplateEngine extends INotAdminEngine<CaseFlowTemplateDescriptor> {
|
|
1094
|
+
export interface ICaseFlowTemplateEngine extends IAdminEngine<CaseFlowTemplateDescriptor>, INotAdminEngine<CaseFlowTemplateDescriptor> {
|
|
1093
1095
|
}
|
|
1094
1096
|
export interface IDataListEngine extends IAdminEngine<DataListDescriptor>, INotAdminEngine<DataListDescriptor> {
|
|
1095
1097
|
RetrieveAllAdminAsync(retrieveItems?: boolean): Promise<DataListDescriptor[] | undefined>;
|
|
@@ -2141,7 +2141,8 @@ export declare class CaseFlowTemplateDescriptor extends OwnedDescriptor {
|
|
|
2141
2141
|
dcmts?: CaseFlowDcmt[] | undefined;
|
|
2142
2142
|
stateDefinitions?: CaseFlowStateDefinition[] | undefined;
|
|
2143
2143
|
stateTransitionRules?: CaseFlowStateTransitionRule[] | undefined;
|
|
2144
|
-
|
|
2144
|
+
mtid?: number;
|
|
2145
|
+
witid?: number;
|
|
2145
2146
|
templateParticipants?: CaseFlowParticipant[] | undefined;
|
|
2146
2147
|
templateActions?: CaseFlowAction[] | undefined;
|
|
2147
2148
|
init(_data?: any): void;
|