@alicloud/aliding20230426 2.3.5 → 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 +1238 -52
- package/dist/client.js +2387 -147
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +3639 -808
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);
|
|
@@ -7527,89 +7865,209 @@ class GetNodesHeaders extends $tea.Model {
|
|
|
7527
7865
|
}
|
|
7528
7866
|
static types() {
|
|
7529
7867
|
return {
|
|
7530
|
-
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7531
|
-
accountContext: GetNodesHeadersAccountContext,
|
|
7868
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7869
|
+
accountContext: GetNodesHeadersAccountContext,
|
|
7870
|
+
};
|
|
7871
|
+
}
|
|
7872
|
+
}
|
|
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,
|
|
7532
7966
|
};
|
|
7533
7967
|
}
|
|
7534
7968
|
}
|
|
7535
|
-
exports.
|
|
7536
|
-
class
|
|
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);
|
|
@@ -10472,12 +11254,122 @@ class ListReportResponseBody extends $tea.Model {
|
|
|
10472
11254
|
hasMore: 'boolean',
|
|
10473
11255
|
nextCursor: 'number',
|
|
10474
11256
|
requestId: 'string',
|
|
10475
|
-
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',
|
|
10476
11368
|
};
|
|
10477
11369
|
}
|
|
10478
11370
|
}
|
|
10479
|
-
exports.
|
|
10480
|
-
class
|
|
11371
|
+
exports.ListTableDataByFormInstanceIdTableIdResponseBody = ListTableDataByFormInstanceIdTableIdResponseBody;
|
|
11372
|
+
class ListTableDataByFormInstanceIdTableIdResponse extends $tea.Model {
|
|
10481
11373
|
constructor(map) {
|
|
10482
11374
|
super(map);
|
|
10483
11375
|
}
|
|
@@ -10492,12 +11384,12 @@ class ListReportResponse extends $tea.Model {
|
|
|
10492
11384
|
return {
|
|
10493
11385
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10494
11386
|
statusCode: 'number',
|
|
10495
|
-
body:
|
|
11387
|
+
body: ListTableDataByFormInstanceIdTableIdResponseBody,
|
|
10496
11388
|
};
|
|
10497
11389
|
}
|
|
10498
11390
|
}
|
|
10499
|
-
exports.
|
|
10500
|
-
class
|
|
11391
|
+
exports.ListTableDataByFormInstanceIdTableIdResponse = ListTableDataByFormInstanceIdTableIdResponse;
|
|
11392
|
+
class ListTeamsHeaders extends $tea.Model {
|
|
10501
11393
|
constructor(map) {
|
|
10502
11394
|
super(map);
|
|
10503
11395
|
}
|
|
@@ -10510,12 +11402,12 @@ class ListTableDataByFormInstanceIdTableIdHeaders extends $tea.Model {
|
|
|
10510
11402
|
static types() {
|
|
10511
11403
|
return {
|
|
10512
11404
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10513
|
-
accountContext:
|
|
11405
|
+
accountContext: ListTeamsHeadersAccountContext,
|
|
10514
11406
|
};
|
|
10515
11407
|
}
|
|
10516
11408
|
}
|
|
10517
|
-
exports.
|
|
10518
|
-
class
|
|
11409
|
+
exports.ListTeamsHeaders = ListTeamsHeaders;
|
|
11410
|
+
class ListTeamsShrinkHeaders extends $tea.Model {
|
|
10519
11411
|
constructor(map) {
|
|
10520
11412
|
super(map);
|
|
10521
11413
|
}
|
|
@@ -10532,62 +11424,72 @@ class ListTableDataByFormInstanceIdTableIdShrinkHeaders extends $tea.Model {
|
|
|
10532
11424
|
};
|
|
10533
11425
|
}
|
|
10534
11426
|
}
|
|
10535
|
-
exports.
|
|
10536
|
-
class
|
|
11427
|
+
exports.ListTeamsShrinkHeaders = ListTeamsShrinkHeaders;
|
|
11428
|
+
class ListTeamsRequest extends $tea.Model {
|
|
10537
11429
|
constructor(map) {
|
|
10538
11430
|
super(map);
|
|
10539
11431
|
}
|
|
10540
11432
|
static names() {
|
|
10541
11433
|
return {
|
|
10542
|
-
|
|
10543
|
-
|
|
10544
|
-
|
|
10545
|
-
pageNumber: 'PageNumber',
|
|
10546
|
-
pageSize: 'PageSize',
|
|
10547
|
-
systemToken: 'SystemToken',
|
|
10548
|
-
tableFieldId: 'TableFieldId',
|
|
11434
|
+
maxResults: 'MaxResults',
|
|
11435
|
+
nextToken: 'NextToken',
|
|
11436
|
+
tenantContext: 'TenantContext',
|
|
10549
11437
|
};
|
|
10550
11438
|
}
|
|
10551
11439
|
static types() {
|
|
10552
11440
|
return {
|
|
10553
|
-
|
|
10554
|
-
|
|
10555
|
-
|
|
10556
|
-
pageNumber: 'number',
|
|
10557
|
-
pageSize: 'number',
|
|
10558
|
-
systemToken: 'string',
|
|
10559
|
-
tableFieldId: 'string',
|
|
11441
|
+
maxResults: 'number',
|
|
11442
|
+
nextToken: 'string',
|
|
11443
|
+
tenantContext: ListTeamsRequestTenantContext,
|
|
10560
11444
|
};
|
|
10561
11445
|
}
|
|
10562
11446
|
}
|
|
10563
|
-
exports.
|
|
10564
|
-
class
|
|
11447
|
+
exports.ListTeamsRequest = ListTeamsRequest;
|
|
11448
|
+
class ListTeamsShrinkRequest extends $tea.Model {
|
|
10565
11449
|
constructor(map) {
|
|
10566
11450
|
super(map);
|
|
10567
11451
|
}
|
|
10568
11452
|
static names() {
|
|
10569
11453
|
return {
|
|
10570
|
-
|
|
10571
|
-
|
|
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',
|
|
10572
11475
|
requestId: 'requestId',
|
|
10573
|
-
|
|
11476
|
+
teams: 'teams',
|
|
10574
11477
|
vendorRequestId: 'vendorRequestId',
|
|
10575
11478
|
vendorType: 'vendorType',
|
|
10576
11479
|
};
|
|
10577
11480
|
}
|
|
10578
11481
|
static types() {
|
|
10579
11482
|
return {
|
|
10580
|
-
|
|
10581
|
-
pageNumber: 'number',
|
|
11483
|
+
nextToken: 'string',
|
|
10582
11484
|
requestId: 'string',
|
|
10583
|
-
|
|
11485
|
+
teams: { 'type': 'array', 'itemType': ListTeamsResponseBodyTeams },
|
|
10584
11486
|
vendorRequestId: 'string',
|
|
10585
11487
|
vendorType: 'string',
|
|
10586
11488
|
};
|
|
10587
11489
|
}
|
|
10588
11490
|
}
|
|
10589
|
-
exports.
|
|
10590
|
-
class
|
|
11491
|
+
exports.ListTeamsResponseBody = ListTeamsResponseBody;
|
|
11492
|
+
class ListTeamsResponse extends $tea.Model {
|
|
10591
11493
|
constructor(map) {
|
|
10592
11494
|
super(map);
|
|
10593
11495
|
}
|
|
@@ -10602,11 +11504,11 @@ class ListTableDataByFormInstanceIdTableIdResponse extends $tea.Model {
|
|
|
10602
11504
|
return {
|
|
10603
11505
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10604
11506
|
statusCode: 'number',
|
|
10605
|
-
body:
|
|
11507
|
+
body: ListTeamsResponseBody,
|
|
10606
11508
|
};
|
|
10607
11509
|
}
|
|
10608
11510
|
}
|
|
10609
|
-
exports.
|
|
11511
|
+
exports.ListTeamsResponse = ListTeamsResponse;
|
|
10610
11512
|
class ListWorkspacesHeaders extends $tea.Model {
|
|
10611
11513
|
constructor(map) {
|
|
10612
11514
|
super(map);
|
|
@@ -13201,6 +14103,112 @@ class ReceiverListReportResponse extends $tea.Model {
|
|
|
13201
14103
|
}
|
|
13202
14104
|
}
|
|
13203
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;
|
|
13204
14212
|
class RemoveAttendeeHeaders extends $tea.Model {
|
|
13205
14213
|
constructor(map) {
|
|
13206
14214
|
super(map);
|
|
@@ -13600,24 +14608,130 @@ class SaveFormDataRequest extends $tea.Model {
|
|
|
13600
14608
|
static names() {
|
|
13601
14609
|
return {
|
|
13602
14610
|
appType: 'AppType',
|
|
13603
|
-
formDataJson: 'FormDataJson',
|
|
13604
|
-
formUuid: 'FormUuid',
|
|
14611
|
+
formDataJson: 'FormDataJson',
|
|
14612
|
+
formUuid: 'FormUuid',
|
|
14613
|
+
language: 'Language',
|
|
14614
|
+
systemToken: 'SystemToken',
|
|
14615
|
+
};
|
|
14616
|
+
}
|
|
14617
|
+
static types() {
|
|
14618
|
+
return {
|
|
14619
|
+
appType: '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',
|
|
13605
14716
|
language: 'Language',
|
|
14717
|
+
replyId: 'ReplyId',
|
|
13606
14718
|
systemToken: 'SystemToken',
|
|
13607
14719
|
};
|
|
13608
14720
|
}
|
|
13609
14721
|
static types() {
|
|
13610
14722
|
return {
|
|
13611
14723
|
appType: 'string',
|
|
13612
|
-
|
|
13613
|
-
|
|
14724
|
+
atUserId: 'string',
|
|
14725
|
+
content: 'string',
|
|
14726
|
+
formInstanceId: 'string',
|
|
13614
14727
|
language: 'string',
|
|
14728
|
+
replyId: 'number',
|
|
13615
14729
|
systemToken: 'string',
|
|
13616
14730
|
};
|
|
13617
14731
|
}
|
|
13618
14732
|
}
|
|
13619
|
-
exports.
|
|
13620
|
-
class
|
|
14733
|
+
exports.SaveFormRemarkRequest = SaveFormRemarkRequest;
|
|
14734
|
+
class SaveFormRemarkResponseBody extends $tea.Model {
|
|
13621
14735
|
constructor(map) {
|
|
13622
14736
|
super(map);
|
|
13623
14737
|
}
|
|
@@ -13632,14 +14746,14 @@ class SaveFormDataResponseBody extends $tea.Model {
|
|
|
13632
14746
|
static types() {
|
|
13633
14747
|
return {
|
|
13634
14748
|
requestId: 'string',
|
|
13635
|
-
result: '
|
|
14749
|
+
result: 'number',
|
|
13636
14750
|
vendorRequestId: 'string',
|
|
13637
14751
|
vendorType: 'string',
|
|
13638
14752
|
};
|
|
13639
14753
|
}
|
|
13640
14754
|
}
|
|
13641
|
-
exports.
|
|
13642
|
-
class
|
|
14755
|
+
exports.SaveFormRemarkResponseBody = SaveFormRemarkResponseBody;
|
|
14756
|
+
class SaveFormRemarkResponse extends $tea.Model {
|
|
13643
14757
|
constructor(map) {
|
|
13644
14758
|
super(map);
|
|
13645
14759
|
}
|
|
@@ -13654,11 +14768,11 @@ class SaveFormDataResponse extends $tea.Model {
|
|
|
13654
14768
|
return {
|
|
13655
14769
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
13656
14770
|
statusCode: 'number',
|
|
13657
|
-
body:
|
|
14771
|
+
body: SaveFormRemarkResponseBody,
|
|
13658
14772
|
};
|
|
13659
14773
|
}
|
|
13660
14774
|
}
|
|
13661
|
-
exports.
|
|
14775
|
+
exports.SaveFormRemarkResponse = SaveFormRemarkResponse;
|
|
13662
14776
|
class SearchEmployeeFieldValuesHeaders extends $tea.Model {
|
|
13663
14777
|
constructor(map) {
|
|
13664
14778
|
super(map);
|
|
@@ -19915,6 +21029,22 @@ class DeleteWorkspaceMembersRequestTenantContext extends $tea.Model {
|
|
|
19915
21029
|
}
|
|
19916
21030
|
}
|
|
19917
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;
|
|
19918
21048
|
class ExecutePlatformTaskHeadersAccountContext extends $tea.Model {
|
|
19919
21049
|
constructor(map) {
|
|
19920
21050
|
super(map);
|
|
@@ -20033,6 +21163,140 @@ class GetAllSheetsResponseBodyValue extends $tea.Model {
|
|
|
20033
21163
|
}
|
|
20034
21164
|
}
|
|
20035
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;
|
|
20036
21300
|
class GetEventHeadersAccountContext extends $tea.Model {
|
|
20037
21301
|
constructor(map) {
|
|
20038
21302
|
super(map);
|
|
@@ -21615,6 +22879,54 @@ class GetNodesResponseBodyNodes extends $tea.Model {
|
|
|
21615
22879
|
}
|
|
21616
22880
|
}
|
|
21617
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;
|
|
21618
22930
|
class GetOpenUrlHeadersAccountContext extends $tea.Model {
|
|
21619
22931
|
constructor(map) {
|
|
21620
22932
|
super(map);
|
|
@@ -22073,6 +23385,60 @@ class GetReportUnReadCountRequestTenantContext extends $tea.Model {
|
|
|
22073
23385
|
}
|
|
22074
23386
|
}
|
|
22075
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;
|
|
22076
23442
|
class GetSheetHeadersAccountContext extends $tea.Model {
|
|
22077
23443
|
constructor(map) {
|
|
22078
23444
|
super(map);
|
|
@@ -22419,36 +23785,144 @@ class GetSubscribedCalendarHeadersAccountContext extends $tea.Model {
|
|
|
22419
23785
|
}
|
|
22420
23786
|
static names() {
|
|
22421
23787
|
return {
|
|
22422
|
-
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',
|
|
22423
23845
|
};
|
|
22424
23846
|
}
|
|
22425
23847
|
static types() {
|
|
22426
23848
|
return {
|
|
22427
|
-
|
|
23849
|
+
activityId: 'string',
|
|
23850
|
+
activityInstanceStatus: 'string',
|
|
23851
|
+
activityName: 'string',
|
|
23852
|
+
activityNameInEnglish: 'string',
|
|
23853
|
+
id: 'number',
|
|
22428
23854
|
};
|
|
22429
23855
|
}
|
|
22430
23856
|
}
|
|
22431
|
-
exports.
|
|
22432
|
-
class
|
|
23857
|
+
exports.GetTaskCopiesResponseBodyDataCurrentActivityInstances = GetTaskCopiesResponseBodyDataCurrentActivityInstances;
|
|
23858
|
+
class GetTaskCopiesResponseBodyData extends $tea.Model {
|
|
22433
23859
|
constructor(map) {
|
|
22434
23860
|
super(map);
|
|
22435
23861
|
}
|
|
22436
23862
|
static names() {
|
|
22437
23863
|
return {
|
|
22438
|
-
|
|
22439
|
-
|
|
22440
|
-
|
|
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',
|
|
22441
23891
|
};
|
|
22442
23892
|
}
|
|
22443
23893
|
static types() {
|
|
22444
23894
|
return {
|
|
22445
|
-
|
|
22446
|
-
|
|
22447
|
-
|
|
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',
|
|
22448
23922
|
};
|
|
22449
23923
|
}
|
|
22450
23924
|
}
|
|
22451
|
-
exports.
|
|
23925
|
+
exports.GetTaskCopiesResponseBodyData = GetTaskCopiesResponseBodyData;
|
|
22452
23926
|
class GetTemplateListByUserIdHeadersAccountContext extends $tea.Model {
|
|
22453
23927
|
constructor(map) {
|
|
22454
23928
|
super(map);
|
|
@@ -22979,6 +24453,56 @@ class InviteUsersRequestTenantContext extends $tea.Model {
|
|
|
22979
24453
|
}
|
|
22980
24454
|
}
|
|
22981
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;
|
|
22982
24506
|
class ListCalendarsHeadersAccountContext extends $tea.Model {
|
|
22983
24507
|
constructor(map) {
|
|
22984
24508
|
super(map);
|
|
@@ -24047,6 +25571,90 @@ class ListTableDataByFormInstanceIdTableIdHeadersAccountContext extends $tea.Mod
|
|
|
24047
25571
|
}
|
|
24048
25572
|
}
|
|
24049
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;
|
|
24050
25658
|
class ListWorkspacesHeadersAccountContext extends $tea.Model {
|
|
24051
25659
|
constructor(map) {
|
|
24052
25660
|
super(map);
|
|
@@ -26077,6 +27685,22 @@ class ReceiverListReportRequestTenantContext extends $tea.Model {
|
|
|
26077
27685
|
}
|
|
26078
27686
|
}
|
|
26079
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;
|
|
26080
27704
|
class RemoveAttendeeHeadersAccountContext extends $tea.Model {
|
|
26081
27705
|
constructor(map) {
|
|
26082
27706
|
super(map);
|
|
@@ -26213,6 +27837,22 @@ class SaveFormDataHeadersAccountContext extends $tea.Model {
|
|
|
26213
27837
|
}
|
|
26214
27838
|
}
|
|
26215
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;
|
|
26216
27856
|
class SearchEmployeeFieldValuesHeadersAccountContext extends $tea.Model {
|
|
26217
27857
|
constructor(map) {
|
|
26218
27858
|
super(map);
|
|
@@ -30255,21 +31895,73 @@ class Client extends openapi_client_1.default {
|
|
|
30255
31895
|
if (!tea_util_1.default.isUnset(tmpHeader.accountContext)) {
|
|
30256
31896
|
headers.accountContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
30257
31897
|
}
|
|
30258
|
-
if (!tea_util_1.default.isUnset(tmpReq.members)) {
|
|
30259
|
-
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;
|
|
30260
31953
|
}
|
|
30261
|
-
if (!tea_util_1.default.isUnset(
|
|
30262
|
-
|
|
31954
|
+
if (!tea_util_1.default.isUnset(request.outResult)) {
|
|
31955
|
+
body["OutResult"] = request.outResult;
|
|
30263
31956
|
}
|
|
30264
|
-
|
|
30265
|
-
|
|
30266
|
-
body["Members"] = request.membersShrink;
|
|
31957
|
+
if (!tea_util_1.default.isUnset(request.remark)) {
|
|
31958
|
+
body["Remark"] = request.remark;
|
|
30267
31959
|
}
|
|
30268
|
-
if (!tea_util_1.default.isUnset(request.
|
|
30269
|
-
body["
|
|
31960
|
+
if (!tea_util_1.default.isUnset(request.systemToken)) {
|
|
31961
|
+
body["SystemToken"] = request.systemToken;
|
|
30270
31962
|
}
|
|
30271
|
-
if (!tea_util_1.default.isUnset(request.
|
|
30272
|
-
body["
|
|
31963
|
+
if (!tea_util_1.default.isUnset(request.taskInformationList)) {
|
|
31964
|
+
body["TaskInformationList"] = request.taskInformationList;
|
|
30273
31965
|
}
|
|
30274
31966
|
let realHeaders = {};
|
|
30275
31967
|
if (!tea_util_1.default.isUnset(headers.commonHeaders)) {
|
|
@@ -30283,22 +31975,22 @@ class Client extends openapi_client_1.default {
|
|
|
30283
31975
|
body: openapi_util_1.default.parseToMap(body),
|
|
30284
31976
|
});
|
|
30285
31977
|
let params = new $OpenApi.Params({
|
|
30286
|
-
action: "
|
|
31978
|
+
action: "ExecuteBatchTask",
|
|
30287
31979
|
version: "2023-04-26",
|
|
30288
31980
|
protocol: "HTTPS",
|
|
30289
|
-
pathname: `/dingtalk/v1/
|
|
31981
|
+
pathname: `/dingtalk/v1/yida/executeBatchTask`,
|
|
30290
31982
|
method: "POST",
|
|
30291
31983
|
authType: "AK",
|
|
30292
31984
|
style: "ROA",
|
|
30293
31985
|
reqBodyType: "formData",
|
|
30294
31986
|
bodyType: "json",
|
|
30295
31987
|
});
|
|
30296
|
-
return $tea.cast(await this.callApi(params, req, runtime), new
|
|
31988
|
+
return $tea.cast(await this.callApi(params, req, runtime), new ExecuteBatchTaskResponse({}));
|
|
30297
31989
|
}
|
|
30298
|
-
async
|
|
31990
|
+
async executeBatchTask(request) {
|
|
30299
31991
|
let runtime = new $Util.RuntimeOptions({});
|
|
30300
|
-
let headers = new
|
|
30301
|
-
return await this.
|
|
31992
|
+
let headers = new ExecuteBatchTaskHeaders({});
|
|
31993
|
+
return await this.executeBatchTaskWithOptions(request, headers, runtime);
|
|
30302
31994
|
}
|
|
30303
31995
|
async executePlatformTaskWithOptions(request, tmpHeader, runtime) {
|
|
30304
31996
|
tea_util_1.default.validateModel(request);
|
|
@@ -30525,6 +32217,140 @@ class Client extends openapi_client_1.default {
|
|
|
30525
32217
|
let headers = new GetAllSheetsHeaders({});
|
|
30526
32218
|
return await this.getAllSheetsWithOptions(request, headers, runtime);
|
|
30527
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
|
+
}
|
|
30528
32354
|
async getEventWithOptions(request, tmpHeader, runtime) {
|
|
30529
32355
|
tea_util_1.default.validateModel(request);
|
|
30530
32356
|
let headers = new GetEventShrinkHeaders({});
|
|
@@ -31368,6 +33194,79 @@ class Client extends openapi_client_1.default {
|
|
|
31368
33194
|
let headers = new GetNodesHeaders({});
|
|
31369
33195
|
return await this.getNodesWithOptions(request, headers, runtime);
|
|
31370
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
|
+
}
|
|
31371
33270
|
async getOpenUrlWithOptions(request, tmpHeader, runtime) {
|
|
31372
33271
|
tea_util_1.default.validateModel(request);
|
|
31373
33272
|
let headers = new GetOpenUrlShrinkHeaders({});
|
|
@@ -31650,15 +33549,67 @@ class Client extends openapi_client_1.default {
|
|
|
31650
33549
|
if (!tea_util_1.default.isUnset(tmpReq.request)) {
|
|
31651
33550
|
request.requestShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.request, "Request", "json");
|
|
31652
33551
|
}
|
|
31653
|
-
if (!tea_util_1.default.isUnset(tmpReq.tenantContext)) {
|
|
31654
|
-
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;
|
|
31655
33604
|
}
|
|
31656
|
-
|
|
31657
|
-
|
|
31658
|
-
body["Request"] = request.requestShrink;
|
|
33605
|
+
if (!tea_util_1.default.isUnset(request.processCodes)) {
|
|
33606
|
+
body["ProcessCodes"] = request.processCodes;
|
|
31659
33607
|
}
|
|
31660
|
-
if (!tea_util_1.default.isUnset(request.
|
|
31661
|
-
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;
|
|
31662
33613
|
}
|
|
31663
33614
|
let realHeaders = {};
|
|
31664
33615
|
if (!tea_util_1.default.isUnset(headers.commonHeaders)) {
|
|
@@ -31672,22 +33623,22 @@ class Client extends openapi_client_1.default {
|
|
|
31672
33623
|
body: openapi_util_1.default.parseToMap(body),
|
|
31673
33624
|
});
|
|
31674
33625
|
let params = new $OpenApi.Params({
|
|
31675
|
-
action: "
|
|
33626
|
+
action: "GetRunningTasks",
|
|
31676
33627
|
version: "2023-04-26",
|
|
31677
33628
|
protocol: "HTTPS",
|
|
31678
|
-
pathname: `/dingtalk/v1/
|
|
33629
|
+
pathname: `/dingtalk/v1/yida/getRunningTasks`,
|
|
31679
33630
|
method: "POST",
|
|
31680
33631
|
authType: "AK",
|
|
31681
33632
|
style: "ROA",
|
|
31682
33633
|
reqBodyType: "formData",
|
|
31683
33634
|
bodyType: "json",
|
|
31684
33635
|
});
|
|
31685
|
-
return $tea.cast(await this.callApi(params, req, runtime), new
|
|
33636
|
+
return $tea.cast(await this.callApi(params, req, runtime), new GetRunningTasksResponse({}));
|
|
31686
33637
|
}
|
|
31687
|
-
async
|
|
33638
|
+
async getRunningTasks(request) {
|
|
31688
33639
|
let runtime = new $Util.RuntimeOptions({});
|
|
31689
|
-
let headers = new
|
|
31690
|
-
return await this.
|
|
33640
|
+
let headers = new GetRunningTasksHeaders({});
|
|
33641
|
+
return await this.getRunningTasksWithOptions(request, headers, runtime);
|
|
31691
33642
|
}
|
|
31692
33643
|
async getSheetWithOptions(tmpReq, tmpHeader, runtime) {
|
|
31693
33644
|
tea_util_1.default.validateModel(tmpReq);
|
|
@@ -31837,6 +33788,70 @@ class Client extends openapi_client_1.default {
|
|
|
31837
33788
|
let headers = new GetSubscribedCalendarHeaders({});
|
|
31838
33789
|
return await this.getSubscribedCalendarWithOptions(request, headers, runtime);
|
|
31839
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
|
+
}
|
|
31840
33855
|
async getTemplateListByUserIdWithOptions(tmpReq, tmpHeader, runtime) {
|
|
31841
33856
|
tea_util_1.default.validateModel(tmpReq);
|
|
31842
33857
|
let request = new GetTemplateListByUserIdShrinkRequest({});
|
|
@@ -32293,6 +34308,61 @@ class Client extends openapi_client_1.default {
|
|
|
32293
34308
|
let headers = new InviteUsersHeaders({});
|
|
32294
34309
|
return await this.inviteUsersWithOptions(request, headers, runtime);
|
|
32295
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
|
+
}
|
|
32296
34366
|
async listCalendarsWithOptions(tmpReq, tmpHeader, runtime) {
|
|
32297
34367
|
tea_util_1.default.validateModel(tmpReq);
|
|
32298
34368
|
let request = new ListCalendarsShrinkRequest({});
|
|
@@ -32741,6 +34811,57 @@ class Client extends openapi_client_1.default {
|
|
|
32741
34811
|
let headers = new ListTableDataByFormInstanceIdTableIdHeaders({});
|
|
32742
34812
|
return await this.listTableDataByFormInstanceIdTableIdWithOptions(request, headers, runtime);
|
|
32743
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
|
+
}
|
|
32744
34865
|
async listWorkspacesWithOptions(tmpReq, tmpHeader, runtime) {
|
|
32745
34866
|
tea_util_1.default.validateModel(tmpReq);
|
|
32746
34867
|
let request = new ListWorkspacesShrinkRequest({});
|
|
@@ -33873,6 +35994,67 @@ class Client extends openapi_client_1.default {
|
|
|
33873
35994
|
let headers = new ReceiverListReportHeaders({});
|
|
33874
35995
|
return await this.receiverListReportWithOptions(request, headers, runtime);
|
|
33875
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
|
+
}
|
|
33876
36058
|
async removeAttendeeWithOptions(tmpReq, tmpHeader, runtime) {
|
|
33877
36059
|
tea_util_1.default.validateModel(tmpReq);
|
|
33878
36060
|
let request = new RemoveAttendeeShrinkRequest({});
|
|
@@ -34084,6 +36266,64 @@ class Client extends openapi_client_1.default {
|
|
|
34084
36266
|
let headers = new SaveFormDataHeaders({});
|
|
34085
36267
|
return await this.saveFormDataWithOptions(request, headers, runtime);
|
|
34086
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
|
+
}
|
|
34087
36327
|
async searchEmployeeFieldValuesWithOptions(request, tmpHeader, runtime) {
|
|
34088
36328
|
tea_util_1.default.validateModel(request);
|
|
34089
36329
|
let headers = new SearchEmployeeFieldValuesShrinkHeaders({});
|