@alicloud/aliding20230426 2.3.4 → 2.4.0
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/client.d.ts +1241 -53
- package/dist/client.js +2389 -145
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +3610 -773
package/dist/client.js
CHANGED
|
@@ -5493,6 +5493,112 @@ class DeleteWorkspaceMembersResponse extends $tea.Model {
|
|
|
5493
5493
|
}
|
|
5494
5494
|
}
|
|
5495
5495
|
exports.DeleteWorkspaceMembersResponse = DeleteWorkspaceMembersResponse;
|
|
5496
|
+
class ExecuteBatchTaskHeaders extends $tea.Model {
|
|
5497
|
+
constructor(map) {
|
|
5498
|
+
super(map);
|
|
5499
|
+
}
|
|
5500
|
+
static names() {
|
|
5501
|
+
return {
|
|
5502
|
+
commonHeaders: 'commonHeaders',
|
|
5503
|
+
accountContext: 'AccountContext',
|
|
5504
|
+
};
|
|
5505
|
+
}
|
|
5506
|
+
static types() {
|
|
5507
|
+
return {
|
|
5508
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5509
|
+
accountContext: ExecuteBatchTaskHeadersAccountContext,
|
|
5510
|
+
};
|
|
5511
|
+
}
|
|
5512
|
+
}
|
|
5513
|
+
exports.ExecuteBatchTaskHeaders = ExecuteBatchTaskHeaders;
|
|
5514
|
+
class ExecuteBatchTaskShrinkHeaders extends $tea.Model {
|
|
5515
|
+
constructor(map) {
|
|
5516
|
+
super(map);
|
|
5517
|
+
}
|
|
5518
|
+
static names() {
|
|
5519
|
+
return {
|
|
5520
|
+
commonHeaders: 'commonHeaders',
|
|
5521
|
+
accountContextShrink: 'AccountContext',
|
|
5522
|
+
};
|
|
5523
|
+
}
|
|
5524
|
+
static types() {
|
|
5525
|
+
return {
|
|
5526
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5527
|
+
accountContextShrink: 'string',
|
|
5528
|
+
};
|
|
5529
|
+
}
|
|
5530
|
+
}
|
|
5531
|
+
exports.ExecuteBatchTaskShrinkHeaders = ExecuteBatchTaskShrinkHeaders;
|
|
5532
|
+
class ExecuteBatchTaskRequest extends $tea.Model {
|
|
5533
|
+
constructor(map) {
|
|
5534
|
+
super(map);
|
|
5535
|
+
}
|
|
5536
|
+
static names() {
|
|
5537
|
+
return {
|
|
5538
|
+
appType: 'AppType',
|
|
5539
|
+
outResult: 'OutResult',
|
|
5540
|
+
remark: 'Remark',
|
|
5541
|
+
systemToken: 'SystemToken',
|
|
5542
|
+
taskInformationList: 'TaskInformationList',
|
|
5543
|
+
};
|
|
5544
|
+
}
|
|
5545
|
+
static types() {
|
|
5546
|
+
return {
|
|
5547
|
+
appType: 'string',
|
|
5548
|
+
outResult: 'string',
|
|
5549
|
+
remark: 'string',
|
|
5550
|
+
systemToken: 'string',
|
|
5551
|
+
taskInformationList: 'string',
|
|
5552
|
+
};
|
|
5553
|
+
}
|
|
5554
|
+
}
|
|
5555
|
+
exports.ExecuteBatchTaskRequest = ExecuteBatchTaskRequest;
|
|
5556
|
+
class ExecuteBatchTaskResponseBody extends $tea.Model {
|
|
5557
|
+
constructor(map) {
|
|
5558
|
+
super(map);
|
|
5559
|
+
}
|
|
5560
|
+
static names() {
|
|
5561
|
+
return {
|
|
5562
|
+
failNumber: 'failNumber',
|
|
5563
|
+
requestId: 'requestId',
|
|
5564
|
+
successNumber: 'successNumber',
|
|
5565
|
+
total: 'total',
|
|
5566
|
+
vendorRequestId: 'vendorRequestId',
|
|
5567
|
+
vendorType: 'vendorType',
|
|
5568
|
+
};
|
|
5569
|
+
}
|
|
5570
|
+
static types() {
|
|
5571
|
+
return {
|
|
5572
|
+
failNumber: 'number',
|
|
5573
|
+
requestId: 'string',
|
|
5574
|
+
successNumber: 'number',
|
|
5575
|
+
total: 'number',
|
|
5576
|
+
vendorRequestId: 'string',
|
|
5577
|
+
vendorType: 'string',
|
|
5578
|
+
};
|
|
5579
|
+
}
|
|
5580
|
+
}
|
|
5581
|
+
exports.ExecuteBatchTaskResponseBody = ExecuteBatchTaskResponseBody;
|
|
5582
|
+
class ExecuteBatchTaskResponse extends $tea.Model {
|
|
5583
|
+
constructor(map) {
|
|
5584
|
+
super(map);
|
|
5585
|
+
}
|
|
5586
|
+
static names() {
|
|
5587
|
+
return {
|
|
5588
|
+
headers: 'headers',
|
|
5589
|
+
statusCode: 'statusCode',
|
|
5590
|
+
body: 'body',
|
|
5591
|
+
};
|
|
5592
|
+
}
|
|
5593
|
+
static types() {
|
|
5594
|
+
return {
|
|
5595
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5596
|
+
statusCode: 'number',
|
|
5597
|
+
body: ExecuteBatchTaskResponseBody,
|
|
5598
|
+
};
|
|
5599
|
+
}
|
|
5600
|
+
}
|
|
5601
|
+
exports.ExecuteBatchTaskResponse = ExecuteBatchTaskResponse;
|
|
5496
5602
|
class ExecutePlatformTaskHeaders extends $tea.Model {
|
|
5497
5603
|
constructor(map) {
|
|
5498
5604
|
super(map);
|
|
@@ -5919,6 +6025,238 @@ class GetAllSheetsResponse extends $tea.Model {
|
|
|
5919
6025
|
}
|
|
5920
6026
|
}
|
|
5921
6027
|
exports.GetAllSheetsResponse = GetAllSheetsResponse;
|
|
6028
|
+
class GetCorpAccomplishmentTasksHeaders extends $tea.Model {
|
|
6029
|
+
constructor(map) {
|
|
6030
|
+
super(map);
|
|
6031
|
+
}
|
|
6032
|
+
static names() {
|
|
6033
|
+
return {
|
|
6034
|
+
commonHeaders: 'commonHeaders',
|
|
6035
|
+
accountContext: 'AccountContext',
|
|
6036
|
+
};
|
|
6037
|
+
}
|
|
6038
|
+
static types() {
|
|
6039
|
+
return {
|
|
6040
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6041
|
+
accountContext: GetCorpAccomplishmentTasksHeadersAccountContext,
|
|
6042
|
+
};
|
|
6043
|
+
}
|
|
6044
|
+
}
|
|
6045
|
+
exports.GetCorpAccomplishmentTasksHeaders = GetCorpAccomplishmentTasksHeaders;
|
|
6046
|
+
class GetCorpAccomplishmentTasksShrinkHeaders extends $tea.Model {
|
|
6047
|
+
constructor(map) {
|
|
6048
|
+
super(map);
|
|
6049
|
+
}
|
|
6050
|
+
static names() {
|
|
6051
|
+
return {
|
|
6052
|
+
commonHeaders: 'commonHeaders',
|
|
6053
|
+
accountContextShrink: 'AccountContext',
|
|
6054
|
+
};
|
|
6055
|
+
}
|
|
6056
|
+
static types() {
|
|
6057
|
+
return {
|
|
6058
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6059
|
+
accountContextShrink: 'string',
|
|
6060
|
+
};
|
|
6061
|
+
}
|
|
6062
|
+
}
|
|
6063
|
+
exports.GetCorpAccomplishmentTasksShrinkHeaders = GetCorpAccomplishmentTasksShrinkHeaders;
|
|
6064
|
+
class GetCorpAccomplishmentTasksRequest extends $tea.Model {
|
|
6065
|
+
constructor(map) {
|
|
6066
|
+
super(map);
|
|
6067
|
+
}
|
|
6068
|
+
static names() {
|
|
6069
|
+
return {
|
|
6070
|
+
appTypes: 'AppTypes',
|
|
6071
|
+
corpId: 'CorpId',
|
|
6072
|
+
createFromTimeGMT: 'CreateFromTimeGMT',
|
|
6073
|
+
createToTimeGMT: 'CreateToTimeGMT',
|
|
6074
|
+
keyword: 'Keyword',
|
|
6075
|
+
language: 'Language',
|
|
6076
|
+
pageNumber: 'PageNumber',
|
|
6077
|
+
pageSize: 'PageSize',
|
|
6078
|
+
processCodes: 'ProcessCodes',
|
|
6079
|
+
token: 'Token',
|
|
6080
|
+
};
|
|
6081
|
+
}
|
|
6082
|
+
static types() {
|
|
6083
|
+
return {
|
|
6084
|
+
appTypes: 'string',
|
|
6085
|
+
corpId: 'string',
|
|
6086
|
+
createFromTimeGMT: 'number',
|
|
6087
|
+
createToTimeGMT: 'number',
|
|
6088
|
+
keyword: 'string',
|
|
6089
|
+
language: 'string',
|
|
6090
|
+
pageNumber: 'number',
|
|
6091
|
+
pageSize: 'number',
|
|
6092
|
+
processCodes: 'string',
|
|
6093
|
+
token: 'string',
|
|
6094
|
+
};
|
|
6095
|
+
}
|
|
6096
|
+
}
|
|
6097
|
+
exports.GetCorpAccomplishmentTasksRequest = GetCorpAccomplishmentTasksRequest;
|
|
6098
|
+
class GetCorpAccomplishmentTasksResponseBody extends $tea.Model {
|
|
6099
|
+
constructor(map) {
|
|
6100
|
+
super(map);
|
|
6101
|
+
}
|
|
6102
|
+
static names() {
|
|
6103
|
+
return {
|
|
6104
|
+
data: 'data',
|
|
6105
|
+
pageNumber: 'pageNumber',
|
|
6106
|
+
requestId: 'requestId',
|
|
6107
|
+
totalCount: 'totalCount',
|
|
6108
|
+
vendorRequestId: 'vendorRequestId',
|
|
6109
|
+
vendorType: 'vendorType',
|
|
6110
|
+
};
|
|
6111
|
+
}
|
|
6112
|
+
static types() {
|
|
6113
|
+
return {
|
|
6114
|
+
data: { 'type': 'array', 'itemType': GetCorpAccomplishmentTasksResponseBodyData },
|
|
6115
|
+
pageNumber: 'number',
|
|
6116
|
+
requestId: 'string',
|
|
6117
|
+
totalCount: 'number',
|
|
6118
|
+
vendorRequestId: 'string',
|
|
6119
|
+
vendorType: 'string',
|
|
6120
|
+
};
|
|
6121
|
+
}
|
|
6122
|
+
}
|
|
6123
|
+
exports.GetCorpAccomplishmentTasksResponseBody = GetCorpAccomplishmentTasksResponseBody;
|
|
6124
|
+
class GetCorpAccomplishmentTasksResponse extends $tea.Model {
|
|
6125
|
+
constructor(map) {
|
|
6126
|
+
super(map);
|
|
6127
|
+
}
|
|
6128
|
+
static names() {
|
|
6129
|
+
return {
|
|
6130
|
+
headers: 'headers',
|
|
6131
|
+
statusCode: 'statusCode',
|
|
6132
|
+
body: 'body',
|
|
6133
|
+
};
|
|
6134
|
+
}
|
|
6135
|
+
static types() {
|
|
6136
|
+
return {
|
|
6137
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6138
|
+
statusCode: 'number',
|
|
6139
|
+
body: GetCorpAccomplishmentTasksResponseBody,
|
|
6140
|
+
};
|
|
6141
|
+
}
|
|
6142
|
+
}
|
|
6143
|
+
exports.GetCorpAccomplishmentTasksResponse = GetCorpAccomplishmentTasksResponse;
|
|
6144
|
+
class GetCorpTasksHeaders extends $tea.Model {
|
|
6145
|
+
constructor(map) {
|
|
6146
|
+
super(map);
|
|
6147
|
+
}
|
|
6148
|
+
static names() {
|
|
6149
|
+
return {
|
|
6150
|
+
commonHeaders: 'commonHeaders',
|
|
6151
|
+
accountContext: 'AccountContext',
|
|
6152
|
+
};
|
|
6153
|
+
}
|
|
6154
|
+
static types() {
|
|
6155
|
+
return {
|
|
6156
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6157
|
+
accountContext: GetCorpTasksHeadersAccountContext,
|
|
6158
|
+
};
|
|
6159
|
+
}
|
|
6160
|
+
}
|
|
6161
|
+
exports.GetCorpTasksHeaders = GetCorpTasksHeaders;
|
|
6162
|
+
class GetCorpTasksShrinkHeaders extends $tea.Model {
|
|
6163
|
+
constructor(map) {
|
|
6164
|
+
super(map);
|
|
6165
|
+
}
|
|
6166
|
+
static names() {
|
|
6167
|
+
return {
|
|
6168
|
+
commonHeaders: 'commonHeaders',
|
|
6169
|
+
accountContextShrink: 'AccountContext',
|
|
6170
|
+
};
|
|
6171
|
+
}
|
|
6172
|
+
static types() {
|
|
6173
|
+
return {
|
|
6174
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6175
|
+
accountContextShrink: 'string',
|
|
6176
|
+
};
|
|
6177
|
+
}
|
|
6178
|
+
}
|
|
6179
|
+
exports.GetCorpTasksShrinkHeaders = GetCorpTasksShrinkHeaders;
|
|
6180
|
+
class GetCorpTasksRequest extends $tea.Model {
|
|
6181
|
+
constructor(map) {
|
|
6182
|
+
super(map);
|
|
6183
|
+
}
|
|
6184
|
+
static names() {
|
|
6185
|
+
return {
|
|
6186
|
+
appTypes: 'AppTypes',
|
|
6187
|
+
corpId: 'CorpId',
|
|
6188
|
+
createFromTimeGMT: 'CreateFromTimeGMT',
|
|
6189
|
+
createToTimeGMT: 'CreateToTimeGMT',
|
|
6190
|
+
keyword: 'Keyword',
|
|
6191
|
+
language: 'Language',
|
|
6192
|
+
pageNumber: 'PageNumber',
|
|
6193
|
+
pageSize: 'PageSize',
|
|
6194
|
+
processCodes: 'ProcessCodes',
|
|
6195
|
+
token: 'Token',
|
|
6196
|
+
};
|
|
6197
|
+
}
|
|
6198
|
+
static types() {
|
|
6199
|
+
return {
|
|
6200
|
+
appTypes: 'string',
|
|
6201
|
+
corpId: 'string',
|
|
6202
|
+
createFromTimeGMT: 'number',
|
|
6203
|
+
createToTimeGMT: 'number',
|
|
6204
|
+
keyword: 'string',
|
|
6205
|
+
language: 'string',
|
|
6206
|
+
pageNumber: 'number',
|
|
6207
|
+
pageSize: 'number',
|
|
6208
|
+
processCodes: 'string',
|
|
6209
|
+
token: 'string',
|
|
6210
|
+
};
|
|
6211
|
+
}
|
|
6212
|
+
}
|
|
6213
|
+
exports.GetCorpTasksRequest = GetCorpTasksRequest;
|
|
6214
|
+
class GetCorpTasksResponseBody extends $tea.Model {
|
|
6215
|
+
constructor(map) {
|
|
6216
|
+
super(map);
|
|
6217
|
+
}
|
|
6218
|
+
static names() {
|
|
6219
|
+
return {
|
|
6220
|
+
data: 'data',
|
|
6221
|
+
pageNumber: 'pageNumber',
|
|
6222
|
+
requestId: 'requestId',
|
|
6223
|
+
totalCount: 'totalCount',
|
|
6224
|
+
vendorRequestId: 'vendorRequestId',
|
|
6225
|
+
vendorType: 'vendorType',
|
|
6226
|
+
};
|
|
6227
|
+
}
|
|
6228
|
+
static types() {
|
|
6229
|
+
return {
|
|
6230
|
+
data: { 'type': 'array', 'itemType': GetCorpTasksResponseBodyData },
|
|
6231
|
+
pageNumber: 'number',
|
|
6232
|
+
requestId: 'string',
|
|
6233
|
+
totalCount: 'number',
|
|
6234
|
+
vendorRequestId: 'string',
|
|
6235
|
+
vendorType: 'string',
|
|
6236
|
+
};
|
|
6237
|
+
}
|
|
6238
|
+
}
|
|
6239
|
+
exports.GetCorpTasksResponseBody = GetCorpTasksResponseBody;
|
|
6240
|
+
class GetCorpTasksResponse extends $tea.Model {
|
|
6241
|
+
constructor(map) {
|
|
6242
|
+
super(map);
|
|
6243
|
+
}
|
|
6244
|
+
static names() {
|
|
6245
|
+
return {
|
|
6246
|
+
headers: 'headers',
|
|
6247
|
+
statusCode: 'statusCode',
|
|
6248
|
+
body: 'body',
|
|
6249
|
+
};
|
|
6250
|
+
}
|
|
6251
|
+
static types() {
|
|
6252
|
+
return {
|
|
6253
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6254
|
+
statusCode: 'number',
|
|
6255
|
+
body: GetCorpTasksResponseBody,
|
|
6256
|
+
};
|
|
6257
|
+
}
|
|
6258
|
+
}
|
|
6259
|
+
exports.GetCorpTasksResponse = GetCorpTasksResponse;
|
|
5922
6260
|
class GetEventHeaders extends $tea.Model {
|
|
5923
6261
|
constructor(map) {
|
|
5924
6262
|
super(map);
|
|
@@ -7532,84 +7870,204 @@ class GetNodesHeaders extends $tea.Model {
|
|
|
7532
7870
|
};
|
|
7533
7871
|
}
|
|
7534
7872
|
}
|
|
7535
|
-
exports.GetNodesHeaders = GetNodesHeaders;
|
|
7536
|
-
class GetNodesShrinkHeaders extends $tea.Model {
|
|
7873
|
+
exports.GetNodesHeaders = GetNodesHeaders;
|
|
7874
|
+
class GetNodesShrinkHeaders extends $tea.Model {
|
|
7875
|
+
constructor(map) {
|
|
7876
|
+
super(map);
|
|
7877
|
+
}
|
|
7878
|
+
static names() {
|
|
7879
|
+
return {
|
|
7880
|
+
commonHeaders: 'commonHeaders',
|
|
7881
|
+
accountContextShrink: 'AccountContext',
|
|
7882
|
+
};
|
|
7883
|
+
}
|
|
7884
|
+
static types() {
|
|
7885
|
+
return {
|
|
7886
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7887
|
+
accountContextShrink: 'string',
|
|
7888
|
+
};
|
|
7889
|
+
}
|
|
7890
|
+
}
|
|
7891
|
+
exports.GetNodesShrinkHeaders = GetNodesShrinkHeaders;
|
|
7892
|
+
class GetNodesRequest extends $tea.Model {
|
|
7893
|
+
constructor(map) {
|
|
7894
|
+
super(map);
|
|
7895
|
+
}
|
|
7896
|
+
static names() {
|
|
7897
|
+
return {
|
|
7898
|
+
nodeIds: 'NodeIds',
|
|
7899
|
+
option: 'Option',
|
|
7900
|
+
tenantContext: 'TenantContext',
|
|
7901
|
+
};
|
|
7902
|
+
}
|
|
7903
|
+
static types() {
|
|
7904
|
+
return {
|
|
7905
|
+
nodeIds: { 'type': 'array', 'itemType': 'string' },
|
|
7906
|
+
option: GetNodesRequestOption,
|
|
7907
|
+
tenantContext: GetNodesRequestTenantContext,
|
|
7908
|
+
};
|
|
7909
|
+
}
|
|
7910
|
+
}
|
|
7911
|
+
exports.GetNodesRequest = GetNodesRequest;
|
|
7912
|
+
class GetNodesShrinkRequest extends $tea.Model {
|
|
7913
|
+
constructor(map) {
|
|
7914
|
+
super(map);
|
|
7915
|
+
}
|
|
7916
|
+
static names() {
|
|
7917
|
+
return {
|
|
7918
|
+
nodeIdsShrink: 'NodeIds',
|
|
7919
|
+
optionShrink: 'Option',
|
|
7920
|
+
tenantContextShrink: 'TenantContext',
|
|
7921
|
+
};
|
|
7922
|
+
}
|
|
7923
|
+
static types() {
|
|
7924
|
+
return {
|
|
7925
|
+
nodeIdsShrink: 'string',
|
|
7926
|
+
optionShrink: 'string',
|
|
7927
|
+
tenantContextShrink: 'string',
|
|
7928
|
+
};
|
|
7929
|
+
}
|
|
7930
|
+
}
|
|
7931
|
+
exports.GetNodesShrinkRequest = GetNodesShrinkRequest;
|
|
7932
|
+
class GetNodesResponseBody extends $tea.Model {
|
|
7933
|
+
constructor(map) {
|
|
7934
|
+
super(map);
|
|
7935
|
+
}
|
|
7936
|
+
static names() {
|
|
7937
|
+
return {
|
|
7938
|
+
nodes: 'nodes',
|
|
7939
|
+
requestId: 'requestId',
|
|
7940
|
+
};
|
|
7941
|
+
}
|
|
7942
|
+
static types() {
|
|
7943
|
+
return {
|
|
7944
|
+
nodes: { 'type': 'array', 'itemType': GetNodesResponseBodyNodes },
|
|
7945
|
+
requestId: 'string',
|
|
7946
|
+
};
|
|
7947
|
+
}
|
|
7948
|
+
}
|
|
7949
|
+
exports.GetNodesResponseBody = GetNodesResponseBody;
|
|
7950
|
+
class GetNodesResponse extends $tea.Model {
|
|
7951
|
+
constructor(map) {
|
|
7952
|
+
super(map);
|
|
7953
|
+
}
|
|
7954
|
+
static names() {
|
|
7955
|
+
return {
|
|
7956
|
+
headers: 'headers',
|
|
7957
|
+
statusCode: 'statusCode',
|
|
7958
|
+
body: 'body',
|
|
7959
|
+
};
|
|
7960
|
+
}
|
|
7961
|
+
static types() {
|
|
7962
|
+
return {
|
|
7963
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7964
|
+
statusCode: 'number',
|
|
7965
|
+
body: GetNodesResponseBody,
|
|
7966
|
+
};
|
|
7967
|
+
}
|
|
7968
|
+
}
|
|
7969
|
+
exports.GetNodesResponse = GetNodesResponse;
|
|
7970
|
+
class GetNotifyMeHeaders extends $tea.Model {
|
|
7537
7971
|
constructor(map) {
|
|
7538
7972
|
super(map);
|
|
7539
7973
|
}
|
|
7540
7974
|
static names() {
|
|
7541
7975
|
return {
|
|
7542
7976
|
commonHeaders: 'commonHeaders',
|
|
7543
|
-
|
|
7977
|
+
accountContext: 'AccountContext',
|
|
7544
7978
|
};
|
|
7545
7979
|
}
|
|
7546
7980
|
static types() {
|
|
7547
7981
|
return {
|
|
7548
7982
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7549
|
-
|
|
7983
|
+
accountContext: GetNotifyMeHeadersAccountContext,
|
|
7550
7984
|
};
|
|
7551
7985
|
}
|
|
7552
7986
|
}
|
|
7553
|
-
exports.
|
|
7554
|
-
class
|
|
7987
|
+
exports.GetNotifyMeHeaders = GetNotifyMeHeaders;
|
|
7988
|
+
class GetNotifyMeShrinkHeaders extends $tea.Model {
|
|
7555
7989
|
constructor(map) {
|
|
7556
7990
|
super(map);
|
|
7557
7991
|
}
|
|
7558
7992
|
static names() {
|
|
7559
7993
|
return {
|
|
7560
|
-
|
|
7561
|
-
|
|
7562
|
-
tenantContext: 'TenantContext',
|
|
7994
|
+
commonHeaders: 'commonHeaders',
|
|
7995
|
+
accountContextShrink: 'AccountContext',
|
|
7563
7996
|
};
|
|
7564
7997
|
}
|
|
7565
7998
|
static types() {
|
|
7566
7999
|
return {
|
|
7567
|
-
|
|
7568
|
-
|
|
7569
|
-
tenantContext: GetNodesRequestTenantContext,
|
|
8000
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8001
|
+
accountContextShrink: 'string',
|
|
7570
8002
|
};
|
|
7571
8003
|
}
|
|
7572
8004
|
}
|
|
7573
|
-
exports.
|
|
7574
|
-
class
|
|
8005
|
+
exports.GetNotifyMeShrinkHeaders = GetNotifyMeShrinkHeaders;
|
|
8006
|
+
class GetNotifyMeRequest extends $tea.Model {
|
|
7575
8007
|
constructor(map) {
|
|
7576
8008
|
super(map);
|
|
7577
8009
|
}
|
|
7578
8010
|
static names() {
|
|
7579
8011
|
return {
|
|
7580
|
-
|
|
7581
|
-
|
|
7582
|
-
|
|
8012
|
+
appTypes: 'AppTypes',
|
|
8013
|
+
corpId: 'CorpId',
|
|
8014
|
+
createFromTimeGMT: 'CreateFromTimeGMT',
|
|
8015
|
+
createToTimeGMT: 'CreateToTimeGMT',
|
|
8016
|
+
instanceCreateFromTimeGMT: 'InstanceCreateFromTimeGMT',
|
|
8017
|
+
instanceCreateToTimeGMT: 'InstanceCreateToTimeGMT',
|
|
8018
|
+
keyword: 'Keyword',
|
|
8019
|
+
language: 'Language',
|
|
8020
|
+
pageNumber: 'PageNumber',
|
|
8021
|
+
pageSize: 'PageSize',
|
|
8022
|
+
processCodes: 'ProcessCodes',
|
|
8023
|
+
token: 'Token',
|
|
7583
8024
|
};
|
|
7584
8025
|
}
|
|
7585
8026
|
static types() {
|
|
7586
8027
|
return {
|
|
7587
|
-
|
|
7588
|
-
|
|
7589
|
-
|
|
8028
|
+
appTypes: 'string',
|
|
8029
|
+
corpId: 'string',
|
|
8030
|
+
createFromTimeGMT: 'number',
|
|
8031
|
+
createToTimeGMT: 'number',
|
|
8032
|
+
instanceCreateFromTimeGMT: 'number',
|
|
8033
|
+
instanceCreateToTimeGMT: 'number',
|
|
8034
|
+
keyword: 'string',
|
|
8035
|
+
language: 'string',
|
|
8036
|
+
pageNumber: 'number',
|
|
8037
|
+
pageSize: 'number',
|
|
8038
|
+
processCodes: 'string',
|
|
8039
|
+
token: 'string',
|
|
7590
8040
|
};
|
|
7591
8041
|
}
|
|
7592
8042
|
}
|
|
7593
|
-
exports.
|
|
7594
|
-
class
|
|
8043
|
+
exports.GetNotifyMeRequest = GetNotifyMeRequest;
|
|
8044
|
+
class GetNotifyMeResponseBody extends $tea.Model {
|
|
7595
8045
|
constructor(map) {
|
|
7596
8046
|
super(map);
|
|
7597
8047
|
}
|
|
7598
8048
|
static names() {
|
|
7599
8049
|
return {
|
|
7600
|
-
|
|
8050
|
+
data: 'data',
|
|
8051
|
+
pageNumber: 'pageNumber',
|
|
7601
8052
|
requestId: 'requestId',
|
|
8053
|
+
totalCount: 'totalCount',
|
|
8054
|
+
vendorRequestId: 'vendorRequestId',
|
|
8055
|
+
vendorType: 'vendorType',
|
|
7602
8056
|
};
|
|
7603
8057
|
}
|
|
7604
8058
|
static types() {
|
|
7605
8059
|
return {
|
|
7606
|
-
|
|
8060
|
+
data: { 'type': 'array', 'itemType': GetNotifyMeResponseBodyData },
|
|
8061
|
+
pageNumber: 'number',
|
|
7607
8062
|
requestId: 'string',
|
|
8063
|
+
totalCount: 'number',
|
|
8064
|
+
vendorRequestId: 'string',
|
|
8065
|
+
vendorType: 'string',
|
|
7608
8066
|
};
|
|
7609
8067
|
}
|
|
7610
8068
|
}
|
|
7611
|
-
exports.
|
|
7612
|
-
class
|
|
8069
|
+
exports.GetNotifyMeResponseBody = GetNotifyMeResponseBody;
|
|
8070
|
+
class GetNotifyMeResponse extends $tea.Model {
|
|
7613
8071
|
constructor(map) {
|
|
7614
8072
|
super(map);
|
|
7615
8073
|
}
|
|
@@ -7624,11 +8082,11 @@ class GetNodesResponse extends $tea.Model {
|
|
|
7624
8082
|
return {
|
|
7625
8083
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7626
8084
|
statusCode: 'number',
|
|
7627
|
-
body:
|
|
8085
|
+
body: GetNotifyMeResponseBody,
|
|
7628
8086
|
};
|
|
7629
8087
|
}
|
|
7630
8088
|
}
|
|
7631
|
-
exports.
|
|
8089
|
+
exports.GetNotifyMeResponse = GetNotifyMeResponse;
|
|
7632
8090
|
class GetOpenUrlHeaders extends $tea.Model {
|
|
7633
8091
|
constructor(map) {
|
|
7634
8092
|
super(map);
|
|
@@ -8315,6 +8773,108 @@ class GetReportUnReadCountResponse extends $tea.Model {
|
|
|
8315
8773
|
}
|
|
8316
8774
|
}
|
|
8317
8775
|
exports.GetReportUnReadCountResponse = GetReportUnReadCountResponse;
|
|
8776
|
+
class GetRunningTasksHeaders extends $tea.Model {
|
|
8777
|
+
constructor(map) {
|
|
8778
|
+
super(map);
|
|
8779
|
+
}
|
|
8780
|
+
static names() {
|
|
8781
|
+
return {
|
|
8782
|
+
commonHeaders: 'commonHeaders',
|
|
8783
|
+
accountContext: 'AccountContext',
|
|
8784
|
+
};
|
|
8785
|
+
}
|
|
8786
|
+
static types() {
|
|
8787
|
+
return {
|
|
8788
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8789
|
+
accountContext: GetRunningTasksHeadersAccountContext,
|
|
8790
|
+
};
|
|
8791
|
+
}
|
|
8792
|
+
}
|
|
8793
|
+
exports.GetRunningTasksHeaders = GetRunningTasksHeaders;
|
|
8794
|
+
class GetRunningTasksShrinkHeaders extends $tea.Model {
|
|
8795
|
+
constructor(map) {
|
|
8796
|
+
super(map);
|
|
8797
|
+
}
|
|
8798
|
+
static names() {
|
|
8799
|
+
return {
|
|
8800
|
+
commonHeaders: 'commonHeaders',
|
|
8801
|
+
accountContextShrink: 'AccountContext',
|
|
8802
|
+
};
|
|
8803
|
+
}
|
|
8804
|
+
static types() {
|
|
8805
|
+
return {
|
|
8806
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8807
|
+
accountContextShrink: 'string',
|
|
8808
|
+
};
|
|
8809
|
+
}
|
|
8810
|
+
}
|
|
8811
|
+
exports.GetRunningTasksShrinkHeaders = GetRunningTasksShrinkHeaders;
|
|
8812
|
+
class GetRunningTasksRequest extends $tea.Model {
|
|
8813
|
+
constructor(map) {
|
|
8814
|
+
super(map);
|
|
8815
|
+
}
|
|
8816
|
+
static names() {
|
|
8817
|
+
return {
|
|
8818
|
+
appType: 'AppType',
|
|
8819
|
+
language: 'Language',
|
|
8820
|
+
processCodes: 'ProcessCodes',
|
|
8821
|
+
processInstanceId: 'ProcessInstanceId',
|
|
8822
|
+
systemToken: 'SystemToken',
|
|
8823
|
+
};
|
|
8824
|
+
}
|
|
8825
|
+
static types() {
|
|
8826
|
+
return {
|
|
8827
|
+
appType: 'string',
|
|
8828
|
+
language: 'string',
|
|
8829
|
+
processCodes: 'string',
|
|
8830
|
+
processInstanceId: 'string',
|
|
8831
|
+
systemToken: 'string',
|
|
8832
|
+
};
|
|
8833
|
+
}
|
|
8834
|
+
}
|
|
8835
|
+
exports.GetRunningTasksRequest = GetRunningTasksRequest;
|
|
8836
|
+
class GetRunningTasksResponseBody extends $tea.Model {
|
|
8837
|
+
constructor(map) {
|
|
8838
|
+
super(map);
|
|
8839
|
+
}
|
|
8840
|
+
static names() {
|
|
8841
|
+
return {
|
|
8842
|
+
requestId: 'requestId',
|
|
8843
|
+
result: 'result',
|
|
8844
|
+
vendorRequestId: 'vendorRequestId',
|
|
8845
|
+
vendorType: 'vendorType',
|
|
8846
|
+
};
|
|
8847
|
+
}
|
|
8848
|
+
static types() {
|
|
8849
|
+
return {
|
|
8850
|
+
requestId: 'string',
|
|
8851
|
+
result: { 'type': 'array', 'itemType': GetRunningTasksResponseBodyResult },
|
|
8852
|
+
vendorRequestId: 'string',
|
|
8853
|
+
vendorType: 'string',
|
|
8854
|
+
};
|
|
8855
|
+
}
|
|
8856
|
+
}
|
|
8857
|
+
exports.GetRunningTasksResponseBody = GetRunningTasksResponseBody;
|
|
8858
|
+
class GetRunningTasksResponse extends $tea.Model {
|
|
8859
|
+
constructor(map) {
|
|
8860
|
+
super(map);
|
|
8861
|
+
}
|
|
8862
|
+
static names() {
|
|
8863
|
+
return {
|
|
8864
|
+
headers: 'headers',
|
|
8865
|
+
statusCode: 'statusCode',
|
|
8866
|
+
body: 'body',
|
|
8867
|
+
};
|
|
8868
|
+
}
|
|
8869
|
+
static types() {
|
|
8870
|
+
return {
|
|
8871
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8872
|
+
statusCode: 'number',
|
|
8873
|
+
body: GetRunningTasksResponseBody,
|
|
8874
|
+
};
|
|
8875
|
+
}
|
|
8876
|
+
}
|
|
8877
|
+
exports.GetRunningTasksResponse = GetRunningTasksResponse;
|
|
8318
8878
|
class GetSheetHeaders extends $tea.Model {
|
|
8319
8879
|
constructor(map) {
|
|
8320
8880
|
super(map);
|
|
@@ -8562,12 +9122,112 @@ class GetSpaceDirectoriesResponse extends $tea.Model {
|
|
|
8562
9122
|
return {
|
|
8563
9123
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8564
9124
|
statusCode: 'number',
|
|
8565
|
-
body: GetSpaceDirectoriesResponseBody,
|
|
9125
|
+
body: GetSpaceDirectoriesResponseBody,
|
|
9126
|
+
};
|
|
9127
|
+
}
|
|
9128
|
+
}
|
|
9129
|
+
exports.GetSpaceDirectoriesResponse = GetSpaceDirectoriesResponse;
|
|
9130
|
+
class GetSubscribedCalendarHeaders extends $tea.Model {
|
|
9131
|
+
constructor(map) {
|
|
9132
|
+
super(map);
|
|
9133
|
+
}
|
|
9134
|
+
static names() {
|
|
9135
|
+
return {
|
|
9136
|
+
commonHeaders: 'commonHeaders',
|
|
9137
|
+
accountContext: 'AccountContext',
|
|
9138
|
+
};
|
|
9139
|
+
}
|
|
9140
|
+
static types() {
|
|
9141
|
+
return {
|
|
9142
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9143
|
+
accountContext: GetSubscribedCalendarHeadersAccountContext,
|
|
9144
|
+
};
|
|
9145
|
+
}
|
|
9146
|
+
}
|
|
9147
|
+
exports.GetSubscribedCalendarHeaders = GetSubscribedCalendarHeaders;
|
|
9148
|
+
class GetSubscribedCalendarShrinkHeaders extends $tea.Model {
|
|
9149
|
+
constructor(map) {
|
|
9150
|
+
super(map);
|
|
9151
|
+
}
|
|
9152
|
+
static names() {
|
|
9153
|
+
return {
|
|
9154
|
+
commonHeaders: 'commonHeaders',
|
|
9155
|
+
accountContextShrink: 'AccountContext',
|
|
9156
|
+
};
|
|
9157
|
+
}
|
|
9158
|
+
static types() {
|
|
9159
|
+
return {
|
|
9160
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9161
|
+
accountContextShrink: 'string',
|
|
9162
|
+
};
|
|
9163
|
+
}
|
|
9164
|
+
}
|
|
9165
|
+
exports.GetSubscribedCalendarShrinkHeaders = GetSubscribedCalendarShrinkHeaders;
|
|
9166
|
+
class GetSubscribedCalendarRequest extends $tea.Model {
|
|
9167
|
+
constructor(map) {
|
|
9168
|
+
super(map);
|
|
9169
|
+
}
|
|
9170
|
+
static names() {
|
|
9171
|
+
return {
|
|
9172
|
+
calendarId: 'CalendarId',
|
|
9173
|
+
};
|
|
9174
|
+
}
|
|
9175
|
+
static types() {
|
|
9176
|
+
return {
|
|
9177
|
+
calendarId: 'string',
|
|
9178
|
+
};
|
|
9179
|
+
}
|
|
9180
|
+
}
|
|
9181
|
+
exports.GetSubscribedCalendarRequest = GetSubscribedCalendarRequest;
|
|
9182
|
+
class GetSubscribedCalendarResponseBody extends $tea.Model {
|
|
9183
|
+
constructor(map) {
|
|
9184
|
+
super(map);
|
|
9185
|
+
}
|
|
9186
|
+
static names() {
|
|
9187
|
+
return {
|
|
9188
|
+
author: 'author',
|
|
9189
|
+
calendarId: 'calendarId',
|
|
9190
|
+
description: 'description',
|
|
9191
|
+
managers: 'managers',
|
|
9192
|
+
name: 'name',
|
|
9193
|
+
requestId: 'requestId',
|
|
9194
|
+
subscribeScope: 'subscribeScope',
|
|
9195
|
+
};
|
|
9196
|
+
}
|
|
9197
|
+
static types() {
|
|
9198
|
+
return {
|
|
9199
|
+
author: 'string',
|
|
9200
|
+
calendarId: 'string',
|
|
9201
|
+
description: 'string',
|
|
9202
|
+
managers: { 'type': 'array', 'itemType': 'string' },
|
|
9203
|
+
name: 'string',
|
|
9204
|
+
requestId: 'string',
|
|
9205
|
+
subscribeScope: GetSubscribedCalendarResponseBodySubscribeScope,
|
|
9206
|
+
};
|
|
9207
|
+
}
|
|
9208
|
+
}
|
|
9209
|
+
exports.GetSubscribedCalendarResponseBody = GetSubscribedCalendarResponseBody;
|
|
9210
|
+
class GetSubscribedCalendarResponse extends $tea.Model {
|
|
9211
|
+
constructor(map) {
|
|
9212
|
+
super(map);
|
|
9213
|
+
}
|
|
9214
|
+
static names() {
|
|
9215
|
+
return {
|
|
9216
|
+
headers: 'headers',
|
|
9217
|
+
statusCode: 'statusCode',
|
|
9218
|
+
body: 'body',
|
|
9219
|
+
};
|
|
9220
|
+
}
|
|
9221
|
+
static types() {
|
|
9222
|
+
return {
|
|
9223
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9224
|
+
statusCode: 'number',
|
|
9225
|
+
body: GetSubscribedCalendarResponseBody,
|
|
8566
9226
|
};
|
|
8567
9227
|
}
|
|
8568
9228
|
}
|
|
8569
|
-
exports.
|
|
8570
|
-
class
|
|
9229
|
+
exports.GetSubscribedCalendarResponse = GetSubscribedCalendarResponse;
|
|
9230
|
+
class GetTaskCopiesHeaders extends $tea.Model {
|
|
8571
9231
|
constructor(map) {
|
|
8572
9232
|
super(map);
|
|
8573
9233
|
}
|
|
@@ -8580,12 +9240,12 @@ class GetSubscribedCalendarHeaders extends $tea.Model {
|
|
|
8580
9240
|
static types() {
|
|
8581
9241
|
return {
|
|
8582
9242
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8583
|
-
accountContext:
|
|
9243
|
+
accountContext: GetTaskCopiesHeadersAccountContext,
|
|
8584
9244
|
};
|
|
8585
9245
|
}
|
|
8586
9246
|
}
|
|
8587
|
-
exports.
|
|
8588
|
-
class
|
|
9247
|
+
exports.GetTaskCopiesHeaders = GetTaskCopiesHeaders;
|
|
9248
|
+
class GetTaskCopiesShrinkHeaders extends $tea.Model {
|
|
8589
9249
|
constructor(map) {
|
|
8590
9250
|
super(map);
|
|
8591
9251
|
}
|
|
@@ -8602,52 +9262,66 @@ class GetSubscribedCalendarShrinkHeaders extends $tea.Model {
|
|
|
8602
9262
|
};
|
|
8603
9263
|
}
|
|
8604
9264
|
}
|
|
8605
|
-
exports.
|
|
8606
|
-
class
|
|
9265
|
+
exports.GetTaskCopiesShrinkHeaders = GetTaskCopiesShrinkHeaders;
|
|
9266
|
+
class GetTaskCopiesRequest extends $tea.Model {
|
|
8607
9267
|
constructor(map) {
|
|
8608
9268
|
super(map);
|
|
8609
9269
|
}
|
|
8610
9270
|
static names() {
|
|
8611
9271
|
return {
|
|
8612
|
-
|
|
9272
|
+
appType: 'AppType',
|
|
9273
|
+
createFromTimeGMT: 'CreateFromTimeGMT',
|
|
9274
|
+
createToTimeGMT: 'CreateToTimeGMT',
|
|
9275
|
+
keyword: 'Keyword',
|
|
9276
|
+
language: 'Language',
|
|
9277
|
+
pageNumber: 'PageNumber',
|
|
9278
|
+
pageSize: 'PageSize',
|
|
9279
|
+
processCodes: 'ProcessCodes',
|
|
9280
|
+
systemToken: 'SystemToken',
|
|
8613
9281
|
};
|
|
8614
9282
|
}
|
|
8615
9283
|
static types() {
|
|
8616
9284
|
return {
|
|
8617
|
-
|
|
9285
|
+
appType: 'string',
|
|
9286
|
+
createFromTimeGMT: 'number',
|
|
9287
|
+
createToTimeGMT: 'number',
|
|
9288
|
+
keyword: 'string',
|
|
9289
|
+
language: 'string',
|
|
9290
|
+
pageNumber: 'number',
|
|
9291
|
+
pageSize: 'number',
|
|
9292
|
+
processCodes: 'string',
|
|
9293
|
+
systemToken: 'string',
|
|
8618
9294
|
};
|
|
8619
9295
|
}
|
|
8620
9296
|
}
|
|
8621
|
-
exports.
|
|
8622
|
-
class
|
|
9297
|
+
exports.GetTaskCopiesRequest = GetTaskCopiesRequest;
|
|
9298
|
+
class GetTaskCopiesResponseBody extends $tea.Model {
|
|
8623
9299
|
constructor(map) {
|
|
8624
9300
|
super(map);
|
|
8625
9301
|
}
|
|
8626
9302
|
static names() {
|
|
8627
9303
|
return {
|
|
8628
|
-
|
|
8629
|
-
|
|
8630
|
-
description: 'description',
|
|
8631
|
-
managers: 'managers',
|
|
8632
|
-
name: 'name',
|
|
9304
|
+
data: 'data',
|
|
9305
|
+
pageNumber: 'pageNumber',
|
|
8633
9306
|
requestId: 'requestId',
|
|
8634
|
-
|
|
9307
|
+
totalCount: 'totalCount',
|
|
9308
|
+
vendorRequestId: 'vendorRequestId',
|
|
9309
|
+
vendorType: 'vendorType',
|
|
8635
9310
|
};
|
|
8636
9311
|
}
|
|
8637
9312
|
static types() {
|
|
8638
9313
|
return {
|
|
8639
|
-
|
|
8640
|
-
|
|
8641
|
-
description: 'string',
|
|
8642
|
-
managers: { 'type': 'array', 'itemType': 'string' },
|
|
8643
|
-
name: 'string',
|
|
9314
|
+
data: { 'type': 'array', 'itemType': GetTaskCopiesResponseBodyData },
|
|
9315
|
+
pageNumber: 'number',
|
|
8644
9316
|
requestId: 'string',
|
|
8645
|
-
|
|
9317
|
+
totalCount: 'number',
|
|
9318
|
+
vendorRequestId: 'string',
|
|
9319
|
+
vendorType: 'string',
|
|
8646
9320
|
};
|
|
8647
9321
|
}
|
|
8648
9322
|
}
|
|
8649
|
-
exports.
|
|
8650
|
-
class
|
|
9323
|
+
exports.GetTaskCopiesResponseBody = GetTaskCopiesResponseBody;
|
|
9324
|
+
class GetTaskCopiesResponse extends $tea.Model {
|
|
8651
9325
|
constructor(map) {
|
|
8652
9326
|
super(map);
|
|
8653
9327
|
}
|
|
@@ -8662,11 +9336,11 @@ class GetSubscribedCalendarResponse extends $tea.Model {
|
|
|
8662
9336
|
return {
|
|
8663
9337
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8664
9338
|
statusCode: 'number',
|
|
8665
|
-
body:
|
|
9339
|
+
body: GetTaskCopiesResponseBody,
|
|
8666
9340
|
};
|
|
8667
9341
|
}
|
|
8668
9342
|
}
|
|
8669
|
-
exports.
|
|
9343
|
+
exports.GetTaskCopiesResponse = GetTaskCopiesResponse;
|
|
8670
9344
|
class GetTemplateListByUserIdHeaders extends $tea.Model {
|
|
8671
9345
|
constructor(map) {
|
|
8672
9346
|
super(map);
|
|
@@ -9689,6 +10363,114 @@ class InviteUsersResponse extends $tea.Model {
|
|
|
9689
10363
|
}
|
|
9690
10364
|
}
|
|
9691
10365
|
exports.InviteUsersResponse = InviteUsersResponse;
|
|
10366
|
+
class ListApplicationHeaders extends $tea.Model {
|
|
10367
|
+
constructor(map) {
|
|
10368
|
+
super(map);
|
|
10369
|
+
}
|
|
10370
|
+
static names() {
|
|
10371
|
+
return {
|
|
10372
|
+
commonHeaders: 'commonHeaders',
|
|
10373
|
+
accountContext: 'AccountContext',
|
|
10374
|
+
};
|
|
10375
|
+
}
|
|
10376
|
+
static types() {
|
|
10377
|
+
return {
|
|
10378
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10379
|
+
accountContext: ListApplicationHeadersAccountContext,
|
|
10380
|
+
};
|
|
10381
|
+
}
|
|
10382
|
+
}
|
|
10383
|
+
exports.ListApplicationHeaders = ListApplicationHeaders;
|
|
10384
|
+
class ListApplicationShrinkHeaders extends $tea.Model {
|
|
10385
|
+
constructor(map) {
|
|
10386
|
+
super(map);
|
|
10387
|
+
}
|
|
10388
|
+
static names() {
|
|
10389
|
+
return {
|
|
10390
|
+
commonHeaders: 'commonHeaders',
|
|
10391
|
+
accountContextShrink: 'AccountContext',
|
|
10392
|
+
};
|
|
10393
|
+
}
|
|
10394
|
+
static types() {
|
|
10395
|
+
return {
|
|
10396
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10397
|
+
accountContextShrink: 'string',
|
|
10398
|
+
};
|
|
10399
|
+
}
|
|
10400
|
+
}
|
|
10401
|
+
exports.ListApplicationShrinkHeaders = ListApplicationShrinkHeaders;
|
|
10402
|
+
class ListApplicationRequest extends $tea.Model {
|
|
10403
|
+
constructor(map) {
|
|
10404
|
+
super(map);
|
|
10405
|
+
}
|
|
10406
|
+
static names() {
|
|
10407
|
+
return {
|
|
10408
|
+
appFilter: 'AppFilter',
|
|
10409
|
+
appNameSearchKeyword: 'AppNameSearchKeyword',
|
|
10410
|
+
corpId: 'CorpId',
|
|
10411
|
+
pageNumber: 'PageNumber',
|
|
10412
|
+
pageSize: 'PageSize',
|
|
10413
|
+
token: 'Token',
|
|
10414
|
+
};
|
|
10415
|
+
}
|
|
10416
|
+
static types() {
|
|
10417
|
+
return {
|
|
10418
|
+
appFilter: 'string',
|
|
10419
|
+
appNameSearchKeyword: 'string',
|
|
10420
|
+
corpId: 'string',
|
|
10421
|
+
pageNumber: 'number',
|
|
10422
|
+
pageSize: 'number',
|
|
10423
|
+
token: 'string',
|
|
10424
|
+
};
|
|
10425
|
+
}
|
|
10426
|
+
}
|
|
10427
|
+
exports.ListApplicationRequest = ListApplicationRequest;
|
|
10428
|
+
class ListApplicationResponseBody extends $tea.Model {
|
|
10429
|
+
constructor(map) {
|
|
10430
|
+
super(map);
|
|
10431
|
+
}
|
|
10432
|
+
static names() {
|
|
10433
|
+
return {
|
|
10434
|
+
data: 'data',
|
|
10435
|
+
pageNumber: 'pageNumber',
|
|
10436
|
+
requestId: 'requestId',
|
|
10437
|
+
totalCount: 'totalCount',
|
|
10438
|
+
vendorRequestId: 'vendorRequestId',
|
|
10439
|
+
vendorType: 'vendorType',
|
|
10440
|
+
};
|
|
10441
|
+
}
|
|
10442
|
+
static types() {
|
|
10443
|
+
return {
|
|
10444
|
+
data: { 'type': 'array', 'itemType': ListApplicationResponseBodyData },
|
|
10445
|
+
pageNumber: 'number',
|
|
10446
|
+
requestId: 'string',
|
|
10447
|
+
totalCount: 'number',
|
|
10448
|
+
vendorRequestId: 'string',
|
|
10449
|
+
vendorType: 'string',
|
|
10450
|
+
};
|
|
10451
|
+
}
|
|
10452
|
+
}
|
|
10453
|
+
exports.ListApplicationResponseBody = ListApplicationResponseBody;
|
|
10454
|
+
class ListApplicationResponse extends $tea.Model {
|
|
10455
|
+
constructor(map) {
|
|
10456
|
+
super(map);
|
|
10457
|
+
}
|
|
10458
|
+
static names() {
|
|
10459
|
+
return {
|
|
10460
|
+
headers: 'headers',
|
|
10461
|
+
statusCode: 'statusCode',
|
|
10462
|
+
body: 'body',
|
|
10463
|
+
};
|
|
10464
|
+
}
|
|
10465
|
+
static types() {
|
|
10466
|
+
return {
|
|
10467
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10468
|
+
statusCode: 'number',
|
|
10469
|
+
body: ListApplicationResponseBody,
|
|
10470
|
+
};
|
|
10471
|
+
}
|
|
10472
|
+
}
|
|
10473
|
+
exports.ListApplicationResponse = ListApplicationResponse;
|
|
9692
10474
|
class ListCalendarsHeaders extends $tea.Model {
|
|
9693
10475
|
constructor(map) {
|
|
9694
10476
|
super(map);
|
|
@@ -9873,6 +10655,8 @@ class ListEventsResponseBody extends $tea.Model {
|
|
|
9873
10655
|
nextToken: 'nextToken',
|
|
9874
10656
|
requestId: 'requestId',
|
|
9875
10657
|
syncToken: 'syncToken',
|
|
10658
|
+
vendorRequestId: 'vendorRequestId',
|
|
10659
|
+
vendorType: 'vendorType',
|
|
9876
10660
|
};
|
|
9877
10661
|
}
|
|
9878
10662
|
static types() {
|
|
@@ -9881,6 +10665,8 @@ class ListEventsResponseBody extends $tea.Model {
|
|
|
9881
10665
|
nextToken: 'string',
|
|
9882
10666
|
requestId: 'string',
|
|
9883
10667
|
syncToken: 'string',
|
|
10668
|
+
vendorRequestId: 'string',
|
|
10669
|
+
vendorType: 'string',
|
|
9884
10670
|
};
|
|
9885
10671
|
}
|
|
9886
10672
|
}
|
|
@@ -10468,12 +11254,122 @@ class ListReportResponseBody extends $tea.Model {
|
|
|
10468
11254
|
hasMore: 'boolean',
|
|
10469
11255
|
nextCursor: 'number',
|
|
10470
11256
|
requestId: 'string',
|
|
10471
|
-
size: 'number',
|
|
11257
|
+
size: 'number',
|
|
11258
|
+
};
|
|
11259
|
+
}
|
|
11260
|
+
}
|
|
11261
|
+
exports.ListReportResponseBody = ListReportResponseBody;
|
|
11262
|
+
class ListReportResponse extends $tea.Model {
|
|
11263
|
+
constructor(map) {
|
|
11264
|
+
super(map);
|
|
11265
|
+
}
|
|
11266
|
+
static names() {
|
|
11267
|
+
return {
|
|
11268
|
+
headers: 'headers',
|
|
11269
|
+
statusCode: 'statusCode',
|
|
11270
|
+
body: 'body',
|
|
11271
|
+
};
|
|
11272
|
+
}
|
|
11273
|
+
static types() {
|
|
11274
|
+
return {
|
|
11275
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11276
|
+
statusCode: 'number',
|
|
11277
|
+
body: ListReportResponseBody,
|
|
11278
|
+
};
|
|
11279
|
+
}
|
|
11280
|
+
}
|
|
11281
|
+
exports.ListReportResponse = ListReportResponse;
|
|
11282
|
+
class ListTableDataByFormInstanceIdTableIdHeaders extends $tea.Model {
|
|
11283
|
+
constructor(map) {
|
|
11284
|
+
super(map);
|
|
11285
|
+
}
|
|
11286
|
+
static names() {
|
|
11287
|
+
return {
|
|
11288
|
+
commonHeaders: 'commonHeaders',
|
|
11289
|
+
accountContext: 'AccountContext',
|
|
11290
|
+
};
|
|
11291
|
+
}
|
|
11292
|
+
static types() {
|
|
11293
|
+
return {
|
|
11294
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11295
|
+
accountContext: ListTableDataByFormInstanceIdTableIdHeadersAccountContext,
|
|
11296
|
+
};
|
|
11297
|
+
}
|
|
11298
|
+
}
|
|
11299
|
+
exports.ListTableDataByFormInstanceIdTableIdHeaders = ListTableDataByFormInstanceIdTableIdHeaders;
|
|
11300
|
+
class ListTableDataByFormInstanceIdTableIdShrinkHeaders extends $tea.Model {
|
|
11301
|
+
constructor(map) {
|
|
11302
|
+
super(map);
|
|
11303
|
+
}
|
|
11304
|
+
static names() {
|
|
11305
|
+
return {
|
|
11306
|
+
commonHeaders: 'commonHeaders',
|
|
11307
|
+
accountContextShrink: 'AccountContext',
|
|
11308
|
+
};
|
|
11309
|
+
}
|
|
11310
|
+
static types() {
|
|
11311
|
+
return {
|
|
11312
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11313
|
+
accountContextShrink: 'string',
|
|
11314
|
+
};
|
|
11315
|
+
}
|
|
11316
|
+
}
|
|
11317
|
+
exports.ListTableDataByFormInstanceIdTableIdShrinkHeaders = ListTableDataByFormInstanceIdTableIdShrinkHeaders;
|
|
11318
|
+
class ListTableDataByFormInstanceIdTableIdRequest extends $tea.Model {
|
|
11319
|
+
constructor(map) {
|
|
11320
|
+
super(map);
|
|
11321
|
+
}
|
|
11322
|
+
static names() {
|
|
11323
|
+
return {
|
|
11324
|
+
appType: 'AppType',
|
|
11325
|
+
formInstanceId: 'FormInstanceId',
|
|
11326
|
+
formUuid: 'FormUuid',
|
|
11327
|
+
pageNumber: 'PageNumber',
|
|
11328
|
+
pageSize: 'PageSize',
|
|
11329
|
+
systemToken: 'SystemToken',
|
|
11330
|
+
tableFieldId: 'TableFieldId',
|
|
11331
|
+
};
|
|
11332
|
+
}
|
|
11333
|
+
static types() {
|
|
11334
|
+
return {
|
|
11335
|
+
appType: 'string',
|
|
11336
|
+
formInstanceId: 'string',
|
|
11337
|
+
formUuid: 'string',
|
|
11338
|
+
pageNumber: 'number',
|
|
11339
|
+
pageSize: 'number',
|
|
11340
|
+
systemToken: 'string',
|
|
11341
|
+
tableFieldId: 'string',
|
|
11342
|
+
};
|
|
11343
|
+
}
|
|
11344
|
+
}
|
|
11345
|
+
exports.ListTableDataByFormInstanceIdTableIdRequest = ListTableDataByFormInstanceIdTableIdRequest;
|
|
11346
|
+
class ListTableDataByFormInstanceIdTableIdResponseBody extends $tea.Model {
|
|
11347
|
+
constructor(map) {
|
|
11348
|
+
super(map);
|
|
11349
|
+
}
|
|
11350
|
+
static names() {
|
|
11351
|
+
return {
|
|
11352
|
+
data: 'data',
|
|
11353
|
+
pageNumber: 'pageNumber',
|
|
11354
|
+
requestId: 'requestId',
|
|
11355
|
+
totalCount: 'totalCount',
|
|
11356
|
+
vendorRequestId: 'vendorRequestId',
|
|
11357
|
+
vendorType: 'vendorType',
|
|
11358
|
+
};
|
|
11359
|
+
}
|
|
11360
|
+
static types() {
|
|
11361
|
+
return {
|
|
11362
|
+
data: { 'type': 'array', 'itemType': 'string' },
|
|
11363
|
+
pageNumber: 'number',
|
|
11364
|
+
requestId: 'string',
|
|
11365
|
+
totalCount: 'number',
|
|
11366
|
+
vendorRequestId: 'string',
|
|
11367
|
+
vendorType: 'string',
|
|
10472
11368
|
};
|
|
10473
11369
|
}
|
|
10474
11370
|
}
|
|
10475
|
-
exports.
|
|
10476
|
-
class
|
|
11371
|
+
exports.ListTableDataByFormInstanceIdTableIdResponseBody = ListTableDataByFormInstanceIdTableIdResponseBody;
|
|
11372
|
+
class ListTableDataByFormInstanceIdTableIdResponse extends $tea.Model {
|
|
10477
11373
|
constructor(map) {
|
|
10478
11374
|
super(map);
|
|
10479
11375
|
}
|
|
@@ -10488,12 +11384,12 @@ class ListReportResponse extends $tea.Model {
|
|
|
10488
11384
|
return {
|
|
10489
11385
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10490
11386
|
statusCode: 'number',
|
|
10491
|
-
body:
|
|
11387
|
+
body: ListTableDataByFormInstanceIdTableIdResponseBody,
|
|
10492
11388
|
};
|
|
10493
11389
|
}
|
|
10494
11390
|
}
|
|
10495
|
-
exports.
|
|
10496
|
-
class
|
|
11391
|
+
exports.ListTableDataByFormInstanceIdTableIdResponse = ListTableDataByFormInstanceIdTableIdResponse;
|
|
11392
|
+
class ListTeamsHeaders extends $tea.Model {
|
|
10497
11393
|
constructor(map) {
|
|
10498
11394
|
super(map);
|
|
10499
11395
|
}
|
|
@@ -10506,12 +11402,12 @@ class ListTableDataByFormInstanceIdTableIdHeaders extends $tea.Model {
|
|
|
10506
11402
|
static types() {
|
|
10507
11403
|
return {
|
|
10508
11404
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10509
|
-
accountContext:
|
|
11405
|
+
accountContext: ListTeamsHeadersAccountContext,
|
|
10510
11406
|
};
|
|
10511
11407
|
}
|
|
10512
11408
|
}
|
|
10513
|
-
exports.
|
|
10514
|
-
class
|
|
11409
|
+
exports.ListTeamsHeaders = ListTeamsHeaders;
|
|
11410
|
+
class ListTeamsShrinkHeaders extends $tea.Model {
|
|
10515
11411
|
constructor(map) {
|
|
10516
11412
|
super(map);
|
|
10517
11413
|
}
|
|
@@ -10528,62 +11424,72 @@ class ListTableDataByFormInstanceIdTableIdShrinkHeaders extends $tea.Model {
|
|
|
10528
11424
|
};
|
|
10529
11425
|
}
|
|
10530
11426
|
}
|
|
10531
|
-
exports.
|
|
10532
|
-
class
|
|
11427
|
+
exports.ListTeamsShrinkHeaders = ListTeamsShrinkHeaders;
|
|
11428
|
+
class ListTeamsRequest extends $tea.Model {
|
|
10533
11429
|
constructor(map) {
|
|
10534
11430
|
super(map);
|
|
10535
11431
|
}
|
|
10536
11432
|
static names() {
|
|
10537
11433
|
return {
|
|
10538
|
-
|
|
10539
|
-
|
|
10540
|
-
|
|
10541
|
-
pageNumber: 'PageNumber',
|
|
10542
|
-
pageSize: 'PageSize',
|
|
10543
|
-
systemToken: 'SystemToken',
|
|
10544
|
-
tableFieldId: 'TableFieldId',
|
|
11434
|
+
maxResults: 'MaxResults',
|
|
11435
|
+
nextToken: 'NextToken',
|
|
11436
|
+
tenantContext: 'TenantContext',
|
|
10545
11437
|
};
|
|
10546
11438
|
}
|
|
10547
11439
|
static types() {
|
|
10548
11440
|
return {
|
|
10549
|
-
|
|
10550
|
-
|
|
10551
|
-
|
|
10552
|
-
pageNumber: 'number',
|
|
10553
|
-
pageSize: 'number',
|
|
10554
|
-
systemToken: 'string',
|
|
10555
|
-
tableFieldId: 'string',
|
|
11441
|
+
maxResults: 'number',
|
|
11442
|
+
nextToken: 'string',
|
|
11443
|
+
tenantContext: ListTeamsRequestTenantContext,
|
|
10556
11444
|
};
|
|
10557
11445
|
}
|
|
10558
11446
|
}
|
|
10559
|
-
exports.
|
|
10560
|
-
class
|
|
11447
|
+
exports.ListTeamsRequest = ListTeamsRequest;
|
|
11448
|
+
class ListTeamsShrinkRequest extends $tea.Model {
|
|
10561
11449
|
constructor(map) {
|
|
10562
11450
|
super(map);
|
|
10563
11451
|
}
|
|
10564
11452
|
static names() {
|
|
10565
11453
|
return {
|
|
10566
|
-
|
|
10567
|
-
|
|
11454
|
+
maxResults: 'MaxResults',
|
|
11455
|
+
nextToken: 'NextToken',
|
|
11456
|
+
tenantContextShrink: 'TenantContext',
|
|
11457
|
+
};
|
|
11458
|
+
}
|
|
11459
|
+
static types() {
|
|
11460
|
+
return {
|
|
11461
|
+
maxResults: 'number',
|
|
11462
|
+
nextToken: 'string',
|
|
11463
|
+
tenantContextShrink: 'string',
|
|
11464
|
+
};
|
|
11465
|
+
}
|
|
11466
|
+
}
|
|
11467
|
+
exports.ListTeamsShrinkRequest = ListTeamsShrinkRequest;
|
|
11468
|
+
class ListTeamsResponseBody extends $tea.Model {
|
|
11469
|
+
constructor(map) {
|
|
11470
|
+
super(map);
|
|
11471
|
+
}
|
|
11472
|
+
static names() {
|
|
11473
|
+
return {
|
|
11474
|
+
nextToken: 'nextToken',
|
|
10568
11475
|
requestId: 'requestId',
|
|
10569
|
-
|
|
11476
|
+
teams: 'teams',
|
|
10570
11477
|
vendorRequestId: 'vendorRequestId',
|
|
10571
11478
|
vendorType: 'vendorType',
|
|
10572
11479
|
};
|
|
10573
11480
|
}
|
|
10574
11481
|
static types() {
|
|
10575
11482
|
return {
|
|
10576
|
-
|
|
10577
|
-
pageNumber: 'number',
|
|
11483
|
+
nextToken: 'string',
|
|
10578
11484
|
requestId: 'string',
|
|
10579
|
-
|
|
11485
|
+
teams: { 'type': 'array', 'itemType': ListTeamsResponseBodyTeams },
|
|
10580
11486
|
vendorRequestId: 'string',
|
|
10581
11487
|
vendorType: 'string',
|
|
10582
11488
|
};
|
|
10583
11489
|
}
|
|
10584
11490
|
}
|
|
10585
|
-
exports.
|
|
10586
|
-
class
|
|
11491
|
+
exports.ListTeamsResponseBody = ListTeamsResponseBody;
|
|
11492
|
+
class ListTeamsResponse extends $tea.Model {
|
|
10587
11493
|
constructor(map) {
|
|
10588
11494
|
super(map);
|
|
10589
11495
|
}
|
|
@@ -10598,11 +11504,11 @@ class ListTableDataByFormInstanceIdTableIdResponse extends $tea.Model {
|
|
|
10598
11504
|
return {
|
|
10599
11505
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10600
11506
|
statusCode: 'number',
|
|
10601
|
-
body:
|
|
11507
|
+
body: ListTeamsResponseBody,
|
|
10602
11508
|
};
|
|
10603
11509
|
}
|
|
10604
11510
|
}
|
|
10605
|
-
exports.
|
|
11511
|
+
exports.ListTeamsResponse = ListTeamsResponse;
|
|
10606
11512
|
class ListWorkspacesHeaders extends $tea.Model {
|
|
10607
11513
|
constructor(map) {
|
|
10608
11514
|
super(map);
|
|
@@ -13197,6 +14103,112 @@ class ReceiverListReportResponse extends $tea.Model {
|
|
|
13197
14103
|
}
|
|
13198
14104
|
}
|
|
13199
14105
|
exports.ReceiverListReportResponse = ReceiverListReportResponse;
|
|
14106
|
+
class RedirectTaskHeaders extends $tea.Model {
|
|
14107
|
+
constructor(map) {
|
|
14108
|
+
super(map);
|
|
14109
|
+
}
|
|
14110
|
+
static names() {
|
|
14111
|
+
return {
|
|
14112
|
+
commonHeaders: 'commonHeaders',
|
|
14113
|
+
accountContext: 'AccountContext',
|
|
14114
|
+
};
|
|
14115
|
+
}
|
|
14116
|
+
static types() {
|
|
14117
|
+
return {
|
|
14118
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
14119
|
+
accountContext: RedirectTaskHeadersAccountContext,
|
|
14120
|
+
};
|
|
14121
|
+
}
|
|
14122
|
+
}
|
|
14123
|
+
exports.RedirectTaskHeaders = RedirectTaskHeaders;
|
|
14124
|
+
class RedirectTaskShrinkHeaders extends $tea.Model {
|
|
14125
|
+
constructor(map) {
|
|
14126
|
+
super(map);
|
|
14127
|
+
}
|
|
14128
|
+
static names() {
|
|
14129
|
+
return {
|
|
14130
|
+
commonHeaders: 'commonHeaders',
|
|
14131
|
+
accountContextShrink: 'AccountContext',
|
|
14132
|
+
};
|
|
14133
|
+
}
|
|
14134
|
+
static types() {
|
|
14135
|
+
return {
|
|
14136
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
14137
|
+
accountContextShrink: 'string',
|
|
14138
|
+
};
|
|
14139
|
+
}
|
|
14140
|
+
}
|
|
14141
|
+
exports.RedirectTaskShrinkHeaders = RedirectTaskShrinkHeaders;
|
|
14142
|
+
class RedirectTaskRequest extends $tea.Model {
|
|
14143
|
+
constructor(map) {
|
|
14144
|
+
super(map);
|
|
14145
|
+
}
|
|
14146
|
+
static names() {
|
|
14147
|
+
return {
|
|
14148
|
+
appType: 'AppType',
|
|
14149
|
+
byManager: 'ByManager',
|
|
14150
|
+
language: 'Language',
|
|
14151
|
+
nowActionExecutorId: 'NowActionExecutorId',
|
|
14152
|
+
processInstanceId: 'ProcessInstanceId',
|
|
14153
|
+
remark: 'Remark',
|
|
14154
|
+
systemToken: 'SystemToken',
|
|
14155
|
+
taskId: 'TaskId',
|
|
14156
|
+
};
|
|
14157
|
+
}
|
|
14158
|
+
static types() {
|
|
14159
|
+
return {
|
|
14160
|
+
appType: 'string',
|
|
14161
|
+
byManager: 'string',
|
|
14162
|
+
language: 'string',
|
|
14163
|
+
nowActionExecutorId: 'string',
|
|
14164
|
+
processInstanceId: 'string',
|
|
14165
|
+
remark: 'string',
|
|
14166
|
+
systemToken: 'string',
|
|
14167
|
+
taskId: 'number',
|
|
14168
|
+
};
|
|
14169
|
+
}
|
|
14170
|
+
}
|
|
14171
|
+
exports.RedirectTaskRequest = RedirectTaskRequest;
|
|
14172
|
+
class RedirectTaskResponseBody extends $tea.Model {
|
|
14173
|
+
constructor(map) {
|
|
14174
|
+
super(map);
|
|
14175
|
+
}
|
|
14176
|
+
static names() {
|
|
14177
|
+
return {
|
|
14178
|
+
requestId: 'requestId',
|
|
14179
|
+
vendorRequestId: 'vendorRequestId',
|
|
14180
|
+
vendorType: 'vendorType',
|
|
14181
|
+
};
|
|
14182
|
+
}
|
|
14183
|
+
static types() {
|
|
14184
|
+
return {
|
|
14185
|
+
requestId: 'string',
|
|
14186
|
+
vendorRequestId: 'string',
|
|
14187
|
+
vendorType: 'string',
|
|
14188
|
+
};
|
|
14189
|
+
}
|
|
14190
|
+
}
|
|
14191
|
+
exports.RedirectTaskResponseBody = RedirectTaskResponseBody;
|
|
14192
|
+
class RedirectTaskResponse extends $tea.Model {
|
|
14193
|
+
constructor(map) {
|
|
14194
|
+
super(map);
|
|
14195
|
+
}
|
|
14196
|
+
static names() {
|
|
14197
|
+
return {
|
|
14198
|
+
headers: 'headers',
|
|
14199
|
+
statusCode: 'statusCode',
|
|
14200
|
+
body: 'body',
|
|
14201
|
+
};
|
|
14202
|
+
}
|
|
14203
|
+
static types() {
|
|
14204
|
+
return {
|
|
14205
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
14206
|
+
statusCode: 'number',
|
|
14207
|
+
body: RedirectTaskResponseBody,
|
|
14208
|
+
};
|
|
14209
|
+
}
|
|
14210
|
+
}
|
|
14211
|
+
exports.RedirectTaskResponse = RedirectTaskResponse;
|
|
13200
14212
|
class RemoveAttendeeHeaders extends $tea.Model {
|
|
13201
14213
|
constructor(map) {
|
|
13202
14214
|
super(map);
|
|
@@ -13605,15 +14617,121 @@ class SaveFormDataRequest extends $tea.Model {
|
|
|
13605
14617
|
static types() {
|
|
13606
14618
|
return {
|
|
13607
14619
|
appType: 'string',
|
|
13608
|
-
formDataJson: 'string',
|
|
13609
|
-
formUuid: 'string',
|
|
14620
|
+
formDataJson: 'string',
|
|
14621
|
+
formUuid: 'string',
|
|
14622
|
+
language: 'string',
|
|
14623
|
+
systemToken: 'string',
|
|
14624
|
+
};
|
|
14625
|
+
}
|
|
14626
|
+
}
|
|
14627
|
+
exports.SaveFormDataRequest = SaveFormDataRequest;
|
|
14628
|
+
class SaveFormDataResponseBody extends $tea.Model {
|
|
14629
|
+
constructor(map) {
|
|
14630
|
+
super(map);
|
|
14631
|
+
}
|
|
14632
|
+
static names() {
|
|
14633
|
+
return {
|
|
14634
|
+
requestId: 'requestId',
|
|
14635
|
+
result: 'result',
|
|
14636
|
+
vendorRequestId: 'vendorRequestId',
|
|
14637
|
+
vendorType: 'vendorType',
|
|
14638
|
+
};
|
|
14639
|
+
}
|
|
14640
|
+
static types() {
|
|
14641
|
+
return {
|
|
14642
|
+
requestId: 'string',
|
|
14643
|
+
result: 'string',
|
|
14644
|
+
vendorRequestId: 'string',
|
|
14645
|
+
vendorType: 'string',
|
|
14646
|
+
};
|
|
14647
|
+
}
|
|
14648
|
+
}
|
|
14649
|
+
exports.SaveFormDataResponseBody = SaveFormDataResponseBody;
|
|
14650
|
+
class SaveFormDataResponse extends $tea.Model {
|
|
14651
|
+
constructor(map) {
|
|
14652
|
+
super(map);
|
|
14653
|
+
}
|
|
14654
|
+
static names() {
|
|
14655
|
+
return {
|
|
14656
|
+
headers: 'headers',
|
|
14657
|
+
statusCode: 'statusCode',
|
|
14658
|
+
body: 'body',
|
|
14659
|
+
};
|
|
14660
|
+
}
|
|
14661
|
+
static types() {
|
|
14662
|
+
return {
|
|
14663
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
14664
|
+
statusCode: 'number',
|
|
14665
|
+
body: SaveFormDataResponseBody,
|
|
14666
|
+
};
|
|
14667
|
+
}
|
|
14668
|
+
}
|
|
14669
|
+
exports.SaveFormDataResponse = SaveFormDataResponse;
|
|
14670
|
+
class SaveFormRemarkHeaders extends $tea.Model {
|
|
14671
|
+
constructor(map) {
|
|
14672
|
+
super(map);
|
|
14673
|
+
}
|
|
14674
|
+
static names() {
|
|
14675
|
+
return {
|
|
14676
|
+
commonHeaders: 'commonHeaders',
|
|
14677
|
+
accountContext: 'AccountContext',
|
|
14678
|
+
};
|
|
14679
|
+
}
|
|
14680
|
+
static types() {
|
|
14681
|
+
return {
|
|
14682
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
14683
|
+
accountContext: SaveFormRemarkHeadersAccountContext,
|
|
14684
|
+
};
|
|
14685
|
+
}
|
|
14686
|
+
}
|
|
14687
|
+
exports.SaveFormRemarkHeaders = SaveFormRemarkHeaders;
|
|
14688
|
+
class SaveFormRemarkShrinkHeaders extends $tea.Model {
|
|
14689
|
+
constructor(map) {
|
|
14690
|
+
super(map);
|
|
14691
|
+
}
|
|
14692
|
+
static names() {
|
|
14693
|
+
return {
|
|
14694
|
+
commonHeaders: 'commonHeaders',
|
|
14695
|
+
accountContextShrink: 'AccountContext',
|
|
14696
|
+
};
|
|
14697
|
+
}
|
|
14698
|
+
static types() {
|
|
14699
|
+
return {
|
|
14700
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
14701
|
+
accountContextShrink: 'string',
|
|
14702
|
+
};
|
|
14703
|
+
}
|
|
14704
|
+
}
|
|
14705
|
+
exports.SaveFormRemarkShrinkHeaders = SaveFormRemarkShrinkHeaders;
|
|
14706
|
+
class SaveFormRemarkRequest extends $tea.Model {
|
|
14707
|
+
constructor(map) {
|
|
14708
|
+
super(map);
|
|
14709
|
+
}
|
|
14710
|
+
static names() {
|
|
14711
|
+
return {
|
|
14712
|
+
appType: 'AppType',
|
|
14713
|
+
atUserId: 'AtUserId',
|
|
14714
|
+
content: 'Content',
|
|
14715
|
+
formInstanceId: 'FormInstanceId',
|
|
14716
|
+
language: 'Language',
|
|
14717
|
+
replyId: 'ReplyId',
|
|
14718
|
+
systemToken: 'SystemToken',
|
|
14719
|
+
};
|
|
14720
|
+
}
|
|
14721
|
+
static types() {
|
|
14722
|
+
return {
|
|
14723
|
+
appType: 'string',
|
|
14724
|
+
atUserId: 'string',
|
|
14725
|
+
content: 'string',
|
|
14726
|
+
formInstanceId: 'string',
|
|
13610
14727
|
language: 'string',
|
|
14728
|
+
replyId: 'number',
|
|
13611
14729
|
systemToken: 'string',
|
|
13612
14730
|
};
|
|
13613
14731
|
}
|
|
13614
14732
|
}
|
|
13615
|
-
exports.
|
|
13616
|
-
class
|
|
14733
|
+
exports.SaveFormRemarkRequest = SaveFormRemarkRequest;
|
|
14734
|
+
class SaveFormRemarkResponseBody extends $tea.Model {
|
|
13617
14735
|
constructor(map) {
|
|
13618
14736
|
super(map);
|
|
13619
14737
|
}
|
|
@@ -13628,14 +14746,14 @@ class SaveFormDataResponseBody extends $tea.Model {
|
|
|
13628
14746
|
static types() {
|
|
13629
14747
|
return {
|
|
13630
14748
|
requestId: 'string',
|
|
13631
|
-
result: '
|
|
14749
|
+
result: 'number',
|
|
13632
14750
|
vendorRequestId: 'string',
|
|
13633
14751
|
vendorType: 'string',
|
|
13634
14752
|
};
|
|
13635
14753
|
}
|
|
13636
14754
|
}
|
|
13637
|
-
exports.
|
|
13638
|
-
class
|
|
14755
|
+
exports.SaveFormRemarkResponseBody = SaveFormRemarkResponseBody;
|
|
14756
|
+
class SaveFormRemarkResponse extends $tea.Model {
|
|
13639
14757
|
constructor(map) {
|
|
13640
14758
|
super(map);
|
|
13641
14759
|
}
|
|
@@ -13650,11 +14768,11 @@ class SaveFormDataResponse extends $tea.Model {
|
|
|
13650
14768
|
return {
|
|
13651
14769
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
13652
14770
|
statusCode: 'number',
|
|
13653
|
-
body:
|
|
14771
|
+
body: SaveFormRemarkResponseBody,
|
|
13654
14772
|
};
|
|
13655
14773
|
}
|
|
13656
14774
|
}
|
|
13657
|
-
exports.
|
|
14775
|
+
exports.SaveFormRemarkResponse = SaveFormRemarkResponse;
|
|
13658
14776
|
class SearchEmployeeFieldValuesHeaders extends $tea.Model {
|
|
13659
14777
|
constructor(map) {
|
|
13660
14778
|
super(map);
|
|
@@ -18459,12 +19577,12 @@ class CreateDeliveryPlanHeadersAccountContext extends $tea.Model {
|
|
|
18459
19577
|
}
|
|
18460
19578
|
static names() {
|
|
18461
19579
|
return {
|
|
18462
|
-
|
|
19580
|
+
userToken: 'userToken',
|
|
18463
19581
|
};
|
|
18464
19582
|
}
|
|
18465
19583
|
static types() {
|
|
18466
19584
|
return {
|
|
18467
|
-
|
|
19585
|
+
userToken: 'string',
|
|
18468
19586
|
};
|
|
18469
19587
|
}
|
|
18470
19588
|
}
|
|
@@ -19911,6 +21029,22 @@ class DeleteWorkspaceMembersRequestTenantContext extends $tea.Model {
|
|
|
19911
21029
|
}
|
|
19912
21030
|
}
|
|
19913
21031
|
exports.DeleteWorkspaceMembersRequestTenantContext = DeleteWorkspaceMembersRequestTenantContext;
|
|
21032
|
+
class ExecuteBatchTaskHeadersAccountContext extends $tea.Model {
|
|
21033
|
+
constructor(map) {
|
|
21034
|
+
super(map);
|
|
21035
|
+
}
|
|
21036
|
+
static names() {
|
|
21037
|
+
return {
|
|
21038
|
+
accountId: 'accountId',
|
|
21039
|
+
};
|
|
21040
|
+
}
|
|
21041
|
+
static types() {
|
|
21042
|
+
return {
|
|
21043
|
+
accountId: 'string',
|
|
21044
|
+
};
|
|
21045
|
+
}
|
|
21046
|
+
}
|
|
21047
|
+
exports.ExecuteBatchTaskHeadersAccountContext = ExecuteBatchTaskHeadersAccountContext;
|
|
19914
21048
|
class ExecutePlatformTaskHeadersAccountContext extends $tea.Model {
|
|
19915
21049
|
constructor(map) {
|
|
19916
21050
|
super(map);
|
|
@@ -20029,6 +21163,140 @@ class GetAllSheetsResponseBodyValue extends $tea.Model {
|
|
|
20029
21163
|
}
|
|
20030
21164
|
}
|
|
20031
21165
|
exports.GetAllSheetsResponseBodyValue = GetAllSheetsResponseBodyValue;
|
|
21166
|
+
class GetCorpAccomplishmentTasksHeadersAccountContext extends $tea.Model {
|
|
21167
|
+
constructor(map) {
|
|
21168
|
+
super(map);
|
|
21169
|
+
}
|
|
21170
|
+
static names() {
|
|
21171
|
+
return {
|
|
21172
|
+
accountId: 'accountId',
|
|
21173
|
+
};
|
|
21174
|
+
}
|
|
21175
|
+
static types() {
|
|
21176
|
+
return {
|
|
21177
|
+
accountId: 'string',
|
|
21178
|
+
};
|
|
21179
|
+
}
|
|
21180
|
+
}
|
|
21181
|
+
exports.GetCorpAccomplishmentTasksHeadersAccountContext = GetCorpAccomplishmentTasksHeadersAccountContext;
|
|
21182
|
+
class GetCorpAccomplishmentTasksResponseBodyData extends $tea.Model {
|
|
21183
|
+
constructor(map) {
|
|
21184
|
+
super(map);
|
|
21185
|
+
}
|
|
21186
|
+
static names() {
|
|
21187
|
+
return {
|
|
21188
|
+
activeTimeGMT: 'ActiveTimeGMT',
|
|
21189
|
+
actualActionerId: 'ActualActionerId',
|
|
21190
|
+
appType: 'AppType',
|
|
21191
|
+
createTimeGMT: 'CreateTimeGMT',
|
|
21192
|
+
finishTimeGMT: 'FinishTimeGMT',
|
|
21193
|
+
originatorEmail: 'OriginatorEmail',
|
|
21194
|
+
originatorId: 'OriginatorId',
|
|
21195
|
+
originatorName: 'OriginatorName',
|
|
21196
|
+
originatorNameInEnglish: 'OriginatorNameInEnglish',
|
|
21197
|
+
originatorNickName: 'OriginatorNickName',
|
|
21198
|
+
originatorNickNameInEnglish: 'OriginatorNickNameInEnglish',
|
|
21199
|
+
originatorPhoto: 'OriginatorPhoto',
|
|
21200
|
+
outResult: 'OutResult',
|
|
21201
|
+
outResultName: 'OutResultName',
|
|
21202
|
+
processInstanceId: 'ProcessInstanceId',
|
|
21203
|
+
title: 'Title',
|
|
21204
|
+
};
|
|
21205
|
+
}
|
|
21206
|
+
static types() {
|
|
21207
|
+
return {
|
|
21208
|
+
activeTimeGMT: 'string',
|
|
21209
|
+
actualActionerId: 'string',
|
|
21210
|
+
appType: 'string',
|
|
21211
|
+
createTimeGMT: 'string',
|
|
21212
|
+
finishTimeGMT: 'string',
|
|
21213
|
+
originatorEmail: 'string',
|
|
21214
|
+
originatorId: 'string',
|
|
21215
|
+
originatorName: 'string',
|
|
21216
|
+
originatorNameInEnglish: 'string',
|
|
21217
|
+
originatorNickName: 'string',
|
|
21218
|
+
originatorNickNameInEnglish: 'string',
|
|
21219
|
+
originatorPhoto: 'string',
|
|
21220
|
+
outResult: 'string',
|
|
21221
|
+
outResultName: 'string',
|
|
21222
|
+
processInstanceId: 'string',
|
|
21223
|
+
title: 'string',
|
|
21224
|
+
};
|
|
21225
|
+
}
|
|
21226
|
+
}
|
|
21227
|
+
exports.GetCorpAccomplishmentTasksResponseBodyData = GetCorpAccomplishmentTasksResponseBodyData;
|
|
21228
|
+
class GetCorpTasksHeadersAccountContext extends $tea.Model {
|
|
21229
|
+
constructor(map) {
|
|
21230
|
+
super(map);
|
|
21231
|
+
}
|
|
21232
|
+
static names() {
|
|
21233
|
+
return {
|
|
21234
|
+
accountId: 'accountId',
|
|
21235
|
+
};
|
|
21236
|
+
}
|
|
21237
|
+
static types() {
|
|
21238
|
+
return {
|
|
21239
|
+
accountId: 'string',
|
|
21240
|
+
};
|
|
21241
|
+
}
|
|
21242
|
+
}
|
|
21243
|
+
exports.GetCorpTasksHeadersAccountContext = GetCorpTasksHeadersAccountContext;
|
|
21244
|
+
class GetCorpTasksResponseBodyData extends $tea.Model {
|
|
21245
|
+
constructor(map) {
|
|
21246
|
+
super(map);
|
|
21247
|
+
}
|
|
21248
|
+
static names() {
|
|
21249
|
+
return {
|
|
21250
|
+
activeTimeGMT: 'ActiveTimeGMT',
|
|
21251
|
+
actualActionerId: 'ActualActionerId',
|
|
21252
|
+
appType: 'AppType',
|
|
21253
|
+
createTimeGMT: 'CreateTimeGMT',
|
|
21254
|
+
finishTimeGMT: 'FinishTimeGMT',
|
|
21255
|
+
originatorEmail: 'OriginatorEmail',
|
|
21256
|
+
originatorId: 'OriginatorId',
|
|
21257
|
+
originatorName: 'OriginatorName',
|
|
21258
|
+
originatorNameInEnglish: 'OriginatorNameInEnglish',
|
|
21259
|
+
originatorNickName: 'OriginatorNickName',
|
|
21260
|
+
originatorNickNameEn: 'OriginatorNickNameEn',
|
|
21261
|
+
originatorNickNameInEnglish: 'OriginatorNickNameInEnglish',
|
|
21262
|
+
originatorPhoto: 'OriginatorPhoto',
|
|
21263
|
+
outResult: 'OutResult',
|
|
21264
|
+
outResultName: 'OutResultName',
|
|
21265
|
+
processInstanceId: 'ProcessInstanceId',
|
|
21266
|
+
status: 'Status',
|
|
21267
|
+
taskId: 'TaskId',
|
|
21268
|
+
taskType: 'TaskType',
|
|
21269
|
+
title: 'Title',
|
|
21270
|
+
titleInEnglish: 'TitleInEnglish',
|
|
21271
|
+
};
|
|
21272
|
+
}
|
|
21273
|
+
static types() {
|
|
21274
|
+
return {
|
|
21275
|
+
activeTimeGMT: 'string',
|
|
21276
|
+
actualActionerId: 'string',
|
|
21277
|
+
appType: 'string',
|
|
21278
|
+
createTimeGMT: 'string',
|
|
21279
|
+
finishTimeGMT: 'string',
|
|
21280
|
+
originatorEmail: 'string',
|
|
21281
|
+
originatorId: 'string',
|
|
21282
|
+
originatorName: 'string',
|
|
21283
|
+
originatorNameInEnglish: 'string',
|
|
21284
|
+
originatorNickName: 'string',
|
|
21285
|
+
originatorNickNameEn: 'string',
|
|
21286
|
+
originatorNickNameInEnglish: 'string',
|
|
21287
|
+
originatorPhoto: 'string',
|
|
21288
|
+
outResult: 'string',
|
|
21289
|
+
outResultName: 'string',
|
|
21290
|
+
processInstanceId: 'string',
|
|
21291
|
+
status: 'string',
|
|
21292
|
+
taskId: 'string',
|
|
21293
|
+
taskType: 'string',
|
|
21294
|
+
title: 'string',
|
|
21295
|
+
titleInEnglish: 'string',
|
|
21296
|
+
};
|
|
21297
|
+
}
|
|
21298
|
+
}
|
|
21299
|
+
exports.GetCorpTasksResponseBodyData = GetCorpTasksResponseBodyData;
|
|
20032
21300
|
class GetEventHeadersAccountContext extends $tea.Model {
|
|
20033
21301
|
constructor(map) {
|
|
20034
21302
|
super(map);
|
|
@@ -21611,6 +22879,54 @@ class GetNodesResponseBodyNodes extends $tea.Model {
|
|
|
21611
22879
|
}
|
|
21612
22880
|
}
|
|
21613
22881
|
exports.GetNodesResponseBodyNodes = GetNodesResponseBodyNodes;
|
|
22882
|
+
class GetNotifyMeHeadersAccountContext extends $tea.Model {
|
|
22883
|
+
constructor(map) {
|
|
22884
|
+
super(map);
|
|
22885
|
+
}
|
|
22886
|
+
static names() {
|
|
22887
|
+
return {
|
|
22888
|
+
accountId: 'accountId',
|
|
22889
|
+
};
|
|
22890
|
+
}
|
|
22891
|
+
static types() {
|
|
22892
|
+
return {
|
|
22893
|
+
accountId: 'string',
|
|
22894
|
+
};
|
|
22895
|
+
}
|
|
22896
|
+
}
|
|
22897
|
+
exports.GetNotifyMeHeadersAccountContext = GetNotifyMeHeadersAccountContext;
|
|
22898
|
+
class GetNotifyMeResponseBodyData extends $tea.Model {
|
|
22899
|
+
constructor(map) {
|
|
22900
|
+
super(map);
|
|
22901
|
+
}
|
|
22902
|
+
static names() {
|
|
22903
|
+
return {
|
|
22904
|
+
activityId: 'ActivityId',
|
|
22905
|
+
appType: 'AppType',
|
|
22906
|
+
corpId: 'CorpId',
|
|
22907
|
+
createTimeGMT: 'CreateTimeGMT',
|
|
22908
|
+
creatorUserId: 'CreatorUserId',
|
|
22909
|
+
formInstanceId: 'FormInstanceId',
|
|
22910
|
+
instStatus: 'InstStatus',
|
|
22911
|
+
mobileUrl: 'MobileUrl',
|
|
22912
|
+
modifiedTimeGMT: 'ModifiedTimeGMT',
|
|
22913
|
+
};
|
|
22914
|
+
}
|
|
22915
|
+
static types() {
|
|
22916
|
+
return {
|
|
22917
|
+
activityId: 'string',
|
|
22918
|
+
appType: 'string',
|
|
22919
|
+
corpId: 'string',
|
|
22920
|
+
createTimeGMT: 'string',
|
|
22921
|
+
creatorUserId: 'string',
|
|
22922
|
+
formInstanceId: 'string',
|
|
22923
|
+
instStatus: 'string',
|
|
22924
|
+
mobileUrl: 'string',
|
|
22925
|
+
modifiedTimeGMT: 'string',
|
|
22926
|
+
};
|
|
22927
|
+
}
|
|
22928
|
+
}
|
|
22929
|
+
exports.GetNotifyMeResponseBodyData = GetNotifyMeResponseBodyData;
|
|
21614
22930
|
class GetOpenUrlHeadersAccountContext extends $tea.Model {
|
|
21615
22931
|
constructor(map) {
|
|
21616
22932
|
super(map);
|
|
@@ -22069,6 +23385,60 @@ class GetReportUnReadCountRequestTenantContext extends $tea.Model {
|
|
|
22069
23385
|
}
|
|
22070
23386
|
}
|
|
22071
23387
|
exports.GetReportUnReadCountRequestTenantContext = GetReportUnReadCountRequestTenantContext;
|
|
23388
|
+
class GetRunningTasksHeadersAccountContext extends $tea.Model {
|
|
23389
|
+
constructor(map) {
|
|
23390
|
+
super(map);
|
|
23391
|
+
}
|
|
23392
|
+
static names() {
|
|
23393
|
+
return {
|
|
23394
|
+
accountId: 'accountId',
|
|
23395
|
+
};
|
|
23396
|
+
}
|
|
23397
|
+
static types() {
|
|
23398
|
+
return {
|
|
23399
|
+
accountId: 'string',
|
|
23400
|
+
};
|
|
23401
|
+
}
|
|
23402
|
+
}
|
|
23403
|
+
exports.GetRunningTasksHeadersAccountContext = GetRunningTasksHeadersAccountContext;
|
|
23404
|
+
class GetRunningTasksResponseBodyResult extends $tea.Model {
|
|
23405
|
+
constructor(map) {
|
|
23406
|
+
super(map);
|
|
23407
|
+
}
|
|
23408
|
+
static names() {
|
|
23409
|
+
return {
|
|
23410
|
+
activeTimeGMT: 'ActiveTimeGMT',
|
|
23411
|
+
activityId: 'ActivityId',
|
|
23412
|
+
actualActionerId: 'ActualActionerId',
|
|
23413
|
+
createTimeGMT: 'CreateTimeGMT',
|
|
23414
|
+
finishTimeGMT: 'FinishTimeGMT',
|
|
23415
|
+
originatorId: 'OriginatorId',
|
|
23416
|
+
processInstanceId: 'ProcessInstanceId',
|
|
23417
|
+
status: 'Status',
|
|
23418
|
+
taskId: 'TaskId',
|
|
23419
|
+
taskType: 'TaskType',
|
|
23420
|
+
title: 'Title',
|
|
23421
|
+
titleInEnglish: 'TitleInEnglish',
|
|
23422
|
+
};
|
|
23423
|
+
}
|
|
23424
|
+
static types() {
|
|
23425
|
+
return {
|
|
23426
|
+
activeTimeGMT: 'string',
|
|
23427
|
+
activityId: 'string',
|
|
23428
|
+
actualActionerId: 'string',
|
|
23429
|
+
createTimeGMT: 'string',
|
|
23430
|
+
finishTimeGMT: 'string',
|
|
23431
|
+
originatorId: 'string',
|
|
23432
|
+
processInstanceId: 'string',
|
|
23433
|
+
status: 'string',
|
|
23434
|
+
taskId: 'string',
|
|
23435
|
+
taskType: 'string',
|
|
23436
|
+
title: 'string',
|
|
23437
|
+
titleInEnglish: 'string',
|
|
23438
|
+
};
|
|
23439
|
+
}
|
|
23440
|
+
}
|
|
23441
|
+
exports.GetRunningTasksResponseBodyResult = GetRunningTasksResponseBodyResult;
|
|
22072
23442
|
class GetSheetHeadersAccountContext extends $tea.Model {
|
|
22073
23443
|
constructor(map) {
|
|
22074
23444
|
super(map);
|
|
@@ -22415,36 +23785,144 @@ class GetSubscribedCalendarHeadersAccountContext extends $tea.Model {
|
|
|
22415
23785
|
}
|
|
22416
23786
|
static names() {
|
|
22417
23787
|
return {
|
|
22418
|
-
accountId: 'accountId',
|
|
23788
|
+
accountId: 'accountId',
|
|
23789
|
+
};
|
|
23790
|
+
}
|
|
23791
|
+
static types() {
|
|
23792
|
+
return {
|
|
23793
|
+
accountId: 'string',
|
|
23794
|
+
};
|
|
23795
|
+
}
|
|
23796
|
+
}
|
|
23797
|
+
exports.GetSubscribedCalendarHeadersAccountContext = GetSubscribedCalendarHeadersAccountContext;
|
|
23798
|
+
class GetSubscribedCalendarResponseBodySubscribeScope extends $tea.Model {
|
|
23799
|
+
constructor(map) {
|
|
23800
|
+
super(map);
|
|
23801
|
+
}
|
|
23802
|
+
static names() {
|
|
23803
|
+
return {
|
|
23804
|
+
corpIds: 'CorpIds',
|
|
23805
|
+
openConversationIds: 'OpenConversationIds',
|
|
23806
|
+
userIds: 'UserIds',
|
|
23807
|
+
};
|
|
23808
|
+
}
|
|
23809
|
+
static types() {
|
|
23810
|
+
return {
|
|
23811
|
+
corpIds: { 'type': 'array', 'itemType': 'string' },
|
|
23812
|
+
openConversationIds: { 'type': 'array', 'itemType': 'string' },
|
|
23813
|
+
userIds: { 'type': 'array', 'itemType': 'string' },
|
|
23814
|
+
};
|
|
23815
|
+
}
|
|
23816
|
+
}
|
|
23817
|
+
exports.GetSubscribedCalendarResponseBodySubscribeScope = GetSubscribedCalendarResponseBodySubscribeScope;
|
|
23818
|
+
class GetTaskCopiesHeadersAccountContext extends $tea.Model {
|
|
23819
|
+
constructor(map) {
|
|
23820
|
+
super(map);
|
|
23821
|
+
}
|
|
23822
|
+
static names() {
|
|
23823
|
+
return {
|
|
23824
|
+
accountId: 'accountId',
|
|
23825
|
+
};
|
|
23826
|
+
}
|
|
23827
|
+
static types() {
|
|
23828
|
+
return {
|
|
23829
|
+
accountId: 'string',
|
|
23830
|
+
};
|
|
23831
|
+
}
|
|
23832
|
+
}
|
|
23833
|
+
exports.GetTaskCopiesHeadersAccountContext = GetTaskCopiesHeadersAccountContext;
|
|
23834
|
+
class GetTaskCopiesResponseBodyDataCurrentActivityInstances extends $tea.Model {
|
|
23835
|
+
constructor(map) {
|
|
23836
|
+
super(map);
|
|
23837
|
+
}
|
|
23838
|
+
static names() {
|
|
23839
|
+
return {
|
|
23840
|
+
activityId: 'ActivityId',
|
|
23841
|
+
activityInstanceStatus: 'ActivityInstanceStatus',
|
|
23842
|
+
activityName: 'ActivityName',
|
|
23843
|
+
activityNameInEnglish: 'ActivityNameInEnglish',
|
|
23844
|
+
id: 'Id',
|
|
22419
23845
|
};
|
|
22420
23846
|
}
|
|
22421
23847
|
static types() {
|
|
22422
23848
|
return {
|
|
22423
|
-
|
|
23849
|
+
activityId: 'string',
|
|
23850
|
+
activityInstanceStatus: 'string',
|
|
23851
|
+
activityName: 'string',
|
|
23852
|
+
activityNameInEnglish: 'string',
|
|
23853
|
+
id: 'number',
|
|
22424
23854
|
};
|
|
22425
23855
|
}
|
|
22426
23856
|
}
|
|
22427
|
-
exports.
|
|
22428
|
-
class
|
|
23857
|
+
exports.GetTaskCopiesResponseBodyDataCurrentActivityInstances = GetTaskCopiesResponseBodyDataCurrentActivityInstances;
|
|
23858
|
+
class GetTaskCopiesResponseBodyData extends $tea.Model {
|
|
22429
23859
|
constructor(map) {
|
|
22430
23860
|
super(map);
|
|
22431
23861
|
}
|
|
22432
23862
|
static names() {
|
|
22433
23863
|
return {
|
|
22434
|
-
|
|
22435
|
-
|
|
22436
|
-
|
|
23864
|
+
actionExecutorId: 'ActionExecutorId',
|
|
23865
|
+
actionExecutorName: 'ActionExecutorName',
|
|
23866
|
+
appType: 'AppType',
|
|
23867
|
+
carbonActivityId: 'CarbonActivityId',
|
|
23868
|
+
createTimeGMT: 'CreateTimeGMT',
|
|
23869
|
+
currentActivityInstances: 'CurrentActivityInstances',
|
|
23870
|
+
dataMap: 'DataMap',
|
|
23871
|
+
dataType: 'DataType',
|
|
23872
|
+
finishTimeGMT: 'FinishTimeGMT',
|
|
23873
|
+
formInstanceId: 'FormInstanceId',
|
|
23874
|
+
formUuid: 'FormUuid',
|
|
23875
|
+
instanceValue: 'InstanceValue',
|
|
23876
|
+
modifiedTimeGMT: 'ModifiedTimeGMT',
|
|
23877
|
+
originatorAvatar: 'OriginatorAvatar',
|
|
23878
|
+
originatorDisplayName: 'OriginatorDisplayName',
|
|
23879
|
+
originatorId: 'OriginatorId',
|
|
23880
|
+
processApprovedResult: 'ProcessApprovedResult',
|
|
23881
|
+
processApprovedResultText: 'ProcessApprovedResultText',
|
|
23882
|
+
processCode: 'ProcessCode',
|
|
23883
|
+
processId: 'ProcessId',
|
|
23884
|
+
processInstanceId: 'ProcessInstanceId',
|
|
23885
|
+
processInstanceStatus: 'ProcessInstanceStatus',
|
|
23886
|
+
processInstanceStatusText: 'ProcessInstanceStatusText',
|
|
23887
|
+
processName: 'ProcessName',
|
|
23888
|
+
serialNumber: 'SerialNumber',
|
|
23889
|
+
title: 'Title',
|
|
23890
|
+
version: 'Version',
|
|
22437
23891
|
};
|
|
22438
23892
|
}
|
|
22439
23893
|
static types() {
|
|
22440
23894
|
return {
|
|
22441
|
-
|
|
22442
|
-
|
|
22443
|
-
|
|
23895
|
+
actionExecutorId: { 'type': 'array', 'itemType': 'string' },
|
|
23896
|
+
actionExecutorName: { 'type': 'array', 'itemType': 'string' },
|
|
23897
|
+
appType: 'string',
|
|
23898
|
+
carbonActivityId: 'string',
|
|
23899
|
+
createTimeGMT: 'string',
|
|
23900
|
+
currentActivityInstances: { 'type': 'array', 'itemType': GetTaskCopiesResponseBodyDataCurrentActivityInstances },
|
|
23901
|
+
dataMap: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
23902
|
+
dataType: 'string',
|
|
23903
|
+
finishTimeGMT: 'string',
|
|
23904
|
+
formInstanceId: 'string',
|
|
23905
|
+
formUuid: 'string',
|
|
23906
|
+
instanceValue: 'string',
|
|
23907
|
+
modifiedTimeGMT: 'string',
|
|
23908
|
+
originatorAvatar: 'string',
|
|
23909
|
+
originatorDisplayName: 'string',
|
|
23910
|
+
originatorId: 'string',
|
|
23911
|
+
processApprovedResult: 'string',
|
|
23912
|
+
processApprovedResultText: 'string',
|
|
23913
|
+
processCode: 'string',
|
|
23914
|
+
processId: 'number',
|
|
23915
|
+
processInstanceId: 'string',
|
|
23916
|
+
processInstanceStatus: 'string',
|
|
23917
|
+
processInstanceStatusText: 'string',
|
|
23918
|
+
processName: 'string',
|
|
23919
|
+
serialNumber: 'string',
|
|
23920
|
+
title: 'string',
|
|
23921
|
+
version: 'number',
|
|
22444
23922
|
};
|
|
22445
23923
|
}
|
|
22446
23924
|
}
|
|
22447
|
-
exports.
|
|
23925
|
+
exports.GetTaskCopiesResponseBodyData = GetTaskCopiesResponseBodyData;
|
|
22448
23926
|
class GetTemplateListByUserIdHeadersAccountContext extends $tea.Model {
|
|
22449
23927
|
constructor(map) {
|
|
22450
23928
|
super(map);
|
|
@@ -22975,6 +24453,56 @@ class InviteUsersRequestTenantContext extends $tea.Model {
|
|
|
22975
24453
|
}
|
|
22976
24454
|
}
|
|
22977
24455
|
exports.InviteUsersRequestTenantContext = InviteUsersRequestTenantContext;
|
|
24456
|
+
class ListApplicationHeadersAccountContext extends $tea.Model {
|
|
24457
|
+
constructor(map) {
|
|
24458
|
+
super(map);
|
|
24459
|
+
}
|
|
24460
|
+
static names() {
|
|
24461
|
+
return {
|
|
24462
|
+
accountId: 'accountId',
|
|
24463
|
+
};
|
|
24464
|
+
}
|
|
24465
|
+
static types() {
|
|
24466
|
+
return {
|
|
24467
|
+
accountId: 'string',
|
|
24468
|
+
};
|
|
24469
|
+
}
|
|
24470
|
+
}
|
|
24471
|
+
exports.ListApplicationHeadersAccountContext = ListApplicationHeadersAccountContext;
|
|
24472
|
+
class ListApplicationResponseBodyData extends $tea.Model {
|
|
24473
|
+
constructor(map) {
|
|
24474
|
+
super(map);
|
|
24475
|
+
}
|
|
24476
|
+
static names() {
|
|
24477
|
+
return {
|
|
24478
|
+
appConfig: 'AppConfig',
|
|
24479
|
+
appType: 'AppType',
|
|
24480
|
+
applicationStatus: 'ApplicationStatus',
|
|
24481
|
+
corpId: 'CorpId',
|
|
24482
|
+
creatorUserId: 'CreatorUserId',
|
|
24483
|
+
description: 'Description',
|
|
24484
|
+
icon: 'Icon',
|
|
24485
|
+
inexistence: 'Inexistence',
|
|
24486
|
+
name: 'Name',
|
|
24487
|
+
subCorpId: 'SubCorpId',
|
|
24488
|
+
};
|
|
24489
|
+
}
|
|
24490
|
+
static types() {
|
|
24491
|
+
return {
|
|
24492
|
+
appConfig: 'string',
|
|
24493
|
+
appType: 'string',
|
|
24494
|
+
applicationStatus: 'string',
|
|
24495
|
+
corpId: 'string',
|
|
24496
|
+
creatorUserId: 'string',
|
|
24497
|
+
description: 'string',
|
|
24498
|
+
icon: 'string',
|
|
24499
|
+
inexistence: 'string',
|
|
24500
|
+
name: 'string',
|
|
24501
|
+
subCorpId: 'string',
|
|
24502
|
+
};
|
|
24503
|
+
}
|
|
24504
|
+
}
|
|
24505
|
+
exports.ListApplicationResponseBodyData = ListApplicationResponseBodyData;
|
|
22978
24506
|
class ListCalendarsHeadersAccountContext extends $tea.Model {
|
|
22979
24507
|
constructor(map) {
|
|
22980
24508
|
super(map);
|
|
@@ -24043,6 +25571,90 @@ class ListTableDataByFormInstanceIdTableIdHeadersAccountContext extends $tea.Mod
|
|
|
24043
25571
|
}
|
|
24044
25572
|
}
|
|
24045
25573
|
exports.ListTableDataByFormInstanceIdTableIdHeadersAccountContext = ListTableDataByFormInstanceIdTableIdHeadersAccountContext;
|
|
25574
|
+
class ListTeamsHeadersAccountContext extends $tea.Model {
|
|
25575
|
+
constructor(map) {
|
|
25576
|
+
super(map);
|
|
25577
|
+
}
|
|
25578
|
+
static names() {
|
|
25579
|
+
return {
|
|
25580
|
+
accountId: 'accountId',
|
|
25581
|
+
};
|
|
25582
|
+
}
|
|
25583
|
+
static types() {
|
|
25584
|
+
return {
|
|
25585
|
+
accountId: 'string',
|
|
25586
|
+
};
|
|
25587
|
+
}
|
|
25588
|
+
}
|
|
25589
|
+
exports.ListTeamsHeadersAccountContext = ListTeamsHeadersAccountContext;
|
|
25590
|
+
class ListTeamsRequestTenantContext extends $tea.Model {
|
|
25591
|
+
constructor(map) {
|
|
25592
|
+
super(map);
|
|
25593
|
+
}
|
|
25594
|
+
static names() {
|
|
25595
|
+
return {
|
|
25596
|
+
tenantId: 'tenantId',
|
|
25597
|
+
};
|
|
25598
|
+
}
|
|
25599
|
+
static types() {
|
|
25600
|
+
return {
|
|
25601
|
+
tenantId: 'string',
|
|
25602
|
+
};
|
|
25603
|
+
}
|
|
25604
|
+
}
|
|
25605
|
+
exports.ListTeamsRequestTenantContext = ListTeamsRequestTenantContext;
|
|
25606
|
+
class ListTeamsResponseBodyTeamsIcon extends $tea.Model {
|
|
25607
|
+
constructor(map) {
|
|
25608
|
+
super(map);
|
|
25609
|
+
}
|
|
25610
|
+
static names() {
|
|
25611
|
+
return {
|
|
25612
|
+
type: 'Type',
|
|
25613
|
+
value: 'Value',
|
|
25614
|
+
};
|
|
25615
|
+
}
|
|
25616
|
+
static types() {
|
|
25617
|
+
return {
|
|
25618
|
+
type: 'string',
|
|
25619
|
+
value: 'string',
|
|
25620
|
+
};
|
|
25621
|
+
}
|
|
25622
|
+
}
|
|
25623
|
+
exports.ListTeamsResponseBodyTeamsIcon = ListTeamsResponseBodyTeamsIcon;
|
|
25624
|
+
class ListTeamsResponseBodyTeams extends $tea.Model {
|
|
25625
|
+
constructor(map) {
|
|
25626
|
+
super(map);
|
|
25627
|
+
}
|
|
25628
|
+
static names() {
|
|
25629
|
+
return {
|
|
25630
|
+
corpId: 'CorpId',
|
|
25631
|
+
cover: 'Cover',
|
|
25632
|
+
createTime: 'CreateTime',
|
|
25633
|
+
creatorId: 'CreatorId',
|
|
25634
|
+
description: 'Description',
|
|
25635
|
+
icon: 'Icon',
|
|
25636
|
+
modifiedTime: 'ModifiedTime',
|
|
25637
|
+
modifierId: 'ModifierId',
|
|
25638
|
+
name: 'Name',
|
|
25639
|
+
teamId: 'TeamId',
|
|
25640
|
+
};
|
|
25641
|
+
}
|
|
25642
|
+
static types() {
|
|
25643
|
+
return {
|
|
25644
|
+
corpId: 'string',
|
|
25645
|
+
cover: 'string',
|
|
25646
|
+
createTime: 'string',
|
|
25647
|
+
creatorId: 'string',
|
|
25648
|
+
description: 'string',
|
|
25649
|
+
icon: ListTeamsResponseBodyTeamsIcon,
|
|
25650
|
+
modifiedTime: 'string',
|
|
25651
|
+
modifierId: 'string',
|
|
25652
|
+
name: 'string',
|
|
25653
|
+
teamId: 'string',
|
|
25654
|
+
};
|
|
25655
|
+
}
|
|
25656
|
+
}
|
|
25657
|
+
exports.ListTeamsResponseBodyTeams = ListTeamsResponseBodyTeams;
|
|
24046
25658
|
class ListWorkspacesHeadersAccountContext extends $tea.Model {
|
|
24047
25659
|
constructor(map) {
|
|
24048
25660
|
super(map);
|
|
@@ -26073,6 +27685,22 @@ class ReceiverListReportRequestTenantContext extends $tea.Model {
|
|
|
26073
27685
|
}
|
|
26074
27686
|
}
|
|
26075
27687
|
exports.ReceiverListReportRequestTenantContext = ReceiverListReportRequestTenantContext;
|
|
27688
|
+
class RedirectTaskHeadersAccountContext extends $tea.Model {
|
|
27689
|
+
constructor(map) {
|
|
27690
|
+
super(map);
|
|
27691
|
+
}
|
|
27692
|
+
static names() {
|
|
27693
|
+
return {
|
|
27694
|
+
accountId: 'accountId',
|
|
27695
|
+
};
|
|
27696
|
+
}
|
|
27697
|
+
static types() {
|
|
27698
|
+
return {
|
|
27699
|
+
accountId: 'string',
|
|
27700
|
+
};
|
|
27701
|
+
}
|
|
27702
|
+
}
|
|
27703
|
+
exports.RedirectTaskHeadersAccountContext = RedirectTaskHeadersAccountContext;
|
|
26076
27704
|
class RemoveAttendeeHeadersAccountContext extends $tea.Model {
|
|
26077
27705
|
constructor(map) {
|
|
26078
27706
|
super(map);
|
|
@@ -26209,6 +27837,22 @@ class SaveFormDataHeadersAccountContext extends $tea.Model {
|
|
|
26209
27837
|
}
|
|
26210
27838
|
}
|
|
26211
27839
|
exports.SaveFormDataHeadersAccountContext = SaveFormDataHeadersAccountContext;
|
|
27840
|
+
class SaveFormRemarkHeadersAccountContext extends $tea.Model {
|
|
27841
|
+
constructor(map) {
|
|
27842
|
+
super(map);
|
|
27843
|
+
}
|
|
27844
|
+
static names() {
|
|
27845
|
+
return {
|
|
27846
|
+
accountId: 'accountId',
|
|
27847
|
+
};
|
|
27848
|
+
}
|
|
27849
|
+
static types() {
|
|
27850
|
+
return {
|
|
27851
|
+
accountId: 'string',
|
|
27852
|
+
};
|
|
27853
|
+
}
|
|
27854
|
+
}
|
|
27855
|
+
exports.SaveFormRemarkHeadersAccountContext = SaveFormRemarkHeadersAccountContext;
|
|
26212
27856
|
class SearchEmployeeFieldValuesHeadersAccountContext extends $tea.Model {
|
|
26213
27857
|
constructor(map) {
|
|
26214
27858
|
super(map);
|
|
@@ -30251,21 +31895,73 @@ class Client extends openapi_client_1.default {
|
|
|
30251
31895
|
if (!tea_util_1.default.isUnset(tmpHeader.accountContext)) {
|
|
30252
31896
|
headers.accountContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
30253
31897
|
}
|
|
30254
|
-
if (!tea_util_1.default.isUnset(tmpReq.members)) {
|
|
30255
|
-
request.membersShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.members, "Members", "json");
|
|
31898
|
+
if (!tea_util_1.default.isUnset(tmpReq.members)) {
|
|
31899
|
+
request.membersShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.members, "Members", "json");
|
|
31900
|
+
}
|
|
31901
|
+
if (!tea_util_1.default.isUnset(tmpReq.tenantContext)) {
|
|
31902
|
+
request.tenantContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
31903
|
+
}
|
|
31904
|
+
let body = {};
|
|
31905
|
+
if (!tea_util_1.default.isUnset(request.membersShrink)) {
|
|
31906
|
+
body["Members"] = request.membersShrink;
|
|
31907
|
+
}
|
|
31908
|
+
if (!tea_util_1.default.isUnset(request.tenantContextShrink)) {
|
|
31909
|
+
body["TenantContext"] = request.tenantContextShrink;
|
|
31910
|
+
}
|
|
31911
|
+
if (!tea_util_1.default.isUnset(request.workspaceId)) {
|
|
31912
|
+
body["WorkspaceId"] = request.workspaceId;
|
|
31913
|
+
}
|
|
31914
|
+
let realHeaders = {};
|
|
31915
|
+
if (!tea_util_1.default.isUnset(headers.commonHeaders)) {
|
|
31916
|
+
realHeaders = headers.commonHeaders;
|
|
31917
|
+
}
|
|
31918
|
+
if (!tea_util_1.default.isUnset(headers.accountContextShrink)) {
|
|
31919
|
+
realHeaders["AccountContext"] = tea_util_1.default.toJSONString(headers.accountContextShrink);
|
|
31920
|
+
}
|
|
31921
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
31922
|
+
headers: realHeaders,
|
|
31923
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
31924
|
+
});
|
|
31925
|
+
let params = new $OpenApi.Params({
|
|
31926
|
+
action: "DeleteWorkspaceMembers",
|
|
31927
|
+
version: "2023-04-26",
|
|
31928
|
+
protocol: "HTTPS",
|
|
31929
|
+
pathname: `/dingtalk/v1/documents/deleteWorkspaceMembers`,
|
|
31930
|
+
method: "POST",
|
|
31931
|
+
authType: "AK",
|
|
31932
|
+
style: "ROA",
|
|
31933
|
+
reqBodyType: "formData",
|
|
31934
|
+
bodyType: "json",
|
|
31935
|
+
});
|
|
31936
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DeleteWorkspaceMembersResponse({}));
|
|
31937
|
+
}
|
|
31938
|
+
async deleteWorkspaceMembers(request) {
|
|
31939
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
31940
|
+
let headers = new DeleteWorkspaceMembersHeaders({});
|
|
31941
|
+
return await this.deleteWorkspaceMembersWithOptions(request, headers, runtime);
|
|
31942
|
+
}
|
|
31943
|
+
async executeBatchTaskWithOptions(request, tmpHeader, runtime) {
|
|
31944
|
+
tea_util_1.default.validateModel(request);
|
|
31945
|
+
let headers = new ExecuteBatchTaskShrinkHeaders({});
|
|
31946
|
+
openapi_util_1.default.convert(tmpHeader, headers);
|
|
31947
|
+
if (!tea_util_1.default.isUnset(tmpHeader.accountContext)) {
|
|
31948
|
+
headers.accountContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
31949
|
+
}
|
|
31950
|
+
let body = {};
|
|
31951
|
+
if (!tea_util_1.default.isUnset(request.appType)) {
|
|
31952
|
+
body["AppType"] = request.appType;
|
|
30256
31953
|
}
|
|
30257
|
-
if (!tea_util_1.default.isUnset(
|
|
30258
|
-
|
|
31954
|
+
if (!tea_util_1.default.isUnset(request.outResult)) {
|
|
31955
|
+
body["OutResult"] = request.outResult;
|
|
30259
31956
|
}
|
|
30260
|
-
|
|
30261
|
-
|
|
30262
|
-
body["Members"] = request.membersShrink;
|
|
31957
|
+
if (!tea_util_1.default.isUnset(request.remark)) {
|
|
31958
|
+
body["Remark"] = request.remark;
|
|
30263
31959
|
}
|
|
30264
|
-
if (!tea_util_1.default.isUnset(request.
|
|
30265
|
-
body["
|
|
31960
|
+
if (!tea_util_1.default.isUnset(request.systemToken)) {
|
|
31961
|
+
body["SystemToken"] = request.systemToken;
|
|
30266
31962
|
}
|
|
30267
|
-
if (!tea_util_1.default.isUnset(request.
|
|
30268
|
-
body["
|
|
31963
|
+
if (!tea_util_1.default.isUnset(request.taskInformationList)) {
|
|
31964
|
+
body["TaskInformationList"] = request.taskInformationList;
|
|
30269
31965
|
}
|
|
30270
31966
|
let realHeaders = {};
|
|
30271
31967
|
if (!tea_util_1.default.isUnset(headers.commonHeaders)) {
|
|
@@ -30279,22 +31975,22 @@ class Client extends openapi_client_1.default {
|
|
|
30279
31975
|
body: openapi_util_1.default.parseToMap(body),
|
|
30280
31976
|
});
|
|
30281
31977
|
let params = new $OpenApi.Params({
|
|
30282
|
-
action: "
|
|
31978
|
+
action: "ExecuteBatchTask",
|
|
30283
31979
|
version: "2023-04-26",
|
|
30284
31980
|
protocol: "HTTPS",
|
|
30285
|
-
pathname: `/dingtalk/v1/
|
|
31981
|
+
pathname: `/dingtalk/v1/yida/executeBatchTask`,
|
|
30286
31982
|
method: "POST",
|
|
30287
31983
|
authType: "AK",
|
|
30288
31984
|
style: "ROA",
|
|
30289
31985
|
reqBodyType: "formData",
|
|
30290
31986
|
bodyType: "json",
|
|
30291
31987
|
});
|
|
30292
|
-
return $tea.cast(await this.callApi(params, req, runtime), new
|
|
31988
|
+
return $tea.cast(await this.callApi(params, req, runtime), new ExecuteBatchTaskResponse({}));
|
|
30293
31989
|
}
|
|
30294
|
-
async
|
|
31990
|
+
async executeBatchTask(request) {
|
|
30295
31991
|
let runtime = new $Util.RuntimeOptions({});
|
|
30296
|
-
let headers = new
|
|
30297
|
-
return await this.
|
|
31992
|
+
let headers = new ExecuteBatchTaskHeaders({});
|
|
31993
|
+
return await this.executeBatchTaskWithOptions(request, headers, runtime);
|
|
30298
31994
|
}
|
|
30299
31995
|
async executePlatformTaskWithOptions(request, tmpHeader, runtime) {
|
|
30300
31996
|
tea_util_1.default.validateModel(request);
|
|
@@ -30521,6 +32217,140 @@ class Client extends openapi_client_1.default {
|
|
|
30521
32217
|
let headers = new GetAllSheetsHeaders({});
|
|
30522
32218
|
return await this.getAllSheetsWithOptions(request, headers, runtime);
|
|
30523
32219
|
}
|
|
32220
|
+
async getCorpAccomplishmentTasksWithOptions(request, tmpHeader, runtime) {
|
|
32221
|
+
tea_util_1.default.validateModel(request);
|
|
32222
|
+
let headers = new GetCorpAccomplishmentTasksShrinkHeaders({});
|
|
32223
|
+
openapi_util_1.default.convert(tmpHeader, headers);
|
|
32224
|
+
if (!tea_util_1.default.isUnset(tmpHeader.accountContext)) {
|
|
32225
|
+
headers.accountContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
32226
|
+
}
|
|
32227
|
+
let body = {};
|
|
32228
|
+
if (!tea_util_1.default.isUnset(request.appTypes)) {
|
|
32229
|
+
body["AppTypes"] = request.appTypes;
|
|
32230
|
+
}
|
|
32231
|
+
if (!tea_util_1.default.isUnset(request.corpId)) {
|
|
32232
|
+
body["CorpId"] = request.corpId;
|
|
32233
|
+
}
|
|
32234
|
+
if (!tea_util_1.default.isUnset(request.createFromTimeGMT)) {
|
|
32235
|
+
body["CreateFromTimeGMT"] = request.createFromTimeGMT;
|
|
32236
|
+
}
|
|
32237
|
+
if (!tea_util_1.default.isUnset(request.createToTimeGMT)) {
|
|
32238
|
+
body["CreateToTimeGMT"] = request.createToTimeGMT;
|
|
32239
|
+
}
|
|
32240
|
+
if (!tea_util_1.default.isUnset(request.keyword)) {
|
|
32241
|
+
body["Keyword"] = request.keyword;
|
|
32242
|
+
}
|
|
32243
|
+
if (!tea_util_1.default.isUnset(request.language)) {
|
|
32244
|
+
body["Language"] = request.language;
|
|
32245
|
+
}
|
|
32246
|
+
if (!tea_util_1.default.isUnset(request.pageNumber)) {
|
|
32247
|
+
body["PageNumber"] = request.pageNumber;
|
|
32248
|
+
}
|
|
32249
|
+
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
32250
|
+
body["PageSize"] = request.pageSize;
|
|
32251
|
+
}
|
|
32252
|
+
if (!tea_util_1.default.isUnset(request.processCodes)) {
|
|
32253
|
+
body["ProcessCodes"] = request.processCodes;
|
|
32254
|
+
}
|
|
32255
|
+
if (!tea_util_1.default.isUnset(request.token)) {
|
|
32256
|
+
body["Token"] = request.token;
|
|
32257
|
+
}
|
|
32258
|
+
let realHeaders = {};
|
|
32259
|
+
if (!tea_util_1.default.isUnset(headers.commonHeaders)) {
|
|
32260
|
+
realHeaders = headers.commonHeaders;
|
|
32261
|
+
}
|
|
32262
|
+
if (!tea_util_1.default.isUnset(headers.accountContextShrink)) {
|
|
32263
|
+
realHeaders["AccountContext"] = tea_util_1.default.toJSONString(headers.accountContextShrink);
|
|
32264
|
+
}
|
|
32265
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
32266
|
+
headers: realHeaders,
|
|
32267
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
32268
|
+
});
|
|
32269
|
+
let params = new $OpenApi.Params({
|
|
32270
|
+
action: "GetCorpAccomplishmentTasks",
|
|
32271
|
+
version: "2023-04-26",
|
|
32272
|
+
protocol: "HTTPS",
|
|
32273
|
+
pathname: `/dingtalk/v1/yida/getCorpAccomplishmentTasks`,
|
|
32274
|
+
method: "POST",
|
|
32275
|
+
authType: "AK",
|
|
32276
|
+
style: "ROA",
|
|
32277
|
+
reqBodyType: "formData",
|
|
32278
|
+
bodyType: "json",
|
|
32279
|
+
});
|
|
32280
|
+
return $tea.cast(await this.callApi(params, req, runtime), new GetCorpAccomplishmentTasksResponse({}));
|
|
32281
|
+
}
|
|
32282
|
+
async getCorpAccomplishmentTasks(request) {
|
|
32283
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
32284
|
+
let headers = new GetCorpAccomplishmentTasksHeaders({});
|
|
32285
|
+
return await this.getCorpAccomplishmentTasksWithOptions(request, headers, runtime);
|
|
32286
|
+
}
|
|
32287
|
+
async getCorpTasksWithOptions(request, tmpHeader, runtime) {
|
|
32288
|
+
tea_util_1.default.validateModel(request);
|
|
32289
|
+
let headers = new GetCorpTasksShrinkHeaders({});
|
|
32290
|
+
openapi_util_1.default.convert(tmpHeader, headers);
|
|
32291
|
+
if (!tea_util_1.default.isUnset(tmpHeader.accountContext)) {
|
|
32292
|
+
headers.accountContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
32293
|
+
}
|
|
32294
|
+
let body = {};
|
|
32295
|
+
if (!tea_util_1.default.isUnset(request.appTypes)) {
|
|
32296
|
+
body["AppTypes"] = request.appTypes;
|
|
32297
|
+
}
|
|
32298
|
+
if (!tea_util_1.default.isUnset(request.corpId)) {
|
|
32299
|
+
body["CorpId"] = request.corpId;
|
|
32300
|
+
}
|
|
32301
|
+
if (!tea_util_1.default.isUnset(request.createFromTimeGMT)) {
|
|
32302
|
+
body["CreateFromTimeGMT"] = request.createFromTimeGMT;
|
|
32303
|
+
}
|
|
32304
|
+
if (!tea_util_1.default.isUnset(request.createToTimeGMT)) {
|
|
32305
|
+
body["CreateToTimeGMT"] = request.createToTimeGMT;
|
|
32306
|
+
}
|
|
32307
|
+
if (!tea_util_1.default.isUnset(request.keyword)) {
|
|
32308
|
+
body["Keyword"] = request.keyword;
|
|
32309
|
+
}
|
|
32310
|
+
if (!tea_util_1.default.isUnset(request.language)) {
|
|
32311
|
+
body["Language"] = request.language;
|
|
32312
|
+
}
|
|
32313
|
+
if (!tea_util_1.default.isUnset(request.pageNumber)) {
|
|
32314
|
+
body["PageNumber"] = request.pageNumber;
|
|
32315
|
+
}
|
|
32316
|
+
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
32317
|
+
body["PageSize"] = request.pageSize;
|
|
32318
|
+
}
|
|
32319
|
+
if (!tea_util_1.default.isUnset(request.processCodes)) {
|
|
32320
|
+
body["ProcessCodes"] = request.processCodes;
|
|
32321
|
+
}
|
|
32322
|
+
if (!tea_util_1.default.isUnset(request.token)) {
|
|
32323
|
+
body["Token"] = request.token;
|
|
32324
|
+
}
|
|
32325
|
+
let realHeaders = {};
|
|
32326
|
+
if (!tea_util_1.default.isUnset(headers.commonHeaders)) {
|
|
32327
|
+
realHeaders = headers.commonHeaders;
|
|
32328
|
+
}
|
|
32329
|
+
if (!tea_util_1.default.isUnset(headers.accountContextShrink)) {
|
|
32330
|
+
realHeaders["AccountContext"] = tea_util_1.default.toJSONString(headers.accountContextShrink);
|
|
32331
|
+
}
|
|
32332
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
32333
|
+
headers: realHeaders,
|
|
32334
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
32335
|
+
});
|
|
32336
|
+
let params = new $OpenApi.Params({
|
|
32337
|
+
action: "GetCorpTasks",
|
|
32338
|
+
version: "2023-04-26",
|
|
32339
|
+
protocol: "HTTPS",
|
|
32340
|
+
pathname: `/dingtalk/v1/yida/getCorpTasks`,
|
|
32341
|
+
method: "POST",
|
|
32342
|
+
authType: "AK",
|
|
32343
|
+
style: "ROA",
|
|
32344
|
+
reqBodyType: "formData",
|
|
32345
|
+
bodyType: "json",
|
|
32346
|
+
});
|
|
32347
|
+
return $tea.cast(await this.callApi(params, req, runtime), new GetCorpTasksResponse({}));
|
|
32348
|
+
}
|
|
32349
|
+
async getCorpTasks(request) {
|
|
32350
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
32351
|
+
let headers = new GetCorpTasksHeaders({});
|
|
32352
|
+
return await this.getCorpTasksWithOptions(request, headers, runtime);
|
|
32353
|
+
}
|
|
30524
32354
|
async getEventWithOptions(request, tmpHeader, runtime) {
|
|
30525
32355
|
tea_util_1.default.validateModel(request);
|
|
30526
32356
|
let headers = new GetEventShrinkHeaders({});
|
|
@@ -31364,6 +33194,79 @@ class Client extends openapi_client_1.default {
|
|
|
31364
33194
|
let headers = new GetNodesHeaders({});
|
|
31365
33195
|
return await this.getNodesWithOptions(request, headers, runtime);
|
|
31366
33196
|
}
|
|
33197
|
+
async getNotifyMeWithOptions(request, tmpHeader, runtime) {
|
|
33198
|
+
tea_util_1.default.validateModel(request);
|
|
33199
|
+
let headers = new GetNotifyMeShrinkHeaders({});
|
|
33200
|
+
openapi_util_1.default.convert(tmpHeader, headers);
|
|
33201
|
+
if (!tea_util_1.default.isUnset(tmpHeader.accountContext)) {
|
|
33202
|
+
headers.accountContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
33203
|
+
}
|
|
33204
|
+
let body = {};
|
|
33205
|
+
if (!tea_util_1.default.isUnset(request.appTypes)) {
|
|
33206
|
+
body["AppTypes"] = request.appTypes;
|
|
33207
|
+
}
|
|
33208
|
+
if (!tea_util_1.default.isUnset(request.corpId)) {
|
|
33209
|
+
body["CorpId"] = request.corpId;
|
|
33210
|
+
}
|
|
33211
|
+
if (!tea_util_1.default.isUnset(request.createFromTimeGMT)) {
|
|
33212
|
+
body["CreateFromTimeGMT"] = request.createFromTimeGMT;
|
|
33213
|
+
}
|
|
33214
|
+
if (!tea_util_1.default.isUnset(request.createToTimeGMT)) {
|
|
33215
|
+
body["CreateToTimeGMT"] = request.createToTimeGMT;
|
|
33216
|
+
}
|
|
33217
|
+
if (!tea_util_1.default.isUnset(request.instanceCreateFromTimeGMT)) {
|
|
33218
|
+
body["InstanceCreateFromTimeGMT"] = request.instanceCreateFromTimeGMT;
|
|
33219
|
+
}
|
|
33220
|
+
if (!tea_util_1.default.isUnset(request.instanceCreateToTimeGMT)) {
|
|
33221
|
+
body["InstanceCreateToTimeGMT"] = request.instanceCreateToTimeGMT;
|
|
33222
|
+
}
|
|
33223
|
+
if (!tea_util_1.default.isUnset(request.keyword)) {
|
|
33224
|
+
body["Keyword"] = request.keyword;
|
|
33225
|
+
}
|
|
33226
|
+
if (!tea_util_1.default.isUnset(request.language)) {
|
|
33227
|
+
body["Language"] = request.language;
|
|
33228
|
+
}
|
|
33229
|
+
if (!tea_util_1.default.isUnset(request.pageNumber)) {
|
|
33230
|
+
body["PageNumber"] = request.pageNumber;
|
|
33231
|
+
}
|
|
33232
|
+
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
33233
|
+
body["PageSize"] = request.pageSize;
|
|
33234
|
+
}
|
|
33235
|
+
if (!tea_util_1.default.isUnset(request.processCodes)) {
|
|
33236
|
+
body["ProcessCodes"] = request.processCodes;
|
|
33237
|
+
}
|
|
33238
|
+
if (!tea_util_1.default.isUnset(request.token)) {
|
|
33239
|
+
body["Token"] = request.token;
|
|
33240
|
+
}
|
|
33241
|
+
let realHeaders = {};
|
|
33242
|
+
if (!tea_util_1.default.isUnset(headers.commonHeaders)) {
|
|
33243
|
+
realHeaders = headers.commonHeaders;
|
|
33244
|
+
}
|
|
33245
|
+
if (!tea_util_1.default.isUnset(headers.accountContextShrink)) {
|
|
33246
|
+
realHeaders["AccountContext"] = tea_util_1.default.toJSONString(headers.accountContextShrink);
|
|
33247
|
+
}
|
|
33248
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
33249
|
+
headers: realHeaders,
|
|
33250
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
33251
|
+
});
|
|
33252
|
+
let params = new $OpenApi.Params({
|
|
33253
|
+
action: "GetNotifyMe",
|
|
33254
|
+
version: "2023-04-26",
|
|
33255
|
+
protocol: "HTTPS",
|
|
33256
|
+
pathname: `/dingtalk/v1/yida/getNotifyMe`,
|
|
33257
|
+
method: "POST",
|
|
33258
|
+
authType: "AK",
|
|
33259
|
+
style: "ROA",
|
|
33260
|
+
reqBodyType: "formData",
|
|
33261
|
+
bodyType: "json",
|
|
33262
|
+
});
|
|
33263
|
+
return $tea.cast(await this.callApi(params, req, runtime), new GetNotifyMeResponse({}));
|
|
33264
|
+
}
|
|
33265
|
+
async getNotifyMe(request) {
|
|
33266
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
33267
|
+
let headers = new GetNotifyMeHeaders({});
|
|
33268
|
+
return await this.getNotifyMeWithOptions(request, headers, runtime);
|
|
33269
|
+
}
|
|
31367
33270
|
async getOpenUrlWithOptions(request, tmpHeader, runtime) {
|
|
31368
33271
|
tea_util_1.default.validateModel(request);
|
|
31369
33272
|
let headers = new GetOpenUrlShrinkHeaders({});
|
|
@@ -31646,15 +33549,67 @@ class Client extends openapi_client_1.default {
|
|
|
31646
33549
|
if (!tea_util_1.default.isUnset(tmpReq.request)) {
|
|
31647
33550
|
request.requestShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.request, "Request", "json");
|
|
31648
33551
|
}
|
|
31649
|
-
if (!tea_util_1.default.isUnset(tmpReq.tenantContext)) {
|
|
31650
|
-
request.tenantContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
33552
|
+
if (!tea_util_1.default.isUnset(tmpReq.tenantContext)) {
|
|
33553
|
+
request.tenantContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
33554
|
+
}
|
|
33555
|
+
let body = {};
|
|
33556
|
+
if (!tea_util_1.default.isUnset(request.requestShrink)) {
|
|
33557
|
+
body["Request"] = request.requestShrink;
|
|
33558
|
+
}
|
|
33559
|
+
if (!tea_util_1.default.isUnset(request.tenantContextShrink)) {
|
|
33560
|
+
body["TenantContext"] = request.tenantContextShrink;
|
|
33561
|
+
}
|
|
33562
|
+
let realHeaders = {};
|
|
33563
|
+
if (!tea_util_1.default.isUnset(headers.commonHeaders)) {
|
|
33564
|
+
realHeaders = headers.commonHeaders;
|
|
33565
|
+
}
|
|
33566
|
+
if (!tea_util_1.default.isUnset(headers.accountContextShrink)) {
|
|
33567
|
+
realHeaders["AccountContext"] = tea_util_1.default.toJSONString(headers.accountContextShrink);
|
|
33568
|
+
}
|
|
33569
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
33570
|
+
headers: realHeaders,
|
|
33571
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
33572
|
+
});
|
|
33573
|
+
let params = new $OpenApi.Params({
|
|
33574
|
+
action: "GetReportUnReadCount",
|
|
33575
|
+
version: "2023-04-26",
|
|
33576
|
+
protocol: "HTTPS",
|
|
33577
|
+
pathname: `/dingtalk/v1/log/getReportUnReadCount`,
|
|
33578
|
+
method: "POST",
|
|
33579
|
+
authType: "AK",
|
|
33580
|
+
style: "ROA",
|
|
33581
|
+
reqBodyType: "formData",
|
|
33582
|
+
bodyType: "json",
|
|
33583
|
+
});
|
|
33584
|
+
return $tea.cast(await this.callApi(params, req, runtime), new GetReportUnReadCountResponse({}));
|
|
33585
|
+
}
|
|
33586
|
+
async getReportUnReadCount(request) {
|
|
33587
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
33588
|
+
let headers = new GetReportUnReadCountHeaders({});
|
|
33589
|
+
return await this.getReportUnReadCountWithOptions(request, headers, runtime);
|
|
33590
|
+
}
|
|
33591
|
+
async getRunningTasksWithOptions(request, tmpHeader, runtime) {
|
|
33592
|
+
tea_util_1.default.validateModel(request);
|
|
33593
|
+
let headers = new GetRunningTasksShrinkHeaders({});
|
|
33594
|
+
openapi_util_1.default.convert(tmpHeader, headers);
|
|
33595
|
+
if (!tea_util_1.default.isUnset(tmpHeader.accountContext)) {
|
|
33596
|
+
headers.accountContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
33597
|
+
}
|
|
33598
|
+
let body = {};
|
|
33599
|
+
if (!tea_util_1.default.isUnset(request.appType)) {
|
|
33600
|
+
body["AppType"] = request.appType;
|
|
33601
|
+
}
|
|
33602
|
+
if (!tea_util_1.default.isUnset(request.language)) {
|
|
33603
|
+
body["Language"] = request.language;
|
|
31651
33604
|
}
|
|
31652
|
-
|
|
31653
|
-
|
|
31654
|
-
body["Request"] = request.requestShrink;
|
|
33605
|
+
if (!tea_util_1.default.isUnset(request.processCodes)) {
|
|
33606
|
+
body["ProcessCodes"] = request.processCodes;
|
|
31655
33607
|
}
|
|
31656
|
-
if (!tea_util_1.default.isUnset(request.
|
|
31657
|
-
body["
|
|
33608
|
+
if (!tea_util_1.default.isUnset(request.processInstanceId)) {
|
|
33609
|
+
body["ProcessInstanceId"] = request.processInstanceId;
|
|
33610
|
+
}
|
|
33611
|
+
if (!tea_util_1.default.isUnset(request.systemToken)) {
|
|
33612
|
+
body["SystemToken"] = request.systemToken;
|
|
31658
33613
|
}
|
|
31659
33614
|
let realHeaders = {};
|
|
31660
33615
|
if (!tea_util_1.default.isUnset(headers.commonHeaders)) {
|
|
@@ -31668,22 +33623,22 @@ class Client extends openapi_client_1.default {
|
|
|
31668
33623
|
body: openapi_util_1.default.parseToMap(body),
|
|
31669
33624
|
});
|
|
31670
33625
|
let params = new $OpenApi.Params({
|
|
31671
|
-
action: "
|
|
33626
|
+
action: "GetRunningTasks",
|
|
31672
33627
|
version: "2023-04-26",
|
|
31673
33628
|
protocol: "HTTPS",
|
|
31674
|
-
pathname: `/dingtalk/v1/
|
|
33629
|
+
pathname: `/dingtalk/v1/yida/getRunningTasks`,
|
|
31675
33630
|
method: "POST",
|
|
31676
33631
|
authType: "AK",
|
|
31677
33632
|
style: "ROA",
|
|
31678
33633
|
reqBodyType: "formData",
|
|
31679
33634
|
bodyType: "json",
|
|
31680
33635
|
});
|
|
31681
|
-
return $tea.cast(await this.callApi(params, req, runtime), new
|
|
33636
|
+
return $tea.cast(await this.callApi(params, req, runtime), new GetRunningTasksResponse({}));
|
|
31682
33637
|
}
|
|
31683
|
-
async
|
|
33638
|
+
async getRunningTasks(request) {
|
|
31684
33639
|
let runtime = new $Util.RuntimeOptions({});
|
|
31685
|
-
let headers = new
|
|
31686
|
-
return await this.
|
|
33640
|
+
let headers = new GetRunningTasksHeaders({});
|
|
33641
|
+
return await this.getRunningTasksWithOptions(request, headers, runtime);
|
|
31687
33642
|
}
|
|
31688
33643
|
async getSheetWithOptions(tmpReq, tmpHeader, runtime) {
|
|
31689
33644
|
tea_util_1.default.validateModel(tmpReq);
|
|
@@ -31833,6 +33788,70 @@ class Client extends openapi_client_1.default {
|
|
|
31833
33788
|
let headers = new GetSubscribedCalendarHeaders({});
|
|
31834
33789
|
return await this.getSubscribedCalendarWithOptions(request, headers, runtime);
|
|
31835
33790
|
}
|
|
33791
|
+
async getTaskCopiesWithOptions(request, tmpHeader, runtime) {
|
|
33792
|
+
tea_util_1.default.validateModel(request);
|
|
33793
|
+
let headers = new GetTaskCopiesShrinkHeaders({});
|
|
33794
|
+
openapi_util_1.default.convert(tmpHeader, headers);
|
|
33795
|
+
if (!tea_util_1.default.isUnset(tmpHeader.accountContext)) {
|
|
33796
|
+
headers.accountContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
33797
|
+
}
|
|
33798
|
+
let body = {};
|
|
33799
|
+
if (!tea_util_1.default.isUnset(request.appType)) {
|
|
33800
|
+
body["AppType"] = request.appType;
|
|
33801
|
+
}
|
|
33802
|
+
if (!tea_util_1.default.isUnset(request.createFromTimeGMT)) {
|
|
33803
|
+
body["CreateFromTimeGMT"] = request.createFromTimeGMT;
|
|
33804
|
+
}
|
|
33805
|
+
if (!tea_util_1.default.isUnset(request.createToTimeGMT)) {
|
|
33806
|
+
body["CreateToTimeGMT"] = request.createToTimeGMT;
|
|
33807
|
+
}
|
|
33808
|
+
if (!tea_util_1.default.isUnset(request.keyword)) {
|
|
33809
|
+
body["Keyword"] = request.keyword;
|
|
33810
|
+
}
|
|
33811
|
+
if (!tea_util_1.default.isUnset(request.language)) {
|
|
33812
|
+
body["Language"] = request.language;
|
|
33813
|
+
}
|
|
33814
|
+
if (!tea_util_1.default.isUnset(request.pageNumber)) {
|
|
33815
|
+
body["PageNumber"] = request.pageNumber;
|
|
33816
|
+
}
|
|
33817
|
+
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
33818
|
+
body["PageSize"] = request.pageSize;
|
|
33819
|
+
}
|
|
33820
|
+
if (!tea_util_1.default.isUnset(request.processCodes)) {
|
|
33821
|
+
body["ProcessCodes"] = request.processCodes;
|
|
33822
|
+
}
|
|
33823
|
+
if (!tea_util_1.default.isUnset(request.systemToken)) {
|
|
33824
|
+
body["SystemToken"] = request.systemToken;
|
|
33825
|
+
}
|
|
33826
|
+
let realHeaders = {};
|
|
33827
|
+
if (!tea_util_1.default.isUnset(headers.commonHeaders)) {
|
|
33828
|
+
realHeaders = headers.commonHeaders;
|
|
33829
|
+
}
|
|
33830
|
+
if (!tea_util_1.default.isUnset(headers.accountContextShrink)) {
|
|
33831
|
+
realHeaders["AccountContext"] = tea_util_1.default.toJSONString(headers.accountContextShrink);
|
|
33832
|
+
}
|
|
33833
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
33834
|
+
headers: realHeaders,
|
|
33835
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
33836
|
+
});
|
|
33837
|
+
let params = new $OpenApi.Params({
|
|
33838
|
+
action: "GetTaskCopies",
|
|
33839
|
+
version: "2023-04-26",
|
|
33840
|
+
protocol: "HTTPS",
|
|
33841
|
+
pathname: `/dingtalk/v1/yida/getTaskCopies`,
|
|
33842
|
+
method: "POST",
|
|
33843
|
+
authType: "AK",
|
|
33844
|
+
style: "ROA",
|
|
33845
|
+
reqBodyType: "formData",
|
|
33846
|
+
bodyType: "json",
|
|
33847
|
+
});
|
|
33848
|
+
return $tea.cast(await this.callApi(params, req, runtime), new GetTaskCopiesResponse({}));
|
|
33849
|
+
}
|
|
33850
|
+
async getTaskCopies(request) {
|
|
33851
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
33852
|
+
let headers = new GetTaskCopiesHeaders({});
|
|
33853
|
+
return await this.getTaskCopiesWithOptions(request, headers, runtime);
|
|
33854
|
+
}
|
|
31836
33855
|
async getTemplateListByUserIdWithOptions(tmpReq, tmpHeader, runtime) {
|
|
31837
33856
|
tea_util_1.default.validateModel(tmpReq);
|
|
31838
33857
|
let request = new GetTemplateListByUserIdShrinkRequest({});
|
|
@@ -32289,6 +34308,61 @@ class Client extends openapi_client_1.default {
|
|
|
32289
34308
|
let headers = new InviteUsersHeaders({});
|
|
32290
34309
|
return await this.inviteUsersWithOptions(request, headers, runtime);
|
|
32291
34310
|
}
|
|
34311
|
+
async listApplicationWithOptions(request, tmpHeader, runtime) {
|
|
34312
|
+
tea_util_1.default.validateModel(request);
|
|
34313
|
+
let headers = new ListApplicationShrinkHeaders({});
|
|
34314
|
+
openapi_util_1.default.convert(tmpHeader, headers);
|
|
34315
|
+
if (!tea_util_1.default.isUnset(tmpHeader.accountContext)) {
|
|
34316
|
+
headers.accountContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
34317
|
+
}
|
|
34318
|
+
let body = {};
|
|
34319
|
+
if (!tea_util_1.default.isUnset(request.appFilter)) {
|
|
34320
|
+
body["AppFilter"] = request.appFilter;
|
|
34321
|
+
}
|
|
34322
|
+
if (!tea_util_1.default.isUnset(request.appNameSearchKeyword)) {
|
|
34323
|
+
body["AppNameSearchKeyword"] = request.appNameSearchKeyword;
|
|
34324
|
+
}
|
|
34325
|
+
if (!tea_util_1.default.isUnset(request.corpId)) {
|
|
34326
|
+
body["CorpId"] = request.corpId;
|
|
34327
|
+
}
|
|
34328
|
+
if (!tea_util_1.default.isUnset(request.pageNumber)) {
|
|
34329
|
+
body["PageNumber"] = request.pageNumber;
|
|
34330
|
+
}
|
|
34331
|
+
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
34332
|
+
body["PageSize"] = request.pageSize;
|
|
34333
|
+
}
|
|
34334
|
+
if (!tea_util_1.default.isUnset(request.token)) {
|
|
34335
|
+
body["Token"] = request.token;
|
|
34336
|
+
}
|
|
34337
|
+
let realHeaders = {};
|
|
34338
|
+
if (!tea_util_1.default.isUnset(headers.commonHeaders)) {
|
|
34339
|
+
realHeaders = headers.commonHeaders;
|
|
34340
|
+
}
|
|
34341
|
+
if (!tea_util_1.default.isUnset(headers.accountContextShrink)) {
|
|
34342
|
+
realHeaders["AccountContext"] = tea_util_1.default.toJSONString(headers.accountContextShrink);
|
|
34343
|
+
}
|
|
34344
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
34345
|
+
headers: realHeaders,
|
|
34346
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
34347
|
+
});
|
|
34348
|
+
let params = new $OpenApi.Params({
|
|
34349
|
+
action: "ListApplication",
|
|
34350
|
+
version: "2023-04-26",
|
|
34351
|
+
protocol: "HTTPS",
|
|
34352
|
+
pathname: `/dingtalk/v1/yida/listApplication`,
|
|
34353
|
+
method: "POST",
|
|
34354
|
+
authType: "AK",
|
|
34355
|
+
style: "ROA",
|
|
34356
|
+
reqBodyType: "formData",
|
|
34357
|
+
bodyType: "json",
|
|
34358
|
+
});
|
|
34359
|
+
return $tea.cast(await this.callApi(params, req, runtime), new ListApplicationResponse({}));
|
|
34360
|
+
}
|
|
34361
|
+
async listApplication(request) {
|
|
34362
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
34363
|
+
let headers = new ListApplicationHeaders({});
|
|
34364
|
+
return await this.listApplicationWithOptions(request, headers, runtime);
|
|
34365
|
+
}
|
|
32292
34366
|
async listCalendarsWithOptions(tmpReq, tmpHeader, runtime) {
|
|
32293
34367
|
tea_util_1.default.validateModel(tmpReq);
|
|
32294
34368
|
let request = new ListCalendarsShrinkRequest({});
|
|
@@ -32737,6 +34811,57 @@ class Client extends openapi_client_1.default {
|
|
|
32737
34811
|
let headers = new ListTableDataByFormInstanceIdTableIdHeaders({});
|
|
32738
34812
|
return await this.listTableDataByFormInstanceIdTableIdWithOptions(request, headers, runtime);
|
|
32739
34813
|
}
|
|
34814
|
+
async listTeamsWithOptions(tmpReq, tmpHeader, runtime) {
|
|
34815
|
+
tea_util_1.default.validateModel(tmpReq);
|
|
34816
|
+
let request = new ListTeamsShrinkRequest({});
|
|
34817
|
+
openapi_util_1.default.convert(tmpReq, request);
|
|
34818
|
+
let headers = new ListTeamsShrinkHeaders({});
|
|
34819
|
+
openapi_util_1.default.convert(tmpHeader, headers);
|
|
34820
|
+
if (!tea_util_1.default.isUnset(tmpHeader.accountContext)) {
|
|
34821
|
+
headers.accountContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
34822
|
+
}
|
|
34823
|
+
if (!tea_util_1.default.isUnset(tmpReq.tenantContext)) {
|
|
34824
|
+
request.tenantContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
34825
|
+
}
|
|
34826
|
+
let body = {};
|
|
34827
|
+
if (!tea_util_1.default.isUnset(request.maxResults)) {
|
|
34828
|
+
body["MaxResults"] = request.maxResults;
|
|
34829
|
+
}
|
|
34830
|
+
if (!tea_util_1.default.isUnset(request.nextToken)) {
|
|
34831
|
+
body["NextToken"] = request.nextToken;
|
|
34832
|
+
}
|
|
34833
|
+
if (!tea_util_1.default.isUnset(request.tenantContextShrink)) {
|
|
34834
|
+
body["TenantContext"] = request.tenantContextShrink;
|
|
34835
|
+
}
|
|
34836
|
+
let realHeaders = {};
|
|
34837
|
+
if (!tea_util_1.default.isUnset(headers.commonHeaders)) {
|
|
34838
|
+
realHeaders = headers.commonHeaders;
|
|
34839
|
+
}
|
|
34840
|
+
if (!tea_util_1.default.isUnset(headers.accountContextShrink)) {
|
|
34841
|
+
realHeaders["AccountContext"] = tea_util_1.default.toJSONString(headers.accountContextShrink);
|
|
34842
|
+
}
|
|
34843
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
34844
|
+
headers: realHeaders,
|
|
34845
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
34846
|
+
});
|
|
34847
|
+
let params = new $OpenApi.Params({
|
|
34848
|
+
action: "ListTeams",
|
|
34849
|
+
version: "2023-04-26",
|
|
34850
|
+
protocol: "HTTPS",
|
|
34851
|
+
pathname: `/dingtalk/v2/documents/listTeams`,
|
|
34852
|
+
method: "POST",
|
|
34853
|
+
authType: "AK",
|
|
34854
|
+
style: "ROA",
|
|
34855
|
+
reqBodyType: "formData",
|
|
34856
|
+
bodyType: "json",
|
|
34857
|
+
});
|
|
34858
|
+
return $tea.cast(await this.callApi(params, req, runtime), new ListTeamsResponse({}));
|
|
34859
|
+
}
|
|
34860
|
+
async listTeams(request) {
|
|
34861
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
34862
|
+
let headers = new ListTeamsHeaders({});
|
|
34863
|
+
return await this.listTeamsWithOptions(request, headers, runtime);
|
|
34864
|
+
}
|
|
32740
34865
|
async listWorkspacesWithOptions(tmpReq, tmpHeader, runtime) {
|
|
32741
34866
|
tea_util_1.default.validateModel(tmpReq);
|
|
32742
34867
|
let request = new ListWorkspacesShrinkRequest({});
|
|
@@ -33869,6 +35994,67 @@ class Client extends openapi_client_1.default {
|
|
|
33869
35994
|
let headers = new ReceiverListReportHeaders({});
|
|
33870
35995
|
return await this.receiverListReportWithOptions(request, headers, runtime);
|
|
33871
35996
|
}
|
|
35997
|
+
async redirectTaskWithOptions(request, tmpHeader, runtime) {
|
|
35998
|
+
tea_util_1.default.validateModel(request);
|
|
35999
|
+
let headers = new RedirectTaskShrinkHeaders({});
|
|
36000
|
+
openapi_util_1.default.convert(tmpHeader, headers);
|
|
36001
|
+
if (!tea_util_1.default.isUnset(tmpHeader.accountContext)) {
|
|
36002
|
+
headers.accountContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
36003
|
+
}
|
|
36004
|
+
let body = {};
|
|
36005
|
+
if (!tea_util_1.default.isUnset(request.appType)) {
|
|
36006
|
+
body["AppType"] = request.appType;
|
|
36007
|
+
}
|
|
36008
|
+
if (!tea_util_1.default.isUnset(request.byManager)) {
|
|
36009
|
+
body["ByManager"] = request.byManager;
|
|
36010
|
+
}
|
|
36011
|
+
if (!tea_util_1.default.isUnset(request.language)) {
|
|
36012
|
+
body["Language"] = request.language;
|
|
36013
|
+
}
|
|
36014
|
+
if (!tea_util_1.default.isUnset(request.nowActionExecutorId)) {
|
|
36015
|
+
body["NowActionExecutorId"] = request.nowActionExecutorId;
|
|
36016
|
+
}
|
|
36017
|
+
if (!tea_util_1.default.isUnset(request.processInstanceId)) {
|
|
36018
|
+
body["ProcessInstanceId"] = request.processInstanceId;
|
|
36019
|
+
}
|
|
36020
|
+
if (!tea_util_1.default.isUnset(request.remark)) {
|
|
36021
|
+
body["Remark"] = request.remark;
|
|
36022
|
+
}
|
|
36023
|
+
if (!tea_util_1.default.isUnset(request.systemToken)) {
|
|
36024
|
+
body["SystemToken"] = request.systemToken;
|
|
36025
|
+
}
|
|
36026
|
+
if (!tea_util_1.default.isUnset(request.taskId)) {
|
|
36027
|
+
body["TaskId"] = request.taskId;
|
|
36028
|
+
}
|
|
36029
|
+
let realHeaders = {};
|
|
36030
|
+
if (!tea_util_1.default.isUnset(headers.commonHeaders)) {
|
|
36031
|
+
realHeaders = headers.commonHeaders;
|
|
36032
|
+
}
|
|
36033
|
+
if (!tea_util_1.default.isUnset(headers.accountContextShrink)) {
|
|
36034
|
+
realHeaders["AccountContext"] = tea_util_1.default.toJSONString(headers.accountContextShrink);
|
|
36035
|
+
}
|
|
36036
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
36037
|
+
headers: realHeaders,
|
|
36038
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
36039
|
+
});
|
|
36040
|
+
let params = new $OpenApi.Params({
|
|
36041
|
+
action: "RedirectTask",
|
|
36042
|
+
version: "2023-04-26",
|
|
36043
|
+
protocol: "HTTPS",
|
|
36044
|
+
pathname: `/dingtalk/v1/yida/redirectTask`,
|
|
36045
|
+
method: "POST",
|
|
36046
|
+
authType: "AK",
|
|
36047
|
+
style: "ROA",
|
|
36048
|
+
reqBodyType: "formData",
|
|
36049
|
+
bodyType: "json",
|
|
36050
|
+
});
|
|
36051
|
+
return $tea.cast(await this.callApi(params, req, runtime), new RedirectTaskResponse({}));
|
|
36052
|
+
}
|
|
36053
|
+
async redirectTask(request) {
|
|
36054
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
36055
|
+
let headers = new RedirectTaskHeaders({});
|
|
36056
|
+
return await this.redirectTaskWithOptions(request, headers, runtime);
|
|
36057
|
+
}
|
|
33872
36058
|
async removeAttendeeWithOptions(tmpReq, tmpHeader, runtime) {
|
|
33873
36059
|
tea_util_1.default.validateModel(tmpReq);
|
|
33874
36060
|
let request = new RemoveAttendeeShrinkRequest({});
|
|
@@ -34080,6 +36266,64 @@ class Client extends openapi_client_1.default {
|
|
|
34080
36266
|
let headers = new SaveFormDataHeaders({});
|
|
34081
36267
|
return await this.saveFormDataWithOptions(request, headers, runtime);
|
|
34082
36268
|
}
|
|
36269
|
+
async saveFormRemarkWithOptions(request, tmpHeader, runtime) {
|
|
36270
|
+
tea_util_1.default.validateModel(request);
|
|
36271
|
+
let headers = new SaveFormRemarkShrinkHeaders({});
|
|
36272
|
+
openapi_util_1.default.convert(tmpHeader, headers);
|
|
36273
|
+
if (!tea_util_1.default.isUnset(tmpHeader.accountContext)) {
|
|
36274
|
+
headers.accountContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
36275
|
+
}
|
|
36276
|
+
let body = {};
|
|
36277
|
+
if (!tea_util_1.default.isUnset(request.appType)) {
|
|
36278
|
+
body["AppType"] = request.appType;
|
|
36279
|
+
}
|
|
36280
|
+
if (!tea_util_1.default.isUnset(request.atUserId)) {
|
|
36281
|
+
body["AtUserId"] = request.atUserId;
|
|
36282
|
+
}
|
|
36283
|
+
if (!tea_util_1.default.isUnset(request.content)) {
|
|
36284
|
+
body["Content"] = request.content;
|
|
36285
|
+
}
|
|
36286
|
+
if (!tea_util_1.default.isUnset(request.formInstanceId)) {
|
|
36287
|
+
body["FormInstanceId"] = request.formInstanceId;
|
|
36288
|
+
}
|
|
36289
|
+
if (!tea_util_1.default.isUnset(request.language)) {
|
|
36290
|
+
body["Language"] = request.language;
|
|
36291
|
+
}
|
|
36292
|
+
if (!tea_util_1.default.isUnset(request.replyId)) {
|
|
36293
|
+
body["ReplyId"] = request.replyId;
|
|
36294
|
+
}
|
|
36295
|
+
if (!tea_util_1.default.isUnset(request.systemToken)) {
|
|
36296
|
+
body["SystemToken"] = request.systemToken;
|
|
36297
|
+
}
|
|
36298
|
+
let realHeaders = {};
|
|
36299
|
+
if (!tea_util_1.default.isUnset(headers.commonHeaders)) {
|
|
36300
|
+
realHeaders = headers.commonHeaders;
|
|
36301
|
+
}
|
|
36302
|
+
if (!tea_util_1.default.isUnset(headers.accountContextShrink)) {
|
|
36303
|
+
realHeaders["AccountContext"] = tea_util_1.default.toJSONString(headers.accountContextShrink);
|
|
36304
|
+
}
|
|
36305
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
36306
|
+
headers: realHeaders,
|
|
36307
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
36308
|
+
});
|
|
36309
|
+
let params = new $OpenApi.Params({
|
|
36310
|
+
action: "SaveFormRemark",
|
|
36311
|
+
version: "2023-04-26",
|
|
36312
|
+
protocol: "HTTPS",
|
|
36313
|
+
pathname: `/dingtalk/v1/yida/saveFormRemark`,
|
|
36314
|
+
method: "POST",
|
|
36315
|
+
authType: "AK",
|
|
36316
|
+
style: "ROA",
|
|
36317
|
+
reqBodyType: "formData",
|
|
36318
|
+
bodyType: "json",
|
|
36319
|
+
});
|
|
36320
|
+
return $tea.cast(await this.callApi(params, req, runtime), new SaveFormRemarkResponse({}));
|
|
36321
|
+
}
|
|
36322
|
+
async saveFormRemark(request) {
|
|
36323
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
36324
|
+
let headers = new SaveFormRemarkHeaders({});
|
|
36325
|
+
return await this.saveFormRemarkWithOptions(request, headers, runtime);
|
|
36326
|
+
}
|
|
34083
36327
|
async searchEmployeeFieldValuesWithOptions(request, tmpHeader, runtime) {
|
|
34084
36328
|
tea_util_1.default.validateModel(request);
|
|
34085
36329
|
let headers = new SearchEmployeeFieldValuesShrinkHeaders({});
|