@larksuiteoapi/node-sdk 1.43.0-alpha.0 → 1.44.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/es/index.js +277 -14
- package/lib/index.js +277 -14
- package/package.json +1 -1
- package/types/index.d.ts +813 -88
package/lib/index.js
CHANGED
|
@@ -1333,7 +1333,7 @@ class Client$10 extends Client$11 {
|
|
|
1333
1333
|
constructor() {
|
|
1334
1334
|
super(...arguments);
|
|
1335
1335
|
/**
|
|
1336
|
-
*
|
|
1336
|
+
* 管理后台-数据报表
|
|
1337
1337
|
*/
|
|
1338
1338
|
this.admin = {
|
|
1339
1339
|
/**
|
|
@@ -3481,6 +3481,53 @@ class Client$_ extends Client$$ {
|
|
|
3481
3481
|
});
|
|
3482
3482
|
}),
|
|
3483
3483
|
},
|
|
3484
|
+
/**
|
|
3485
|
+
* application.collaborators
|
|
3486
|
+
*/
|
|
3487
|
+
applicationCollaborators: {
|
|
3488
|
+
/**
|
|
3489
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.collaborators&apiName=get&version=v6 click to debug }
|
|
3490
|
+
*
|
|
3491
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=application&resource=application.collaborators&version=v6 document }
|
|
3492
|
+
*/
|
|
3493
|
+
get: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
3494
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
3495
|
+
return this.httpInstance
|
|
3496
|
+
.request({
|
|
3497
|
+
url: fillApiPath(`${this.domain}/open-apis/application/v6/applications/:app_id/collaborators`, path),
|
|
3498
|
+
method: "GET",
|
|
3499
|
+
data,
|
|
3500
|
+
params,
|
|
3501
|
+
headers,
|
|
3502
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
3503
|
+
})
|
|
3504
|
+
.catch((e) => {
|
|
3505
|
+
this.logger.error(formatErrors(e));
|
|
3506
|
+
throw e;
|
|
3507
|
+
});
|
|
3508
|
+
}),
|
|
3509
|
+
/**
|
|
3510
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.collaborators&apiName=update&version=v6 click to debug }
|
|
3511
|
+
*
|
|
3512
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=update&project=application&resource=application.collaborators&version=v6 document }
|
|
3513
|
+
*/
|
|
3514
|
+
update: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
3515
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
3516
|
+
return this.httpInstance
|
|
3517
|
+
.request({
|
|
3518
|
+
url: fillApiPath(`${this.domain}/open-apis/application/v6/applications/:app_id/collaborators`, path),
|
|
3519
|
+
method: "PUT",
|
|
3520
|
+
data,
|
|
3521
|
+
params,
|
|
3522
|
+
headers,
|
|
3523
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
3524
|
+
})
|
|
3525
|
+
.catch((e) => {
|
|
3526
|
+
this.logger.error(formatErrors(e));
|
|
3527
|
+
throw e;
|
|
3528
|
+
});
|
|
3529
|
+
}),
|
|
3530
|
+
},
|
|
3484
3531
|
/**
|
|
3485
3532
|
* application.contacts_range
|
|
3486
3533
|
*/
|
|
@@ -3814,6 +3861,32 @@ class Client$_ extends Client$$ {
|
|
|
3814
3861
|
});
|
|
3815
3862
|
}),
|
|
3816
3863
|
},
|
|
3864
|
+
/**
|
|
3865
|
+
* application.owner
|
|
3866
|
+
*/
|
|
3867
|
+
applicationOwner: {
|
|
3868
|
+
/**
|
|
3869
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.owner&apiName=update&version=v6 click to debug }
|
|
3870
|
+
*
|
|
3871
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=update&project=application&resource=application.owner&version=v6 document }
|
|
3872
|
+
*/
|
|
3873
|
+
update: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
3874
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
3875
|
+
return this.httpInstance
|
|
3876
|
+
.request({
|
|
3877
|
+
url: fillApiPath(`${this.domain}/open-apis/application/v6/applications/:app_id/owner`, path),
|
|
3878
|
+
method: "PUT",
|
|
3879
|
+
data,
|
|
3880
|
+
params,
|
|
3881
|
+
headers,
|
|
3882
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
3883
|
+
})
|
|
3884
|
+
.catch((e) => {
|
|
3885
|
+
this.logger.error(formatErrors(e));
|
|
3886
|
+
throw e;
|
|
3887
|
+
});
|
|
3888
|
+
}),
|
|
3889
|
+
},
|
|
3817
3890
|
/**
|
|
3818
3891
|
* 事件
|
|
3819
3892
|
*/
|
|
@@ -4262,6 +4335,53 @@ class Client$_ extends Client$$ {
|
|
|
4262
4335
|
});
|
|
4263
4336
|
}),
|
|
4264
4337
|
},
|
|
4338
|
+
/**
|
|
4339
|
+
* application.collaborators
|
|
4340
|
+
*/
|
|
4341
|
+
applicationCollaborators: {
|
|
4342
|
+
/**
|
|
4343
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.collaborators&apiName=get&version=v6 click to debug }
|
|
4344
|
+
*
|
|
4345
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=application&resource=application.collaborators&version=v6 document }
|
|
4346
|
+
*/
|
|
4347
|
+
get: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
4348
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
4349
|
+
return this.httpInstance
|
|
4350
|
+
.request({
|
|
4351
|
+
url: fillApiPath(`${this.domain}/open-apis/application/v6/applications/:app_id/collaborators`, path),
|
|
4352
|
+
method: "GET",
|
|
4353
|
+
data,
|
|
4354
|
+
params,
|
|
4355
|
+
headers,
|
|
4356
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
4357
|
+
})
|
|
4358
|
+
.catch((e) => {
|
|
4359
|
+
this.logger.error(formatErrors(e));
|
|
4360
|
+
throw e;
|
|
4361
|
+
});
|
|
4362
|
+
}),
|
|
4363
|
+
/**
|
|
4364
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.collaborators&apiName=update&version=v6 click to debug }
|
|
4365
|
+
*
|
|
4366
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=update&project=application&resource=application.collaborators&version=v6 document }
|
|
4367
|
+
*/
|
|
4368
|
+
update: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
4369
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
4370
|
+
return this.httpInstance
|
|
4371
|
+
.request({
|
|
4372
|
+
url: fillApiPath(`${this.domain}/open-apis/application/v6/applications/:app_id/collaborators`, path),
|
|
4373
|
+
method: "PUT",
|
|
4374
|
+
data,
|
|
4375
|
+
params,
|
|
4376
|
+
headers,
|
|
4377
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
4378
|
+
})
|
|
4379
|
+
.catch((e) => {
|
|
4380
|
+
this.logger.error(formatErrors(e));
|
|
4381
|
+
throw e;
|
|
4382
|
+
});
|
|
4383
|
+
}),
|
|
4384
|
+
},
|
|
4265
4385
|
/**
|
|
4266
4386
|
* application.contacts_range
|
|
4267
4387
|
*/
|
|
@@ -4599,6 +4719,32 @@ class Client$_ extends Client$$ {
|
|
|
4599
4719
|
});
|
|
4600
4720
|
}),
|
|
4601
4721
|
},
|
|
4722
|
+
/**
|
|
4723
|
+
* application.owner
|
|
4724
|
+
*/
|
|
4725
|
+
applicationOwner: {
|
|
4726
|
+
/**
|
|
4727
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.owner&apiName=update&version=v6 click to debug }
|
|
4728
|
+
*
|
|
4729
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=update&project=application&resource=application.owner&version=v6 document }
|
|
4730
|
+
*/
|
|
4731
|
+
update: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
4732
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
4733
|
+
return this.httpInstance
|
|
4734
|
+
.request({
|
|
4735
|
+
url: fillApiPath(`${this.domain}/open-apis/application/v6/applications/:app_id/owner`, path),
|
|
4736
|
+
method: "PUT",
|
|
4737
|
+
data,
|
|
4738
|
+
params,
|
|
4739
|
+
headers,
|
|
4740
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
4741
|
+
})
|
|
4742
|
+
.catch((e) => {
|
|
4743
|
+
this.logger.error(formatErrors(e));
|
|
4744
|
+
throw e;
|
|
4745
|
+
});
|
|
4746
|
+
}),
|
|
4747
|
+
},
|
|
4602
4748
|
/**
|
|
4603
4749
|
* 事件
|
|
4604
4750
|
*/
|
|
@@ -5504,7 +5650,7 @@ class Client$Z extends Client$_ {
|
|
|
5504
5650
|
}),
|
|
5505
5651
|
},
|
|
5506
5652
|
/**
|
|
5507
|
-
*
|
|
5653
|
+
* 审批查询
|
|
5508
5654
|
*/
|
|
5509
5655
|
task: {
|
|
5510
5656
|
/**
|
|
@@ -6515,7 +6661,7 @@ class Client$Z extends Client$_ {
|
|
|
6515
6661
|
}),
|
|
6516
6662
|
},
|
|
6517
6663
|
/**
|
|
6518
|
-
*
|
|
6664
|
+
* 审批查询
|
|
6519
6665
|
*/
|
|
6520
6666
|
task: {
|
|
6521
6667
|
/**
|
|
@@ -7593,6 +7739,29 @@ class Client$Y extends Client$Z {
|
|
|
7593
7739
|
throw e;
|
|
7594
7740
|
});
|
|
7595
7741
|
}),
|
|
7742
|
+
/**
|
|
7743
|
+
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=user_flow&apiName=batch_del&version=v1 click to debug }
|
|
7744
|
+
*
|
|
7745
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=batch_del&project=attendance&resource=user_flow&version=v1 document }
|
|
7746
|
+
*
|
|
7747
|
+
* 批量删除流水
|
|
7748
|
+
*/
|
|
7749
|
+
batchDel: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
7750
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
7751
|
+
return this.httpInstance
|
|
7752
|
+
.request({
|
|
7753
|
+
url: fillApiPath(`${this.domain}/open-apis/attendance/v1/user_flows/batch_del`, path),
|
|
7754
|
+
method: "POST",
|
|
7755
|
+
data,
|
|
7756
|
+
params,
|
|
7757
|
+
headers,
|
|
7758
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
7759
|
+
})
|
|
7760
|
+
.catch((e) => {
|
|
7761
|
+
this.logger.error(formatErrors(e));
|
|
7762
|
+
throw e;
|
|
7763
|
+
});
|
|
7764
|
+
}),
|
|
7596
7765
|
/**
|
|
7597
7766
|
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=user_flow&apiName=get&version=v1 click to debug }
|
|
7598
7767
|
*
|
|
@@ -8794,6 +8963,29 @@ class Client$Y extends Client$Z {
|
|
|
8794
8963
|
throw e;
|
|
8795
8964
|
});
|
|
8796
8965
|
}),
|
|
8966
|
+
/**
|
|
8967
|
+
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=user_flow&apiName=batch_del&version=v1 click to debug }
|
|
8968
|
+
*
|
|
8969
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=batch_del&project=attendance&resource=user_flow&version=v1 document }
|
|
8970
|
+
*
|
|
8971
|
+
* 批量删除流水
|
|
8972
|
+
*/
|
|
8973
|
+
batchDel: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
8974
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
8975
|
+
return this.httpInstance
|
|
8976
|
+
.request({
|
|
8977
|
+
url: fillApiPath(`${this.domain}/open-apis/attendance/v1/user_flows/batch_del`, path),
|
|
8978
|
+
method: "POST",
|
|
8979
|
+
data,
|
|
8980
|
+
params,
|
|
8981
|
+
headers,
|
|
8982
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
8983
|
+
})
|
|
8984
|
+
.catch((e) => {
|
|
8985
|
+
this.logger.error(formatErrors(e));
|
|
8986
|
+
throw e;
|
|
8987
|
+
});
|
|
8988
|
+
}),
|
|
8797
8989
|
/**
|
|
8798
8990
|
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=user_flow&apiName=get&version=v1 click to debug }
|
|
8799
8991
|
*
|
|
@@ -32741,6 +32933,27 @@ class Client$J extends Client$K {
|
|
|
32741
32933
|
throw e;
|
|
32742
32934
|
});
|
|
32743
32935
|
}),
|
|
32936
|
+
/**
|
|
32937
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=workforce_plan_detail&apiName=batch_v2&version=v2 click to debug }
|
|
32938
|
+
*
|
|
32939
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=batch_v2&project=corehr&resource=workforce_plan_detail&version=v2 document }
|
|
32940
|
+
*/
|
|
32941
|
+
batchV2: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
32942
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
32943
|
+
return this.httpInstance
|
|
32944
|
+
.request({
|
|
32945
|
+
url: fillApiPath(`${this.domain}/open-apis/corehr/v2/workforce_plan_details/batch_v2`, path),
|
|
32946
|
+
method: "POST",
|
|
32947
|
+
data,
|
|
32948
|
+
params,
|
|
32949
|
+
headers,
|
|
32950
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
32951
|
+
})
|
|
32952
|
+
.catch((e) => {
|
|
32953
|
+
this.logger.error(formatErrors(e));
|
|
32954
|
+
throw e;
|
|
32955
|
+
});
|
|
32956
|
+
}),
|
|
32744
32957
|
},
|
|
32745
32958
|
/**
|
|
32746
32959
|
* workforce_plan_detail_row
|
|
@@ -34662,7 +34875,7 @@ class Client$E extends Client$F {
|
|
|
34662
34875
|
constructor() {
|
|
34663
34876
|
super(...arguments);
|
|
34664
34877
|
/**
|
|
34665
|
-
*
|
|
34878
|
+
* 云文档-文件管理
|
|
34666
34879
|
*/
|
|
34667
34880
|
this.drive = {
|
|
34668
34881
|
/**
|
|
@@ -35083,7 +35296,7 @@ class Client$E extends Client$F {
|
|
|
35083
35296
|
}),
|
|
35084
35297
|
},
|
|
35085
35298
|
/**
|
|
35086
|
-
*
|
|
35299
|
+
* 上传
|
|
35087
35300
|
*/
|
|
35088
35301
|
file: {
|
|
35089
35302
|
/**
|
|
@@ -35956,7 +36169,7 @@ class Client$E extends Client$F {
|
|
|
35956
36169
|
}),
|
|
35957
36170
|
},
|
|
35958
36171
|
/**
|
|
35959
|
-
*
|
|
36172
|
+
* 分片上传
|
|
35960
36173
|
*/
|
|
35961
36174
|
media: {
|
|
35962
36175
|
/**
|
|
@@ -36903,7 +37116,7 @@ class Client$E extends Client$F {
|
|
|
36903
37116
|
}),
|
|
36904
37117
|
},
|
|
36905
37118
|
/**
|
|
36906
|
-
*
|
|
37119
|
+
* 上传
|
|
36907
37120
|
*/
|
|
36908
37121
|
file: {
|
|
36909
37122
|
/**
|
|
@@ -37782,7 +37995,7 @@ class Client$E extends Client$F {
|
|
|
37782
37995
|
}),
|
|
37783
37996
|
},
|
|
37784
37997
|
/**
|
|
37785
|
-
*
|
|
37998
|
+
* 分片上传
|
|
37786
37999
|
*/
|
|
37787
38000
|
media: {
|
|
37788
38001
|
/**
|
|
@@ -42482,9 +42695,34 @@ class Client$u extends Client$v {
|
|
|
42482
42695
|
}),
|
|
42483
42696
|
},
|
|
42484
42697
|
/**
|
|
42485
|
-
*
|
|
42698
|
+
* 入职
|
|
42486
42699
|
*/
|
|
42487
42700
|
application: {
|
|
42701
|
+
/**
|
|
42702
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=application&apiName=cancel_onboard&version=v1 click to debug }
|
|
42703
|
+
*
|
|
42704
|
+
* {@link https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/cancel_onboard document }
|
|
42705
|
+
*
|
|
42706
|
+
* 取消候选人入职
|
|
42707
|
+
*
|
|
42708
|
+
* 操作候选人取消入职
|
|
42709
|
+
*/
|
|
42710
|
+
cancelOnboard: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
42711
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
42712
|
+
return this.httpInstance
|
|
42713
|
+
.request({
|
|
42714
|
+
url: fillApiPath(`${this.domain}/open-apis/hire/v1/applications/:application_id/cancel_onboard`, path),
|
|
42715
|
+
method: "POST",
|
|
42716
|
+
data,
|
|
42717
|
+
params,
|
|
42718
|
+
headers,
|
|
42719
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
42720
|
+
})
|
|
42721
|
+
.catch((e) => {
|
|
42722
|
+
this.logger.error(formatErrors(e));
|
|
42723
|
+
throw e;
|
|
42724
|
+
});
|
|
42725
|
+
}),
|
|
42488
42726
|
/**
|
|
42489
42727
|
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=application&apiName=create&version=v1 click to debug }
|
|
42490
42728
|
*
|
|
@@ -48485,9 +48723,34 @@ class Client$u extends Client$v {
|
|
|
48485
48723
|
}),
|
|
48486
48724
|
},
|
|
48487
48725
|
/**
|
|
48488
|
-
*
|
|
48726
|
+
* 入职
|
|
48489
48727
|
*/
|
|
48490
48728
|
application: {
|
|
48729
|
+
/**
|
|
48730
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=application&apiName=cancel_onboard&version=v1 click to debug }
|
|
48731
|
+
*
|
|
48732
|
+
* {@link https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/cancel_onboard document }
|
|
48733
|
+
*
|
|
48734
|
+
* 取消候选人入职
|
|
48735
|
+
*
|
|
48736
|
+
* 操作候选人取消入职
|
|
48737
|
+
*/
|
|
48738
|
+
cancelOnboard: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
48739
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
48740
|
+
return this.httpInstance
|
|
48741
|
+
.request({
|
|
48742
|
+
url: fillApiPath(`${this.domain}/open-apis/hire/v1/applications/:application_id/cancel_onboard`, path),
|
|
48743
|
+
method: "POST",
|
|
48744
|
+
data,
|
|
48745
|
+
params,
|
|
48746
|
+
headers,
|
|
48747
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
48748
|
+
})
|
|
48749
|
+
.catch((e) => {
|
|
48750
|
+
this.logger.error(formatErrors(e));
|
|
48751
|
+
throw e;
|
|
48752
|
+
});
|
|
48753
|
+
}),
|
|
48491
48754
|
/**
|
|
48492
48755
|
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=application&apiName=create&version=v1 click to debug }
|
|
48493
48756
|
*
|
|
@@ -55759,7 +56022,7 @@ class Client$s extends Client$t {
|
|
|
55759
56022
|
}),
|
|
55760
56023
|
},
|
|
55761
56024
|
/**
|
|
55762
|
-
*
|
|
56025
|
+
* 消息加急
|
|
55763
56026
|
*/
|
|
55764
56027
|
message: {
|
|
55765
56028
|
/**
|
|
@@ -57962,7 +58225,7 @@ class Client$s extends Client$t {
|
|
|
57962
58225
|
}),
|
|
57963
58226
|
},
|
|
57964
58227
|
/**
|
|
57965
|
-
*
|
|
58228
|
+
* 消息加急
|
|
57966
58229
|
*/
|
|
57967
58230
|
message: {
|
|
57968
58231
|
/**
|
|
@@ -65893,7 +66156,7 @@ class Client$c extends Client$d {
|
|
|
65893
66156
|
}),
|
|
65894
66157
|
},
|
|
65895
66158
|
/**
|
|
65896
|
-
*
|
|
66159
|
+
* 工作表
|
|
65897
66160
|
*/
|
|
65898
66161
|
spreadsheetSheet: {
|
|
65899
66162
|
/**
|
|
@@ -66623,7 +66886,7 @@ class Client$c extends Client$d {
|
|
|
66623
66886
|
}),
|
|
66624
66887
|
},
|
|
66625
66888
|
/**
|
|
66626
|
-
*
|
|
66889
|
+
* 工作表
|
|
66627
66890
|
*/
|
|
66628
66891
|
spreadsheetSheet: {
|
|
66629
66892
|
/**
|