tencentcloud-sdk-nodejs-ess 4.0.595 → 4.0.597
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/CHANGELOG.md +506 -0
- package/SERVICE_CHANGELOG.md +623 -85
- package/package.json +1 -1
- package/products.md +34 -34
- package/src/services/ess/v20201111/ess_client.ts +14 -2
- package/src/services/ess/v20201111/ess_models.ts +101 -66
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +5 -1
- package/tencentcloud/services/ess/v20201111/ess_client.js +6 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +89 -59
|
@@ -1618,6 +1618,19 @@ export interface FormField {
|
|
|
1618
1618
|
*/
|
|
1619
1619
|
ComponentName?: string;
|
|
1620
1620
|
}
|
|
1621
|
+
/**
|
|
1622
|
+
* CreateChannelSubOrganizationModifyQrCode请求参数结构体
|
|
1623
|
+
*/
|
|
1624
|
+
export interface CreateChannelSubOrganizationModifyQrCodeRequest {
|
|
1625
|
+
/**
|
|
1626
|
+
* 操作人
|
|
1627
|
+
*/
|
|
1628
|
+
Operator: UserInfo;
|
|
1629
|
+
/**
|
|
1630
|
+
* 应用编号
|
|
1631
|
+
*/
|
|
1632
|
+
ApplicationId: string;
|
|
1633
|
+
}
|
|
1621
1634
|
/**
|
|
1622
1635
|
* 用户信息
|
|
1623
1636
|
*/
|
|
@@ -1891,21 +1904,64 @@ export interface CreateDocumentRequest {
|
|
|
1891
1904
|
ClientToken?: string;
|
|
1892
1905
|
}
|
|
1893
1906
|
/**
|
|
1894
|
-
*
|
|
1907
|
+
* 此结构体(FlowDetailInfo)描述的是合同(流程)的详细信息
|
|
1895
1908
|
*/
|
|
1896
|
-
export interface
|
|
1909
|
+
export interface FlowDetailInfo {
|
|
1897
1910
|
/**
|
|
1898
|
-
*
|
|
1911
|
+
* 合同(流程)的Id
|
|
1899
1912
|
*/
|
|
1900
|
-
|
|
1913
|
+
FlowId: string;
|
|
1901
1914
|
/**
|
|
1902
|
-
* 合同
|
|
1915
|
+
* 合同(流程)的名字
|
|
1903
1916
|
*/
|
|
1904
|
-
|
|
1917
|
+
FlowName: string;
|
|
1905
1918
|
/**
|
|
1906
|
-
|
|
1919
|
+
* 合同(流程)的类型
|
|
1920
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1921
|
+
*/
|
|
1922
|
+
FlowType: string;
|
|
1923
|
+
/**
|
|
1924
|
+
* 流程状态
|
|
1925
|
+
- 0 还没有发起
|
|
1926
|
+
- 1 未签署
|
|
1927
|
+
- 2 部分签署
|
|
1928
|
+
- 3 已退回
|
|
1929
|
+
- 4 完成签署
|
|
1930
|
+
- 5 已过期
|
|
1931
|
+
- 6 已取消
|
|
1932
|
+
- 7 还没有预发起
|
|
1933
|
+
- 8 等待填写
|
|
1934
|
+
- 9 部分填写
|
|
1935
|
+
- 10 拒填
|
|
1936
|
+
*/
|
|
1937
|
+
FlowStatus: number;
|
|
1938
|
+
/**
|
|
1939
|
+
* 合同(流程)的信息
|
|
1940
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1941
|
+
*/
|
|
1942
|
+
FlowMessage: string;
|
|
1943
|
+
/**
|
|
1944
|
+
* 流程的描述
|
|
1945
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1946
|
+
*/
|
|
1947
|
+
FlowDescription: string;
|
|
1948
|
+
/**
|
|
1949
|
+
* 合同(流程)的创建时间戳
|
|
1907
1950
|
*/
|
|
1908
|
-
|
|
1951
|
+
CreatedOn: number;
|
|
1952
|
+
/**
|
|
1953
|
+
* 合同(流程)的签署人数组
|
|
1954
|
+
*/
|
|
1955
|
+
FlowApproverInfos: Array<FlowApproverDetail>;
|
|
1956
|
+
/**
|
|
1957
|
+
* 合同(流程)的关注方信息列表
|
|
1958
|
+
*/
|
|
1959
|
+
CcInfos?: Array<FlowApproverDetail>;
|
|
1960
|
+
/**
|
|
1961
|
+
* 合同发起人UserId
|
|
1962
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1963
|
+
*/
|
|
1964
|
+
Creator?: string;
|
|
1909
1965
|
}
|
|
1910
1966
|
/**
|
|
1911
1967
|
* CreatePreparedPersonalEsign返回参数结构体
|
|
@@ -2117,64 +2173,21 @@ export interface CreateIntegrationUserRolesRequest {
|
|
|
2117
2173
|
Agent?: Agent;
|
|
2118
2174
|
}
|
|
2119
2175
|
/**
|
|
2120
|
-
*
|
|
2176
|
+
* CreateChannelSubOrganizationModifyQrCode返回参数结构体
|
|
2121
2177
|
*/
|
|
2122
|
-
export interface
|
|
2178
|
+
export interface CreateChannelSubOrganizationModifyQrCodeResponse {
|
|
2123
2179
|
/**
|
|
2124
|
-
*
|
|
2180
|
+
* 二维码下载链接
|
|
2125
2181
|
*/
|
|
2126
|
-
|
|
2182
|
+
QrCodeUrl?: string;
|
|
2127
2183
|
/**
|
|
2128
|
-
*
|
|
2184
|
+
* 二维码失效时间 unix 时间戳 精确到秒
|
|
2129
2185
|
*/
|
|
2130
|
-
|
|
2131
|
-
/**
|
|
2132
|
-
* 合同(流程)的类型
|
|
2133
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2134
|
-
*/
|
|
2135
|
-
FlowType: string;
|
|
2136
|
-
/**
|
|
2137
|
-
* 流程状态
|
|
2138
|
-
- 0 还没有发起
|
|
2139
|
-
- 1 未签署
|
|
2140
|
-
- 2 部分签署
|
|
2141
|
-
- 3 已退回
|
|
2142
|
-
- 4 完成签署
|
|
2143
|
-
- 5 已过期
|
|
2144
|
-
- 6 已取消
|
|
2145
|
-
- 7 还没有预发起
|
|
2146
|
-
- 8 等待填写
|
|
2147
|
-
- 9 部分填写
|
|
2148
|
-
- 10 拒填
|
|
2149
|
-
*/
|
|
2150
|
-
FlowStatus: number;
|
|
2151
|
-
/**
|
|
2152
|
-
* 合同(流程)的信息
|
|
2153
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2154
|
-
*/
|
|
2155
|
-
FlowMessage: string;
|
|
2156
|
-
/**
|
|
2157
|
-
* 流程的描述
|
|
2158
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2159
|
-
*/
|
|
2160
|
-
FlowDescription: string;
|
|
2186
|
+
ExpiredTime?: number;
|
|
2161
2187
|
/**
|
|
2162
|
-
*
|
|
2163
|
-
*/
|
|
2164
|
-
CreatedOn: number;
|
|
2165
|
-
/**
|
|
2166
|
-
* 合同(流程)的签署人数组
|
|
2167
|
-
*/
|
|
2168
|
-
FlowApproverInfos: Array<FlowApproverDetail>;
|
|
2169
|
-
/**
|
|
2170
|
-
* 合同(流程)的关注方信息列表
|
|
2188
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2171
2189
|
*/
|
|
2172
|
-
|
|
2173
|
-
/**
|
|
2174
|
-
* 合同发起人UserId
|
|
2175
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2176
|
-
*/
|
|
2177
|
-
Creator?: string;
|
|
2190
|
+
RequestId?: string;
|
|
2178
2191
|
}
|
|
2179
2192
|
/**
|
|
2180
2193
|
* 更新员工信息成功返回的数据信息
|
|
@@ -2504,6 +2517,23 @@ export interface DescribeIntegrationMainOrganizationUserResponse {
|
|
|
2504
2517
|
*/
|
|
2505
2518
|
RequestId?: string;
|
|
2506
2519
|
}
|
|
2520
|
+
/**
|
|
2521
|
+
* 催办接口返回详细信息
|
|
2522
|
+
*/
|
|
2523
|
+
export interface RemindFlowRecords {
|
|
2524
|
+
/**
|
|
2525
|
+
* 是否能够催办
|
|
2526
|
+
*/
|
|
2527
|
+
CanRemind: boolean;
|
|
2528
|
+
/**
|
|
2529
|
+
* 合同id
|
|
2530
|
+
*/
|
|
2531
|
+
FlowId: string;
|
|
2532
|
+
/**
|
|
2533
|
+
* 催办详情
|
|
2534
|
+
*/
|
|
2535
|
+
RemindMessage: string;
|
|
2536
|
+
}
|
|
2507
2537
|
/**
|
|
2508
2538
|
* 创建员工的失败数据
|
|
2509
2539
|
*/
|