@topconsultnpm/sdk-ts 6.21.0-dev3.3 → 6.21.0-dev3.5
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.
|
@@ -1973,7 +1973,9 @@ export declare enum CF_States {
|
|
|
1973
1973
|
export declare enum CF_WorkItemCategories {
|
|
1974
1974
|
Approval = "Approval",
|
|
1975
1975
|
Signature = "Signature",
|
|
1976
|
-
MoreInfo = "MoreInfo"
|
|
1976
|
+
MoreInfo = "MoreInfo",
|
|
1977
|
+
Acknowledgment = "Acknowledgment",
|
|
1978
|
+
DataCompletion = "DataCompletion"
|
|
1977
1979
|
}
|
|
1978
1980
|
export declare enum CF_WorkItemStates {
|
|
1979
1981
|
Pending = "Pending",
|
|
@@ -2000,23 +2002,19 @@ export declare class CaseFlowAction extends BaseDescriptor {
|
|
|
2000
2002
|
state?: CF_States;
|
|
2001
2003
|
isCurrent?: boolean;
|
|
2002
2004
|
dueDate?: Date | undefined;
|
|
2003
|
-
isConditional?: boolean;
|
|
2004
2005
|
completionType?: CF_CompletionTypes;
|
|
2005
2006
|
completeLabel?: string | undefined;
|
|
2006
2007
|
rejectLabel?: string | undefined;
|
|
2007
2008
|
claimedByUserId?: number;
|
|
2008
|
-
claimedByUserName?: string | undefined;
|
|
2009
2009
|
dependsOnActionIds?: number[] | undefined;
|
|
2010
2010
|
autoTriggerType?: CF_AutoTriggerTypes;
|
|
2011
|
-
triggerTID?: number;
|
|
2012
2011
|
onCompleteStateId?: number;
|
|
2013
2012
|
isFinal?: boolean;
|
|
2014
2013
|
dueDays?: number;
|
|
2015
|
-
|
|
2016
|
-
conditionValue?: string | undefined;
|
|
2014
|
+
conditionalQd?: QueryDescriptor;
|
|
2017
2015
|
workItemCategory?: CF_WorkItemCategories;
|
|
2018
2016
|
assignees?: CaseFlowAssigneeDescriptor[] | undefined;
|
|
2019
|
-
|
|
2017
|
+
actionTID?: number;
|
|
2020
2018
|
assigneesSetRule?: WorkItemSetRules;
|
|
2021
2019
|
init(_data?: any): void;
|
|
2022
2020
|
static fromJS(data: any): CaseFlowAction;
|
|
@@ -2102,7 +2100,6 @@ export declare class CaseFlowInstanceDescriptor extends OwnedDescriptor {
|
|
|
2102
2100
|
}
|
|
2103
2101
|
export declare class CaseFlowParticipant extends BaseTimeDescriptor {
|
|
2104
2102
|
userId?: number;
|
|
2105
|
-
userName?: string | undefined;
|
|
2106
2103
|
role?: CF_ParticipantRoles;
|
|
2107
2104
|
guestPermissions?: CaseFlowGuestPermissions;
|
|
2108
2105
|
init(_data?: any): void;
|