@larksuiteoapi/node-sdk 1.39.0 → 1.40.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 +339 -12
- package/lib/index.js +339 -12
- package/package.json +1 -1
- package/types/index.d.ts +729 -14
package/lib/index.js
CHANGED
|
@@ -1322,7 +1322,7 @@ class Client$_ extends Client$$ {
|
|
|
1322
1322
|
constructor() {
|
|
1323
1323
|
super(...arguments);
|
|
1324
1324
|
/**
|
|
1325
|
-
*
|
|
1325
|
+
* 管理后台-密码
|
|
1326
1326
|
*/
|
|
1327
1327
|
this.admin = {
|
|
1328
1328
|
/**
|
|
@@ -3546,6 +3546,81 @@ class Client$Y extends Client$Z {
|
|
|
3546
3546
|
throw e;
|
|
3547
3547
|
});
|
|
3548
3548
|
}),
|
|
3549
|
+
listWithIterator: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
3550
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
3551
|
+
const sendRequest = (innerPayload) => __awaiter(this, void 0, void 0, function* () {
|
|
3552
|
+
const res = yield this.httpInstance
|
|
3553
|
+
.request({
|
|
3554
|
+
url: fillApiPath(`${this.domain}/open-apis/application/v6/applications`, path),
|
|
3555
|
+
method: "GET",
|
|
3556
|
+
headers: pickBy__default["default"](innerPayload.headers, identity__default["default"]),
|
|
3557
|
+
params: pickBy__default["default"](innerPayload.params, identity__default["default"]),
|
|
3558
|
+
data,
|
|
3559
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
3560
|
+
})
|
|
3561
|
+
.catch((e) => {
|
|
3562
|
+
this.logger.error(formatErrors(e));
|
|
3563
|
+
});
|
|
3564
|
+
return res;
|
|
3565
|
+
});
|
|
3566
|
+
const Iterable = {
|
|
3567
|
+
[Symbol.asyncIterator]() {
|
|
3568
|
+
return __asyncGenerator(this, arguments, function* _a() {
|
|
3569
|
+
let hasMore = true;
|
|
3570
|
+
let pageToken;
|
|
3571
|
+
while (hasMore) {
|
|
3572
|
+
try {
|
|
3573
|
+
const res = yield __await(sendRequest({
|
|
3574
|
+
headers,
|
|
3575
|
+
params: Object.assign(Object.assign({}, params), { page_token: pageToken }),
|
|
3576
|
+
data,
|
|
3577
|
+
}));
|
|
3578
|
+
const _b = get__default["default"](res, "data") || {}, {
|
|
3579
|
+
// @ts-ignore
|
|
3580
|
+
has_more,
|
|
3581
|
+
// @ts-ignore
|
|
3582
|
+
page_token,
|
|
3583
|
+
// @ts-ignore
|
|
3584
|
+
next_page_token } = _b, rest = __rest(_b, ["has_more", "page_token", "next_page_token"]);
|
|
3585
|
+
yield yield __await(rest);
|
|
3586
|
+
hasMore = Boolean(has_more);
|
|
3587
|
+
pageToken = page_token || next_page_token;
|
|
3588
|
+
}
|
|
3589
|
+
catch (e) {
|
|
3590
|
+
yield yield __await(null);
|
|
3591
|
+
break;
|
|
3592
|
+
}
|
|
3593
|
+
}
|
|
3594
|
+
});
|
|
3595
|
+
},
|
|
3596
|
+
};
|
|
3597
|
+
return Iterable;
|
|
3598
|
+
}),
|
|
3599
|
+
/**
|
|
3600
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application&apiName=list&version=v6 click to debug }
|
|
3601
|
+
*
|
|
3602
|
+
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/application-v6/application/list document }
|
|
3603
|
+
*
|
|
3604
|
+
* 获取企业安装的应用
|
|
3605
|
+
*
|
|
3606
|
+
* 该接口用于查询企业安装的应用列表,只能被企业自建应用调用。
|
|
3607
|
+
*/
|
|
3608
|
+
list: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
3609
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
3610
|
+
return this.httpInstance
|
|
3611
|
+
.request({
|
|
3612
|
+
url: fillApiPath(`${this.domain}/open-apis/application/v6/applications`, path),
|
|
3613
|
+
method: "GET",
|
|
3614
|
+
data,
|
|
3615
|
+
params,
|
|
3616
|
+
headers,
|
|
3617
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
3618
|
+
})
|
|
3619
|
+
.catch((e) => {
|
|
3620
|
+
this.logger.error(formatErrors(e));
|
|
3621
|
+
throw e;
|
|
3622
|
+
});
|
|
3623
|
+
}),
|
|
3549
3624
|
/**
|
|
3550
3625
|
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application&apiName=patch&version=v6 click to debug }
|
|
3551
3626
|
*
|
|
@@ -4252,6 +4327,83 @@ class Client$Y extends Client$Z {
|
|
|
4252
4327
|
throw e;
|
|
4253
4328
|
});
|
|
4254
4329
|
}),
|
|
4330
|
+
listWithIterator: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
4331
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
4332
|
+
const sendRequest = (innerPayload) => __awaiter(this, void 0, void 0, function* () {
|
|
4333
|
+
const res = yield this.httpInstance
|
|
4334
|
+
.request({
|
|
4335
|
+
url: fillApiPath(`${this.domain}/open-apis/application/v6/applications`, path),
|
|
4336
|
+
method: "GET",
|
|
4337
|
+
headers: pickBy__default["default"](innerPayload.headers, identity__default["default"]),
|
|
4338
|
+
params: pickBy__default["default"](innerPayload.params, identity__default["default"]),
|
|
4339
|
+
data,
|
|
4340
|
+
paramsSerializer: (params) => qs.stringify(params, {
|
|
4341
|
+
arrayFormat: "repeat",
|
|
4342
|
+
}),
|
|
4343
|
+
})
|
|
4344
|
+
.catch((e) => {
|
|
4345
|
+
this.logger.error(formatErrors(e));
|
|
4346
|
+
});
|
|
4347
|
+
return res;
|
|
4348
|
+
});
|
|
4349
|
+
const Iterable = {
|
|
4350
|
+
[Symbol.asyncIterator]() {
|
|
4351
|
+
return __asyncGenerator(this, arguments, function* _a() {
|
|
4352
|
+
let hasMore = true;
|
|
4353
|
+
let pageToken;
|
|
4354
|
+
while (hasMore) {
|
|
4355
|
+
try {
|
|
4356
|
+
const res = yield __await(sendRequest({
|
|
4357
|
+
headers,
|
|
4358
|
+
params: Object.assign(Object.assign({}, params), { page_token: pageToken }),
|
|
4359
|
+
data,
|
|
4360
|
+
}));
|
|
4361
|
+
const _b = get__default["default"](res, "data") || {}, {
|
|
4362
|
+
// @ts-ignore
|
|
4363
|
+
has_more,
|
|
4364
|
+
// @ts-ignore
|
|
4365
|
+
page_token,
|
|
4366
|
+
// @ts-ignore
|
|
4367
|
+
next_page_token } = _b, rest = __rest(_b, ["has_more", "page_token", "next_page_token"]);
|
|
4368
|
+
yield yield __await(rest);
|
|
4369
|
+
hasMore = Boolean(has_more);
|
|
4370
|
+
pageToken = page_token || next_page_token;
|
|
4371
|
+
}
|
|
4372
|
+
catch (e) {
|
|
4373
|
+
yield yield __await(null);
|
|
4374
|
+
break;
|
|
4375
|
+
}
|
|
4376
|
+
}
|
|
4377
|
+
});
|
|
4378
|
+
},
|
|
4379
|
+
};
|
|
4380
|
+
return Iterable;
|
|
4381
|
+
}),
|
|
4382
|
+
/**
|
|
4383
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application&apiName=list&version=v6 click to debug }
|
|
4384
|
+
*
|
|
4385
|
+
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/application-v6/application/list document }
|
|
4386
|
+
*
|
|
4387
|
+
* 获取企业安装的应用
|
|
4388
|
+
*
|
|
4389
|
+
* 该接口用于查询企业安装的应用列表,只能被企业自建应用调用。
|
|
4390
|
+
*/
|
|
4391
|
+
list: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
4392
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
4393
|
+
return this.httpInstance
|
|
4394
|
+
.request({
|
|
4395
|
+
url: fillApiPath(`${this.domain}/open-apis/application/v6/applications`, path),
|
|
4396
|
+
method: "GET",
|
|
4397
|
+
data,
|
|
4398
|
+
params,
|
|
4399
|
+
headers,
|
|
4400
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
4401
|
+
})
|
|
4402
|
+
.catch((e) => {
|
|
4403
|
+
this.logger.error(formatErrors(e));
|
|
4404
|
+
throw e;
|
|
4405
|
+
});
|
|
4406
|
+
}),
|
|
4255
4407
|
/**
|
|
4256
4408
|
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application&apiName=patch&version=v6 click to debug }
|
|
4257
4409
|
*
|
|
@@ -4544,7 +4696,7 @@ class Client$X extends Client$Y {
|
|
|
4544
4696
|
*/
|
|
4545
4697
|
this.approval = {
|
|
4546
4698
|
/**
|
|
4547
|
-
*
|
|
4699
|
+
* 原生审批定义
|
|
4548
4700
|
*/
|
|
4549
4701
|
approval: {
|
|
4550
4702
|
/**
|
|
@@ -5341,7 +5493,7 @@ class Client$X extends Client$Y {
|
|
|
5341
5493
|
}),
|
|
5342
5494
|
},
|
|
5343
5495
|
/**
|
|
5344
|
-
*
|
|
5496
|
+
* 原生审批任务
|
|
5345
5497
|
*/
|
|
5346
5498
|
task: {
|
|
5347
5499
|
/**
|
|
@@ -5547,7 +5699,7 @@ class Client$X extends Client$Y {
|
|
|
5547
5699
|
},
|
|
5548
5700
|
v4: {
|
|
5549
5701
|
/**
|
|
5550
|
-
*
|
|
5702
|
+
* 原生审批定义
|
|
5551
5703
|
*/
|
|
5552
5704
|
approval: {
|
|
5553
5705
|
/**
|
|
@@ -6352,7 +6504,7 @@ class Client$X extends Client$Y {
|
|
|
6352
6504
|
}),
|
|
6353
6505
|
},
|
|
6354
6506
|
/**
|
|
6355
|
-
*
|
|
6507
|
+
* 原生审批任务
|
|
6356
6508
|
*/
|
|
6357
6509
|
task: {
|
|
6358
6510
|
/**
|
|
@@ -17287,7 +17439,7 @@ class Client$L extends Client$M {
|
|
|
17287
17439
|
constructor() {
|
|
17288
17440
|
super(...arguments);
|
|
17289
17441
|
/**
|
|
17290
|
-
*
|
|
17442
|
+
* 通讯录
|
|
17291
17443
|
*/
|
|
17292
17444
|
this.contact = {
|
|
17293
17445
|
/**
|
|
@@ -29755,6 +29907,155 @@ class Client$I extends Client$J {
|
|
|
29755
29907
|
});
|
|
29756
29908
|
}),
|
|
29757
29909
|
},
|
|
29910
|
+
/**
|
|
29911
|
+
* employees.additional_job
|
|
29912
|
+
*/
|
|
29913
|
+
employeesAdditionalJob: {
|
|
29914
|
+
batchWithIterator: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
29915
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
29916
|
+
const sendRequest = (innerPayload) => __awaiter(this, void 0, void 0, function* () {
|
|
29917
|
+
const res = yield this.httpInstance
|
|
29918
|
+
.request({
|
|
29919
|
+
url: fillApiPath(`${this.domain}/open-apis/corehr/v2/employees/additional_jobs/batch`, path),
|
|
29920
|
+
method: "POST",
|
|
29921
|
+
headers: pickBy__default["default"](innerPayload.headers, identity__default["default"]),
|
|
29922
|
+
params: pickBy__default["default"](innerPayload.params, identity__default["default"]),
|
|
29923
|
+
data,
|
|
29924
|
+
paramsSerializer: (params) => qs.stringify(params, {
|
|
29925
|
+
arrayFormat: "repeat",
|
|
29926
|
+
}),
|
|
29927
|
+
})
|
|
29928
|
+
.catch((e) => {
|
|
29929
|
+
this.logger.error(formatErrors(e));
|
|
29930
|
+
});
|
|
29931
|
+
return res;
|
|
29932
|
+
});
|
|
29933
|
+
const Iterable = {
|
|
29934
|
+
[Symbol.asyncIterator]() {
|
|
29935
|
+
return __asyncGenerator(this, arguments, function* _a() {
|
|
29936
|
+
let hasMore = true;
|
|
29937
|
+
let pageToken;
|
|
29938
|
+
while (hasMore) {
|
|
29939
|
+
try {
|
|
29940
|
+
const res = yield __await(sendRequest({
|
|
29941
|
+
headers,
|
|
29942
|
+
params: Object.assign(Object.assign({}, params), { page_token: pageToken }),
|
|
29943
|
+
data,
|
|
29944
|
+
}));
|
|
29945
|
+
const _b = get__default["default"](res, "data") || {}, {
|
|
29946
|
+
// @ts-ignore
|
|
29947
|
+
has_more,
|
|
29948
|
+
// @ts-ignore
|
|
29949
|
+
page_token,
|
|
29950
|
+
// @ts-ignore
|
|
29951
|
+
next_page_token } = _b, rest = __rest(_b, ["has_more", "page_token", "next_page_token"]);
|
|
29952
|
+
yield yield __await(rest);
|
|
29953
|
+
hasMore = Boolean(has_more);
|
|
29954
|
+
pageToken = page_token || next_page_token;
|
|
29955
|
+
}
|
|
29956
|
+
catch (e) {
|
|
29957
|
+
yield yield __await(null);
|
|
29958
|
+
break;
|
|
29959
|
+
}
|
|
29960
|
+
}
|
|
29961
|
+
});
|
|
29962
|
+
},
|
|
29963
|
+
};
|
|
29964
|
+
return Iterable;
|
|
29965
|
+
}),
|
|
29966
|
+
/**
|
|
29967
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=employees.additional_job&apiName=batch&version=v2 click to debug }
|
|
29968
|
+
*
|
|
29969
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=batch&project=corehr&resource=employees.additional_job&version=v2 document }
|
|
29970
|
+
*
|
|
29971
|
+
* 批量查询兼职信息
|
|
29972
|
+
*/
|
|
29973
|
+
batch: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
29974
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
29975
|
+
return this.httpInstance
|
|
29976
|
+
.request({
|
|
29977
|
+
url: fillApiPath(`${this.domain}/open-apis/corehr/v2/employees/additional_jobs/batch`, path),
|
|
29978
|
+
method: "POST",
|
|
29979
|
+
data,
|
|
29980
|
+
params,
|
|
29981
|
+
headers,
|
|
29982
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
29983
|
+
})
|
|
29984
|
+
.catch((e) => {
|
|
29985
|
+
this.logger.error(formatErrors(e));
|
|
29986
|
+
throw e;
|
|
29987
|
+
});
|
|
29988
|
+
}),
|
|
29989
|
+
/**
|
|
29990
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=employees.additional_job&apiName=create&version=v2 click to debug }
|
|
29991
|
+
*
|
|
29992
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=create&project=corehr&resource=employees.additional_job&version=v2 document }
|
|
29993
|
+
*
|
|
29994
|
+
* 创建兼职
|
|
29995
|
+
*/
|
|
29996
|
+
create: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
29997
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
29998
|
+
return this.httpInstance
|
|
29999
|
+
.request({
|
|
30000
|
+
url: fillApiPath(`${this.domain}/open-apis/corehr/v2/employees/additional_jobs`, path),
|
|
30001
|
+
method: "POST",
|
|
30002
|
+
data,
|
|
30003
|
+
params,
|
|
30004
|
+
headers,
|
|
30005
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
30006
|
+
})
|
|
30007
|
+
.catch((e) => {
|
|
30008
|
+
this.logger.error(formatErrors(e));
|
|
30009
|
+
throw e;
|
|
30010
|
+
});
|
|
30011
|
+
}),
|
|
30012
|
+
/**
|
|
30013
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=employees.additional_job&apiName=delete&version=v2 click to debug }
|
|
30014
|
+
*
|
|
30015
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=delete&project=corehr&resource=employees.additional_job&version=v2 document }
|
|
30016
|
+
*
|
|
30017
|
+
* 删除兼职
|
|
30018
|
+
*/
|
|
30019
|
+
delete: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
30020
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
30021
|
+
return this.httpInstance
|
|
30022
|
+
.request({
|
|
30023
|
+
url: fillApiPath(`${this.domain}/open-apis/corehr/v2/employees/additional_jobs/:additional_job_id`, path),
|
|
30024
|
+
method: "DELETE",
|
|
30025
|
+
data,
|
|
30026
|
+
params,
|
|
30027
|
+
headers,
|
|
30028
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
30029
|
+
})
|
|
30030
|
+
.catch((e) => {
|
|
30031
|
+
this.logger.error(formatErrors(e));
|
|
30032
|
+
throw e;
|
|
30033
|
+
});
|
|
30034
|
+
}),
|
|
30035
|
+
/**
|
|
30036
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=employees.additional_job&apiName=patch&version=v2 click to debug }
|
|
30037
|
+
*
|
|
30038
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=patch&project=corehr&resource=employees.additional_job&version=v2 document }
|
|
30039
|
+
*
|
|
30040
|
+
* 更新兼职
|
|
30041
|
+
*/
|
|
30042
|
+
patch: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
30043
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
30044
|
+
return this.httpInstance
|
|
30045
|
+
.request({
|
|
30046
|
+
url: fillApiPath(`${this.domain}/open-apis/corehr/v2/employees/additional_jobs/:additional_job_id`, path),
|
|
30047
|
+
method: "PATCH",
|
|
30048
|
+
data,
|
|
30049
|
+
params,
|
|
30050
|
+
headers,
|
|
30051
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
30052
|
+
})
|
|
30053
|
+
.catch((e) => {
|
|
30054
|
+
this.logger.error(formatErrors(e));
|
|
30055
|
+
throw e;
|
|
30056
|
+
});
|
|
30057
|
+
}),
|
|
30058
|
+
},
|
|
29758
30059
|
/**
|
|
29759
30060
|
* employees.bp
|
|
29760
30061
|
*/
|
|
@@ -30260,6 +30561,32 @@ class Client$I extends Client$J {
|
|
|
30260
30561
|
});
|
|
30261
30562
|
}),
|
|
30262
30563
|
},
|
|
30564
|
+
/**
|
|
30565
|
+
* offboarding
|
|
30566
|
+
*/
|
|
30567
|
+
offboarding: {
|
|
30568
|
+
/**
|
|
30569
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=offboarding&apiName=submit_v2&version=v2 click to debug }
|
|
30570
|
+
*
|
|
30571
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=submit_v2&project=corehr&resource=offboarding&version=v2 document }
|
|
30572
|
+
*/
|
|
30573
|
+
submitV2: (payload, options) => __awaiter(this, void 0, void 0, function* () {
|
|
30574
|
+
const { headers, params, data, path } = yield this.formatPayload(payload, options);
|
|
30575
|
+
return this.httpInstance
|
|
30576
|
+
.request({
|
|
30577
|
+
url: fillApiPath(`${this.domain}/open-apis/corehr/v2/offboardings/submit_v2`, path),
|
|
30578
|
+
method: "POST",
|
|
30579
|
+
data,
|
|
30580
|
+
params,
|
|
30581
|
+
headers,
|
|
30582
|
+
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "repeat" }),
|
|
30583
|
+
})
|
|
30584
|
+
.catch((e) => {
|
|
30585
|
+
this.logger.error(formatErrors(e));
|
|
30586
|
+
throw e;
|
|
30587
|
+
});
|
|
30588
|
+
}),
|
|
30589
|
+
},
|
|
30263
30590
|
/**
|
|
30264
30591
|
* person
|
|
30265
30592
|
*/
|
|
@@ -32867,7 +33194,7 @@ class Client$E extends Client$F {
|
|
|
32867
33194
|
}),
|
|
32868
33195
|
},
|
|
32869
33196
|
/**
|
|
32870
|
-
*
|
|
33197
|
+
* 文件
|
|
32871
33198
|
*/
|
|
32872
33199
|
file: {
|
|
32873
33200
|
/**
|
|
@@ -34687,7 +35014,7 @@ class Client$E extends Client$F {
|
|
|
34687
35014
|
}),
|
|
34688
35015
|
},
|
|
34689
35016
|
/**
|
|
34690
|
-
*
|
|
35017
|
+
* 文件
|
|
34691
35018
|
*/
|
|
34692
35019
|
file: {
|
|
34693
35020
|
/**
|
|
@@ -40123,7 +40450,7 @@ class Client$u extends Client$v {
|
|
|
40123
40450
|
}),
|
|
40124
40451
|
},
|
|
40125
40452
|
/**
|
|
40126
|
-
*
|
|
40453
|
+
* 入职
|
|
40127
40454
|
*/
|
|
40128
40455
|
application: {
|
|
40129
40456
|
/**
|
|
@@ -45546,7 +45873,7 @@ class Client$u extends Client$v {
|
|
|
45546
45873
|
}),
|
|
45547
45874
|
},
|
|
45548
45875
|
/**
|
|
45549
|
-
*
|
|
45876
|
+
* 入职
|
|
45550
45877
|
*/
|
|
45551
45878
|
application: {
|
|
45552
45879
|
/**
|
|
@@ -52297,7 +52624,7 @@ class Client$s extends Client$t {
|
|
|
52297
52624
|
}),
|
|
52298
52625
|
},
|
|
52299
52626
|
/**
|
|
52300
|
-
*
|
|
52627
|
+
* 消息加急
|
|
52301
52628
|
*/
|
|
52302
52629
|
message: {
|
|
52303
52630
|
/**
|
|
@@ -54500,7 +54827,7 @@ class Client$s extends Client$t {
|
|
|
54500
54827
|
}),
|
|
54501
54828
|
},
|
|
54502
54829
|
/**
|
|
54503
|
-
*
|
|
54830
|
+
* 消息加急
|
|
54504
54831
|
*/
|
|
54505
54832
|
message: {
|
|
54506
54833
|
/**
|