@topconsultnpm/sdk-ts 6.21.0-dev2.5 → 6.21.0-dev2.6
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.
|
@@ -1915,6 +1915,62 @@ export declare enum CDPSearchModes {
|
|
|
1915
1915
|
Puntuale = "Puntuale",
|
|
1916
1916
|
Aggregata = "Aggregata"
|
|
1917
1917
|
}
|
|
1918
|
+
export declare enum CF_AssigneeTypes {
|
|
1919
|
+
User = "User",
|
|
1920
|
+
Group = "Group",
|
|
1921
|
+
Metadata = "Metadata",
|
|
1922
|
+
Query = "Query"
|
|
1923
|
+
}
|
|
1924
|
+
export declare enum CF_AutoTriggerTypes {
|
|
1925
|
+
None = "None",
|
|
1926
|
+
DocumentUpload = "DocumentUpload"
|
|
1927
|
+
}
|
|
1928
|
+
export declare enum CF_BlogAccessLevel {
|
|
1929
|
+
None = "None",
|
|
1930
|
+
ReadOnly = "ReadOnly",
|
|
1931
|
+
Full = "Full"
|
|
1932
|
+
}
|
|
1933
|
+
export declare enum CF_CompletionTypes {
|
|
1934
|
+
Manual = "Manual",
|
|
1935
|
+
Automatic = "Automatic",
|
|
1936
|
+
Claimable = "Claimable"
|
|
1937
|
+
}
|
|
1938
|
+
export declare enum CF_DocAccessLevel {
|
|
1939
|
+
None = "None",
|
|
1940
|
+
View = "View",
|
|
1941
|
+
Upload = "Upload",
|
|
1942
|
+
Full = "Full"
|
|
1943
|
+
}
|
|
1944
|
+
export declare enum CF_FlowModes {
|
|
1945
|
+
Sequential = "Sequential",
|
|
1946
|
+
Parallel = "Parallel"
|
|
1947
|
+
}
|
|
1948
|
+
export declare enum CF_ParticipantRoles {
|
|
1949
|
+
None = "None",
|
|
1950
|
+
Owner = "Owner",
|
|
1951
|
+
Supervisor = "Supervisor",
|
|
1952
|
+
Participant = "Participant",
|
|
1953
|
+
Viewer = "Viewer",
|
|
1954
|
+
Guest = "Guest"
|
|
1955
|
+
}
|
|
1956
|
+
export declare enum CF_States {
|
|
1957
|
+
None = "None",
|
|
1958
|
+
ToDo = "ToDo",
|
|
1959
|
+
InProgress = "InProgress",
|
|
1960
|
+
Completed = "Completed",
|
|
1961
|
+
Rejected = "Rejected"
|
|
1962
|
+
}
|
|
1963
|
+
export declare enum CF_WorkItemCategories {
|
|
1964
|
+
Approval = "Approval",
|
|
1965
|
+
Signature = "Signature",
|
|
1966
|
+
MoreInfo = "MoreInfo"
|
|
1967
|
+
}
|
|
1968
|
+
export declare enum CF_WorkItemStates {
|
|
1969
|
+
Pending = "Pending",
|
|
1970
|
+
Completed = "Completed",
|
|
1971
|
+
Rejected = "Rejected",
|
|
1972
|
+
MoreInfo = "MoreInfo"
|
|
1973
|
+
}
|
|
1918
1974
|
export declare class COSCheckerJobDescriptor extends JobDescriptor {
|
|
1919
1975
|
checkExt?: number;
|
|
1920
1976
|
checkMimeType?: number;
|
|
@@ -1929,6 +1985,182 @@ export declare enum COSDocTypes {
|
|
|
1929
1985
|
DAI = "DAI",
|
|
1930
1986
|
AI = "AI"
|
|
1931
1987
|
}
|
|
1988
|
+
export declare class CaseFlowAction extends BaseDescriptor {
|
|
1989
|
+
order?: number;
|
|
1990
|
+
state?: CF_States;
|
|
1991
|
+
isCurrent?: boolean;
|
|
1992
|
+
dueDate?: Date | undefined;
|
|
1993
|
+
isConditional?: boolean;
|
|
1994
|
+
completionType?: CF_CompletionTypes;
|
|
1995
|
+
claimedByUserId?: number;
|
|
1996
|
+
claimedByUserName?: string | undefined;
|
|
1997
|
+
dependsOnActionIds?: number[] | undefined;
|
|
1998
|
+
autoTriggerType?: CF_AutoTriggerTypes;
|
|
1999
|
+
triggerTID?: number;
|
|
2000
|
+
onCompleteStateId?: number;
|
|
2001
|
+
isFinal?: boolean;
|
|
2002
|
+
dueDays?: number;
|
|
2003
|
+
conditionMetadataId?: number;
|
|
2004
|
+
conditionValue?: string | undefined;
|
|
2005
|
+
workItemCategory?: CF_WorkItemCategories;
|
|
2006
|
+
assignees?: CaseFlowAssigneeDescriptor[] | undefined;
|
|
2007
|
+
signatureTID?: number;
|
|
2008
|
+
assigneesSetRule?: WorkItemSetRules;
|
|
2009
|
+
init(_data?: any): void;
|
|
2010
|
+
static fromJS(data: any): CaseFlowAction;
|
|
2011
|
+
toJSON(data?: any): any;
|
|
2012
|
+
}
|
|
2013
|
+
export declare class CaseFlowActionTrackingEntry {
|
|
2014
|
+
actionId?: number;
|
|
2015
|
+
actionName?: string | undefined;
|
|
2016
|
+
completedByUserId?: number;
|
|
2017
|
+
completedByUserName?: string | undefined;
|
|
2018
|
+
startTime?: Date | undefined;
|
|
2019
|
+
completionTime?: Date | undefined;
|
|
2020
|
+
durationMinutes?: number;
|
|
2021
|
+
notes?: string | undefined;
|
|
2022
|
+
init(_data?: any): void;
|
|
2023
|
+
static fromJS(data: any): CaseFlowActionTrackingEntry;
|
|
2024
|
+
toJSON(data?: any): any;
|
|
2025
|
+
}
|
|
2026
|
+
export declare class CaseFlowAssigneeDescriptor {
|
|
2027
|
+
type?: CF_AssigneeTypes;
|
|
2028
|
+
id?: number;
|
|
2029
|
+
or?: number;
|
|
2030
|
+
displayName?: string | undefined;
|
|
2031
|
+
qd?: QueryDescriptor;
|
|
2032
|
+
init(_data?: any): void;
|
|
2033
|
+
static fromJS(data: any): CaseFlowAssigneeDescriptor;
|
|
2034
|
+
toJSON(data?: any): any;
|
|
2035
|
+
}
|
|
2036
|
+
export declare class CaseFlowDcmt {
|
|
2037
|
+
id?: number;
|
|
2038
|
+
tid?: number;
|
|
2039
|
+
did?: number;
|
|
2040
|
+
name?: string | undefined;
|
|
2041
|
+
fileExt?: string | undefined;
|
|
2042
|
+
state?: CF_States;
|
|
2043
|
+
required?: boolean;
|
|
2044
|
+
min?: number;
|
|
2045
|
+
max?: number;
|
|
2046
|
+
iconColor?: string | undefined;
|
|
2047
|
+
archivedDate?: Date | undefined;
|
|
2048
|
+
init(_data?: any): void;
|
|
2049
|
+
static fromJS(data: any): CaseFlowDcmt;
|
|
2050
|
+
toJSON(data?: any): any;
|
|
2051
|
+
}
|
|
2052
|
+
export declare class CaseFlowGuestDocPermission {
|
|
2053
|
+
tid?: number;
|
|
2054
|
+
access?: CF_DocAccessLevel;
|
|
2055
|
+
init(_data?: any): void;
|
|
2056
|
+
static fromJS(data: any): CaseFlowGuestDocPermission;
|
|
2057
|
+
toJSON(data?: any): any;
|
|
2058
|
+
}
|
|
2059
|
+
export declare class CaseFlowGuestPermissions {
|
|
2060
|
+
canEditCover?: boolean;
|
|
2061
|
+
canViewActions?: boolean;
|
|
2062
|
+
blogAccess?: CF_BlogAccessLevel;
|
|
2063
|
+
docAccessDefault?: CF_DocAccessLevel;
|
|
2064
|
+
docPermissions?: CaseFlowGuestDocPermission[] | undefined;
|
|
2065
|
+
init(_data?: any): void;
|
|
2066
|
+
static fromJS(data: any): CaseFlowGuestPermissions;
|
|
2067
|
+
toJSON(data?: any): any;
|
|
2068
|
+
}
|
|
2069
|
+
export declare class CaseFlowInstanceDescriptor extends OwnedDescriptor {
|
|
2070
|
+
templateId?: number;
|
|
2071
|
+
templateName?: string | undefined;
|
|
2072
|
+
state?: CF_States;
|
|
2073
|
+
progress?: number;
|
|
2074
|
+
expirationDate?: Date | undefined;
|
|
2075
|
+
expirationWarningDays?: number;
|
|
2076
|
+
isHist?: number;
|
|
2077
|
+
newPosts?: number;
|
|
2078
|
+
flowMode?: CF_FlowModes;
|
|
2079
|
+
actions?: CaseFlowAction[] | undefined;
|
|
2080
|
+
dcmts?: CaseFlowDcmt[] | undefined;
|
|
2081
|
+
blogPosts?: BlogPost[] | undefined;
|
|
2082
|
+
participants?: CaseFlowParticipant[] | undefined;
|
|
2083
|
+
metadata?: MetadataValueDescriptor[] | undefined;
|
|
2084
|
+
workItems?: CaseFlowWorkItem[] | undefined;
|
|
2085
|
+
stateEntries?: CaseFlowStateEntry[] | undefined;
|
|
2086
|
+
actionTracking?: CaseFlowActionTrackingEntry[] | undefined;
|
|
2087
|
+
init(_data?: any): void;
|
|
2088
|
+
static fromJS(data: any): CaseFlowInstanceDescriptor;
|
|
2089
|
+
toJSON(data?: any): any;
|
|
2090
|
+
}
|
|
2091
|
+
export declare class CaseFlowParticipant extends BaseTimeDescriptor {
|
|
2092
|
+
userId?: number;
|
|
2093
|
+
userName?: string | undefined;
|
|
2094
|
+
role?: CF_ParticipantRoles;
|
|
2095
|
+
guestPermissions?: CaseFlowGuestPermissions;
|
|
2096
|
+
init(_data?: any): void;
|
|
2097
|
+
static fromJS(data: any): CaseFlowParticipant;
|
|
2098
|
+
toJSON(data?: any): any;
|
|
2099
|
+
}
|
|
2100
|
+
export declare class CaseFlowStateDefinition extends BaseDescriptor {
|
|
2101
|
+
order?: number;
|
|
2102
|
+
init(_data?: any): void;
|
|
2103
|
+
static fromJS(data: any): CaseFlowStateDefinition;
|
|
2104
|
+
toJSON(data?: any): any;
|
|
2105
|
+
}
|
|
2106
|
+
export declare class CaseFlowStateEntry {
|
|
2107
|
+
stateId?: number;
|
|
2108
|
+
name?: string | undefined;
|
|
2109
|
+
order?: number;
|
|
2110
|
+
reached?: boolean;
|
|
2111
|
+
reachedTime?: Date | undefined;
|
|
2112
|
+
isCurrent?: boolean;
|
|
2113
|
+
init(_data?: any): void;
|
|
2114
|
+
static fromJS(data: any): CaseFlowStateEntry;
|
|
2115
|
+
toJSON(data?: any): any;
|
|
2116
|
+
}
|
|
2117
|
+
export declare class CaseFlowStateTransitionRule {
|
|
2118
|
+
id?: number;
|
|
2119
|
+
targetStateId?: number;
|
|
2120
|
+
requiredActionIds?: number[] | undefined;
|
|
2121
|
+
operator?: string | undefined;
|
|
2122
|
+
description?: string | undefined;
|
|
2123
|
+
init(_data?: any): void;
|
|
2124
|
+
static fromJS(data: any): CaseFlowStateTransitionRule;
|
|
2125
|
+
toJSON(data?: any): any;
|
|
2126
|
+
}
|
|
2127
|
+
export declare class CaseFlowTemplateDescriptor extends OwnedDescriptor {
|
|
2128
|
+
expirationDays?: number;
|
|
2129
|
+
warningDays?: number;
|
|
2130
|
+
flowMode?: CF_FlowModes;
|
|
2131
|
+
dcmts?: CaseFlowDcmt[] | undefined;
|
|
2132
|
+
stateDefinitions?: CaseFlowStateDefinition[] | undefined;
|
|
2133
|
+
stateTransitionRules?: CaseFlowStateTransitionRule[] | undefined;
|
|
2134
|
+
tid?: number;
|
|
2135
|
+
templateParticipants?: CaseFlowParticipant[] | undefined;
|
|
2136
|
+
templateActions?: CaseFlowAction[] | undefined;
|
|
2137
|
+
init(_data?: any): void;
|
|
2138
|
+
static fromJS(data: any): CaseFlowTemplateDescriptor;
|
|
2139
|
+
toJSON(data?: any): any;
|
|
2140
|
+
}
|
|
2141
|
+
export declare class CaseFlowWorkItem {
|
|
2142
|
+
id?: number;
|
|
2143
|
+
caseFlowId?: number;
|
|
2144
|
+
actionId?: number;
|
|
2145
|
+
actionName?: string | undefined;
|
|
2146
|
+
workItemCategory?: CF_WorkItemCategories;
|
|
2147
|
+
description?: string | undefined;
|
|
2148
|
+
completeLabel?: string | undefined;
|
|
2149
|
+
rejectLabel?: string | undefined;
|
|
2150
|
+
fromUserId?: number;
|
|
2151
|
+
fromUserName?: string | undefined;
|
|
2152
|
+
toUserId?: number;
|
|
2153
|
+
toUserName?: string | undefined;
|
|
2154
|
+
state?: CF_WorkItemStates;
|
|
2155
|
+
response?: string | undefined;
|
|
2156
|
+
creationTime?: Date | undefined;
|
|
2157
|
+
completionTime?: Date | undefined;
|
|
2158
|
+
dueDate?: Date | undefined;
|
|
2159
|
+
parentWorkItemId?: number;
|
|
2160
|
+
init(_data?: any): void;
|
|
2161
|
+
static fromJS(data: any): CaseFlowWorkItem;
|
|
2162
|
+
toJSON(data?: any): any;
|
|
2163
|
+
}
|
|
1932
2164
|
export declare class CassettoDoganaleDistillerJobDescriptor extends JobDescriptor {
|
|
1933
2165
|
inputFolder?: string | undefined;
|
|
1934
2166
|
fileType?: CDFileTypes;
|