@perk-net/perk-pushplus-sdk 1.1.0 → 1.2.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/README.md +28 -1
- package/dist/index.cjs +246 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +314 -4
- package/dist/index.d.ts +314 -4
- package/dist/index.global.js +246 -1
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +240 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/api/doc-api.ts +77 -0
- package/src/api/excel-api.ts +114 -0
- package/src/api/form-api.ts +92 -0
- package/src/client.ts +9 -0
- package/src/config.ts +1 -1
- package/src/enums.ts +41 -0
- package/src/index.ts +25 -0
- package/src/models.ts +196 -2
package/dist/index.d.cts
CHANGED
|
@@ -178,7 +178,11 @@ declare enum Template {
|
|
|
178
178
|
/** 支付成功通知模板。 */
|
|
179
179
|
PAY = "pay",
|
|
180
180
|
/** 表单格式模板;发送时需传 pushId(表单编码)。 */
|
|
181
|
-
FORM = "form"
|
|
181
|
+
FORM = "form",
|
|
182
|
+
/** 文档格式模板(push 文档);发送时需传 pushId。 */
|
|
183
|
+
DOC = "doc",
|
|
184
|
+
/** 表格格式模板(push 表格);发送时需传 pushId。 */
|
|
185
|
+
EXCEL = "excel"
|
|
182
186
|
}
|
|
183
187
|
/**
|
|
184
188
|
* 消息投递状态。
|
|
@@ -223,6 +227,35 @@ declare enum WebhookType {
|
|
|
223
227
|
CUSTOM = 12
|
|
224
228
|
}
|
|
225
229
|
declare const WebhookTypeDescription: Record<number, string>;
|
|
230
|
+
/**
|
|
231
|
+
* push 表单状态。
|
|
232
|
+
*
|
|
233
|
+
* 0-草稿,1-收集中,2-已停止。
|
|
234
|
+
*/
|
|
235
|
+
declare enum FormStatus {
|
|
236
|
+
DRAFT = 0,
|
|
237
|
+
COLLECTING = 1,
|
|
238
|
+
STOPPED = 2
|
|
239
|
+
}
|
|
240
|
+
declare const FormStatusDescription: Record<FormStatus, string>;
|
|
241
|
+
/**
|
|
242
|
+
* push 文档 / 表格分享权限。
|
|
243
|
+
*
|
|
244
|
+
* 0-关闭分享,1-开启分享(仅可查看)。
|
|
245
|
+
*/
|
|
246
|
+
declare enum SharePerm {
|
|
247
|
+
CLOSED = 0,
|
|
248
|
+
VIEW = 1
|
|
249
|
+
}
|
|
250
|
+
/**
|
|
251
|
+
* push 文档 / 表格打开分享页是否需要登录。
|
|
252
|
+
*
|
|
253
|
+
* 0-免登录,1-需登录。
|
|
254
|
+
*/
|
|
255
|
+
declare enum ShareLogin {
|
|
256
|
+
ANONYMOUS = 0,
|
|
257
|
+
REQUIRED = 1
|
|
258
|
+
}
|
|
226
259
|
/**
|
|
227
260
|
* PushPlus 接口业务返回码语义。
|
|
228
261
|
*
|
|
@@ -310,7 +343,7 @@ interface SendRequest {
|
|
|
310
343
|
to?: string;
|
|
311
344
|
/** 预处理编码(仅会员)。 */
|
|
312
345
|
pre?: string;
|
|
313
|
-
/** push
|
|
346
|
+
/** push 编码;template 为 form/doc/excel 时必传。 */
|
|
314
347
|
pushId?: string;
|
|
315
348
|
}
|
|
316
349
|
declare class SendRequestBuilder {
|
|
@@ -350,7 +383,7 @@ interface BatchSendRequest {
|
|
|
350
383
|
timestamp?: number;
|
|
351
384
|
to?: string;
|
|
352
385
|
pre?: string;
|
|
353
|
-
/** push
|
|
386
|
+
/** push 编码;template 为 form/doc/excel 时必传。 */
|
|
354
387
|
pushId?: string;
|
|
355
388
|
}
|
|
356
389
|
/**
|
|
@@ -449,6 +482,13 @@ interface AccessKeyResult {
|
|
|
449
482
|
/** 过期时间(单位秒)。 */
|
|
450
483
|
expiresIn?: number;
|
|
451
484
|
}
|
|
485
|
+
/** 会员信息。 */
|
|
486
|
+
interface VipInfo {
|
|
487
|
+
/** 是否会员;0-否,1-是。 */
|
|
488
|
+
isVip?: number;
|
|
489
|
+
/** 会员到期日。 */
|
|
490
|
+
lastDay?: string;
|
|
491
|
+
}
|
|
452
492
|
interface UserInfo {
|
|
453
493
|
openId?: string;
|
|
454
494
|
unionId?: string;
|
|
@@ -461,6 +501,10 @@ interface UserInfo {
|
|
|
461
501
|
emailStatus?: number;
|
|
462
502
|
birthday?: string;
|
|
463
503
|
points?: number;
|
|
504
|
+
/** 会员信息。 */
|
|
505
|
+
vipInfo?: VipInfo;
|
|
506
|
+
/** 实名认证状态;0-未实名,1-已实名。 */
|
|
507
|
+
verifyStatus?: number;
|
|
464
508
|
}
|
|
465
509
|
interface SendCount {
|
|
466
510
|
wechatSendCount?: number;
|
|
@@ -799,6 +843,167 @@ interface ImageItem {
|
|
|
799
843
|
/** 创建时间。 */
|
|
800
844
|
createTime?: string;
|
|
801
845
|
}
|
|
846
|
+
/** 我的表单分页查询。 */
|
|
847
|
+
interface FormListQuery {
|
|
848
|
+
/** 页码,从 1 开始。 */
|
|
849
|
+
pageNum?: number;
|
|
850
|
+
/** 每页条数。 */
|
|
851
|
+
pageSize?: number;
|
|
852
|
+
/** 按标题关键词搜索。 */
|
|
853
|
+
keyword?: string;
|
|
854
|
+
/** 表单状态:0草稿 / 1收集中 / 2已停止。 */
|
|
855
|
+
status?: number;
|
|
856
|
+
}
|
|
857
|
+
/** 表单封面页配置。 */
|
|
858
|
+
interface FormCover {
|
|
859
|
+
enabled?: boolean;
|
|
860
|
+
image?: string;
|
|
861
|
+
buttonText?: string;
|
|
862
|
+
}
|
|
863
|
+
/** 表单主题外观。 */
|
|
864
|
+
interface FormTheme {
|
|
865
|
+
primaryColor?: string;
|
|
866
|
+
backgroundColor?: string;
|
|
867
|
+
headerImage?: string;
|
|
868
|
+
backgroundImage?: string;
|
|
869
|
+
cover?: FormCover;
|
|
870
|
+
}
|
|
871
|
+
/** 表单收集 / 展示设置。 */
|
|
872
|
+
interface FormSettings {
|
|
873
|
+
endTime?: string | null;
|
|
874
|
+
maxResponses?: number | null;
|
|
875
|
+
oncePerUser?: boolean;
|
|
876
|
+
allowAnonymous?: boolean;
|
|
877
|
+
password?: string;
|
|
878
|
+
showQuestionNumber?: boolean;
|
|
879
|
+
onePerPage?: boolean;
|
|
880
|
+
showPrevButton?: boolean;
|
|
881
|
+
hideTitle?: boolean;
|
|
882
|
+
hideCopyright?: boolean;
|
|
883
|
+
hideAd?: boolean;
|
|
884
|
+
showOutline?: boolean;
|
|
885
|
+
thankText?: string;
|
|
886
|
+
redirectEnabled?: boolean;
|
|
887
|
+
redirectUrl?: string;
|
|
888
|
+
allowEdit?: boolean;
|
|
889
|
+
}
|
|
890
|
+
/**
|
|
891
|
+
* 表单题目。不同题型字段不同,除常用字段外可携带任意扩展属性。
|
|
892
|
+
*
|
|
893
|
+
* type 常用取值:input / textarea / radio / checkbox / select / number / date / rate 等。
|
|
894
|
+
*/
|
|
895
|
+
interface FormItem {
|
|
896
|
+
id?: string;
|
|
897
|
+
type?: string;
|
|
898
|
+
alias?: string;
|
|
899
|
+
label?: string;
|
|
900
|
+
description?: string;
|
|
901
|
+
required?: boolean;
|
|
902
|
+
placeholder?: string;
|
|
903
|
+
options?: unknown[];
|
|
904
|
+
rows?: unknown[];
|
|
905
|
+
columns?: unknown[];
|
|
906
|
+
allowOther?: boolean;
|
|
907
|
+
[key: string]: unknown;
|
|
908
|
+
}
|
|
909
|
+
/** 表单列表项 / 创建、复制结果(不含题目明细)。 */
|
|
910
|
+
interface FormListItem {
|
|
911
|
+
id?: number;
|
|
912
|
+
formCode?: string;
|
|
913
|
+
fillUrl?: string;
|
|
914
|
+
title?: string;
|
|
915
|
+
description?: string;
|
|
916
|
+
status?: number;
|
|
917
|
+
responseCount?: number;
|
|
918
|
+
publishTime?: string;
|
|
919
|
+
createTime?: string;
|
|
920
|
+
updateTime?: string;
|
|
921
|
+
}
|
|
922
|
+
/** 保存表单设计请求。 */
|
|
923
|
+
interface FormSaveRequest {
|
|
924
|
+
id: number;
|
|
925
|
+
title: string;
|
|
926
|
+
description?: string;
|
|
927
|
+
items?: FormItem[];
|
|
928
|
+
theme?: FormTheme;
|
|
929
|
+
settings?: FormSettings;
|
|
930
|
+
}
|
|
931
|
+
/** 表单详情(含草稿题目、主题、设置)。 */
|
|
932
|
+
interface FormDetail extends FormListItem {
|
|
933
|
+
items?: FormItem[];
|
|
934
|
+
theme?: FormTheme;
|
|
935
|
+
settings?: FormSettings;
|
|
936
|
+
publishDirty?: boolean;
|
|
937
|
+
}
|
|
938
|
+
/** 草稿题目与发布快照差异。 */
|
|
939
|
+
interface FormPublishDiff {
|
|
940
|
+
dirty?: boolean;
|
|
941
|
+
breaking?: boolean;
|
|
942
|
+
responseCount?: number;
|
|
943
|
+
added?: string[];
|
|
944
|
+
removed?: string[];
|
|
945
|
+
typeChanged?: string[];
|
|
946
|
+
optionChanged?: string[];
|
|
947
|
+
}
|
|
948
|
+
/** 发布表单结果。 */
|
|
949
|
+
interface FormPublishResult {
|
|
950
|
+
id?: number;
|
|
951
|
+
formCode?: string;
|
|
952
|
+
fillUrl?: string;
|
|
953
|
+
title?: string;
|
|
954
|
+
status?: number;
|
|
955
|
+
previousStatus?: number;
|
|
956
|
+
publishDirty?: boolean;
|
|
957
|
+
publishTime?: string;
|
|
958
|
+
}
|
|
959
|
+
/** 文档 / 表格分页查询。 */
|
|
960
|
+
interface DocListQuery {
|
|
961
|
+
pageNum?: number;
|
|
962
|
+
pageSize?: number;
|
|
963
|
+
keyword?: string;
|
|
964
|
+
/** true 时仅返回已开启分享的记录。 */
|
|
965
|
+
shareEnabled?: boolean;
|
|
966
|
+
}
|
|
967
|
+
/** 文档 / 表格列表项。 */
|
|
968
|
+
interface DocListItem {
|
|
969
|
+
docCode?: string;
|
|
970
|
+
shareUrl?: string;
|
|
971
|
+
title?: string;
|
|
972
|
+
sharePerm?: number;
|
|
973
|
+
shareLogin?: number;
|
|
974
|
+
perm?: number;
|
|
975
|
+
published?: boolean;
|
|
976
|
+
publishTime?: string;
|
|
977
|
+
createTime?: string;
|
|
978
|
+
updateTime?: string;
|
|
979
|
+
}
|
|
980
|
+
/** 文档信息(不含正文)。 */
|
|
981
|
+
interface DocVo extends DocListItem {
|
|
982
|
+
publishDirty?: boolean;
|
|
983
|
+
}
|
|
984
|
+
/** 文档内容(HTML 草稿)。 */
|
|
985
|
+
interface DocContent extends DocVo {
|
|
986
|
+
content?: string;
|
|
987
|
+
}
|
|
988
|
+
/** 表格信息(不含正文)。与文档结构相同,独立类型便于区分。 */
|
|
989
|
+
interface ExcelVo extends DocListItem {
|
|
990
|
+
publishDirty?: boolean;
|
|
991
|
+
}
|
|
992
|
+
/** 表格内容(整表 JSON 字符串草稿)。 */
|
|
993
|
+
interface ExcelContent extends ExcelVo {
|
|
994
|
+
/** 整表草稿 JSON 字符串。 */
|
|
995
|
+
content?: string;
|
|
996
|
+
}
|
|
997
|
+
/** 按区域写入单元格请求。 */
|
|
998
|
+
interface ExcelWriteCellsRequest {
|
|
999
|
+
docCode: string;
|
|
1000
|
+
/** 工作表名称;不传则写入活动表 / 第一张表。 */
|
|
1001
|
+
sheetName?: string;
|
|
1002
|
+
/** 起始单元格,如 A1。 */
|
|
1003
|
+
range: string;
|
|
1004
|
+
/** 二维数组,外层为行、内层为列。 */
|
|
1005
|
+
values: unknown[][];
|
|
1006
|
+
}
|
|
802
1007
|
|
|
803
1008
|
/**
|
|
804
1009
|
* API 基类,提供请求执行与统一错误处理。
|
|
@@ -910,6 +1115,108 @@ declare class ClawBotApi extends OpenAbstractApi {
|
|
|
910
1115
|
getMsg(): Promise<ClawBotMessage[]>;
|
|
911
1116
|
}
|
|
912
1117
|
|
|
1118
|
+
/**
|
|
1119
|
+
* 开放接口 - push 文档。
|
|
1120
|
+
*
|
|
1121
|
+
* 文档:https://www.pushplus.plus/doc/ecosystem/doc/
|
|
1122
|
+
* 基础路径:`/push/api/open/doc`
|
|
1123
|
+
*/
|
|
1124
|
+
declare class DocApi extends OpenAbstractApi {
|
|
1125
|
+
constructor(config: ResolvedPushPlusConfig, http: HttpRequester, mgr: AccessKeyManager);
|
|
1126
|
+
/** 我的文档分页。 */
|
|
1127
|
+
list(query?: DocListQuery): Promise<PageResult<DocListItem>>;
|
|
1128
|
+
/** 创建空白文档。 */
|
|
1129
|
+
create(title: string): Promise<DocVo>;
|
|
1130
|
+
/** 获取文档元信息与 HTML 草稿正文。 */
|
|
1131
|
+
content(docCode: string): Promise<DocContent>;
|
|
1132
|
+
/** 保存 HTML 草稿(不影响分享页,需再 publish)。 */
|
|
1133
|
+
saveContent(docCode: string, content: string): Promise<DocVo>;
|
|
1134
|
+
/** 将草稿同步为分享页快照。 */
|
|
1135
|
+
publish(docCode: string): Promise<DocVo>;
|
|
1136
|
+
/** 重命名。 */
|
|
1137
|
+
rename(docCode: string, title: string): Promise<void>;
|
|
1138
|
+
/** 删除文档。 */
|
|
1139
|
+
delete(docCode: string): Promise<void>;
|
|
1140
|
+
/**
|
|
1141
|
+
* 更新分享设置。
|
|
1142
|
+
*
|
|
1143
|
+
* @param sharePerm 0 关闭 / 1 开启(仅可查看)
|
|
1144
|
+
* @param shareLogin 0 免登录 / 1 需登录;不传则沿用原值
|
|
1145
|
+
*/
|
|
1146
|
+
updateShare(docCode: string, sharePerm: number, shareLogin?: number): Promise<DocVo>;
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
/**
|
|
1150
|
+
* 开放接口 - push 表格。
|
|
1151
|
+
*
|
|
1152
|
+
* 文档:https://www.pushplus.plus/doc/ecosystem/sheet/
|
|
1153
|
+
* 基础路径:`/push/api/open/excel`
|
|
1154
|
+
*/
|
|
1155
|
+
declare class ExcelApi extends OpenAbstractApi {
|
|
1156
|
+
constructor(config: ResolvedPushPlusConfig, http: HttpRequester, mgr: AccessKeyManager);
|
|
1157
|
+
/** 我的表格分页。 */
|
|
1158
|
+
list(query?: DocListQuery): Promise<PageResult<DocListItem>>;
|
|
1159
|
+
/** 创建空白表格。 */
|
|
1160
|
+
create(title: string): Promise<ExcelVo>;
|
|
1161
|
+
/** 获取表格元信息与整表 JSON 草稿。 */
|
|
1162
|
+
content(docCode: string): Promise<ExcelContent>;
|
|
1163
|
+
/**
|
|
1164
|
+
* 整表覆盖保存草稿。
|
|
1165
|
+
*
|
|
1166
|
+
* `content` 可为 JSON 字符串,或工作簿对象(SDK 会序列化)。
|
|
1167
|
+
*/
|
|
1168
|
+
saveContent(docCode: string, content: string | object): Promise<ExcelVo>;
|
|
1169
|
+
/**
|
|
1170
|
+
* 从指定起始单元格起,按二维数组向右向下写入(草稿)。
|
|
1171
|
+
*
|
|
1172
|
+
* @param range 起始单元格,如 A1
|
|
1173
|
+
* @param values 外层为行、内层为列
|
|
1174
|
+
* @param sheetName 工作表名称;不传则写入活动表 / 第一张表
|
|
1175
|
+
*/
|
|
1176
|
+
writeCells(docCode: string, range: string, values: unknown[][], sheetName?: string): Promise<ExcelVo>;
|
|
1177
|
+
/** 将草稿同步为分享页快照。 */
|
|
1178
|
+
publish(docCode: string): Promise<ExcelVo>;
|
|
1179
|
+
/** 重命名。 */
|
|
1180
|
+
rename(docCode: string, title: string): Promise<void>;
|
|
1181
|
+
/** 删除表格。 */
|
|
1182
|
+
delete(docCode: string): Promise<void>;
|
|
1183
|
+
/**
|
|
1184
|
+
* 更新分享设置。
|
|
1185
|
+
*
|
|
1186
|
+
* @param sharePerm 0 关闭 / 1 开启(仅可查看)
|
|
1187
|
+
* @param shareLogin 0 免登录 / 1 需登录;不传则沿用原值
|
|
1188
|
+
*/
|
|
1189
|
+
updateShare(docCode: string, sharePerm: number, shareLogin?: number): Promise<ExcelVo>;
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
/**
|
|
1193
|
+
* 开放接口 - push 表单。
|
|
1194
|
+
*
|
|
1195
|
+
* 文档:https://www.pushplus.plus/doc/ecosystem/form/
|
|
1196
|
+
* 基础路径:`/push/api/open/form`
|
|
1197
|
+
*/
|
|
1198
|
+
declare class FormApi extends OpenAbstractApi {
|
|
1199
|
+
constructor(config: ResolvedPushPlusConfig, http: HttpRequester, mgr: AccessKeyManager);
|
|
1200
|
+
/** 我的表单分页。 */
|
|
1201
|
+
list(query?: FormListQuery): Promise<PageResult<FormListItem>>;
|
|
1202
|
+
/** 创建空白表单(草稿)。 */
|
|
1203
|
+
create(title: string): Promise<FormListItem>;
|
|
1204
|
+
/** 基于已有表单复制一份新草稿。 */
|
|
1205
|
+
copy(id: number): Promise<FormListItem>;
|
|
1206
|
+
/** 保存表单设计(仅更新草稿;已发布需再调用 publish)。 */
|
|
1207
|
+
save(req: FormSaveRequest): Promise<void>;
|
|
1208
|
+
/** 表单详情(含草稿题目、主题、设置)。 */
|
|
1209
|
+
detail(id: number): Promise<FormDetail>;
|
|
1210
|
+
/** 草稿与发布快照的题目差异。 */
|
|
1211
|
+
publishDiff(id: number): Promise<FormPublishDiff>;
|
|
1212
|
+
/** 发布表单,开始收集。 */
|
|
1213
|
+
publish(id: number): Promise<FormPublishResult>;
|
|
1214
|
+
/** 停止收集。 */
|
|
1215
|
+
stop(id: number): Promise<void>;
|
|
1216
|
+
/** 删除表单(不可恢复)。 */
|
|
1217
|
+
delete(id: number): Promise<void>;
|
|
1218
|
+
}
|
|
1219
|
+
|
|
913
1220
|
/**
|
|
914
1221
|
* 开放接口 - 好友功能(文档「十. 好友功能接口」)。
|
|
915
1222
|
*/
|
|
@@ -1271,6 +1578,9 @@ declare class PushPlusClient {
|
|
|
1271
1578
|
readonly setting: SettingApi;
|
|
1272
1579
|
readonly pre: PreApi;
|
|
1273
1580
|
readonly image: ImageApi;
|
|
1581
|
+
readonly form: FormApi;
|
|
1582
|
+
readonly doc: DocApi;
|
|
1583
|
+
readonly excel: ExcelApi;
|
|
1274
1584
|
constructor(options?: PushPlusClientOptions);
|
|
1275
1585
|
/** 与 Java SDK 风格一致的 Builder 入口。 */
|
|
1276
1586
|
static builder(): PushPlusClientBuilder;
|
|
@@ -1361,4 +1671,4 @@ declare const CallbackParser: {
|
|
|
1361
1671
|
parse: typeof parseCallback;
|
|
1362
1672
|
};
|
|
1363
1673
|
|
|
1364
|
-
export { AbstractApi, AccessKeyApi, AccessKeyManager, type AccessKeyResult, type ApiResponse, type BatchSendRequest, BatchSendRequestBuilder, type BatchSendResult, CallbackEvent, CallbackParser, type CallbackPayload, Channel, ChannelApi, ClawBotApi, type ClawBotInfo, type ClawBotMessage, type ClawBotQrCode, type CpItem, DEFAULT_BASE_URL, ErrorCode, FetchHttpRequester, FriendApi, type FriendInfo, type FriendItem, type FriendQrCode, type HttpRawBody, type HttpRawRequestOptions, type HttpRequestOptions, type HttpRequester, type HttpResponse, ImageApi, type ImageFileInput, type ImageItem, type ImageUploadOptions, type ImageUploadResult, type ImageUploadToken, type MailDetail, type MailItem, MessageApi, type MessageCompleteInfo, type MessageItem, type MessageTokenAddRequest, MessageTokenApi, type MessageTokenEditRequest, type MessageTokenItem, type MessageTokenOption, type MpItem, OpenAbstractApi, OpenMessageApi, type PageQuery, type PageResult, PreApi, type PreDetail, type PreItem, type PreSaveRequest, type PreTestRequest, PushPlusClient, PushPlusClientBuilder, type PushPlusClientOptions, type PushPlusConfig, PushPlusError, PushPlusException, RateLimitGuard, type ResolvedPushPlusConfig, type SendCount, type SendMessageResult, type SendRequest, SendRequestBuilder, SendStatus, SendStatusDescription, SettingApi, Template, type TopicAddRequest, TopicApi, type TopicDetail, type TopicEditRequest, type TopicItem, type TopicListQuery, type TopicQrCode, TopicUserApi, type TopicUserInfo, type TopicUserItem, type TopicUserListQuery, UserApi, type UserDefaultDetail, type UserDefaultItem, type UserDefaultSaveRequest, type UserInfo, type UserLimitTime, WebhookApi, type WebhookItem, type WebhookSaveRequest, WebhookType, WebhookTypeDescription, batchSendRequest, callExecuteRaw, errorCodeFromValue, isRateLimitedCode, isSuccessfulHttpStatus, parseCallback, resolveConfig, sendRequest };
|
|
1674
|
+
export { AbstractApi, AccessKeyApi, AccessKeyManager, type AccessKeyResult, type ApiResponse, type BatchSendRequest, BatchSendRequestBuilder, type BatchSendResult, CallbackEvent, CallbackParser, type CallbackPayload, Channel, ChannelApi, ClawBotApi, type ClawBotInfo, type ClawBotMessage, type ClawBotQrCode, type CpItem, DEFAULT_BASE_URL, DocApi, type DocContent, type DocListItem, type DocListQuery, type DocVo, ErrorCode, ExcelApi, type ExcelContent, type ExcelVo, type ExcelWriteCellsRequest, FetchHttpRequester, FormApi, type FormCover, type FormDetail, type FormItem, type FormListItem, type FormListQuery, type FormPublishDiff, type FormPublishResult, type FormSaveRequest, type FormSettings, FormStatus, FormStatusDescription, type FormTheme, FriendApi, type FriendInfo, type FriendItem, type FriendQrCode, type HttpRawBody, type HttpRawRequestOptions, type HttpRequestOptions, type HttpRequester, type HttpResponse, ImageApi, type ImageFileInput, type ImageItem, type ImageUploadOptions, type ImageUploadResult, type ImageUploadToken, type MailDetail, type MailItem, MessageApi, type MessageCompleteInfo, type MessageItem, type MessageTokenAddRequest, MessageTokenApi, type MessageTokenEditRequest, type MessageTokenItem, type MessageTokenOption, type MpItem, OpenAbstractApi, OpenMessageApi, type PageQuery, type PageResult, PreApi, type PreDetail, type PreItem, type PreSaveRequest, type PreTestRequest, PushPlusClient, PushPlusClientBuilder, type PushPlusClientOptions, type PushPlusConfig, PushPlusError, PushPlusException, RateLimitGuard, type ResolvedPushPlusConfig, type SendCount, type SendMessageResult, type SendRequest, SendRequestBuilder, SendStatus, SendStatusDescription, SettingApi, ShareLogin, SharePerm, Template, type TopicAddRequest, TopicApi, type TopicDetail, type TopicEditRequest, type TopicItem, type TopicListQuery, type TopicQrCode, TopicUserApi, type TopicUserInfo, type TopicUserItem, type TopicUserListQuery, UserApi, type UserDefaultDetail, type UserDefaultItem, type UserDefaultSaveRequest, type UserInfo, type UserLimitTime, type VipInfo, WebhookApi, type WebhookItem, type WebhookSaveRequest, WebhookType, WebhookTypeDescription, batchSendRequest, callExecuteRaw, errorCodeFromValue, isRateLimitedCode, isSuccessfulHttpStatus, parseCallback, resolveConfig, sendRequest };
|