@antchain/ato 1.14.28 → 1.14.38
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 +266 -5
- package/dist/client.js +398 -12
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +559 -18
package/dist/client.d.ts
CHANGED
|
@@ -157,6 +157,20 @@ export declare class AppletRiskModel extends $tea.Model {
|
|
|
157
157
|
[key: string]: any;
|
|
158
158
|
});
|
|
159
159
|
}
|
|
160
|
+
export declare class ExpandProcessInfo extends $tea.Model {
|
|
161
|
+
processNode?: string;
|
|
162
|
+
isSubmitted?: boolean;
|
|
163
|
+
auditStatus?: string;
|
|
164
|
+
static names(): {
|
|
165
|
+
[key: string]: string;
|
|
166
|
+
};
|
|
167
|
+
static types(): {
|
|
168
|
+
[key: string]: any;
|
|
169
|
+
};
|
|
170
|
+
constructor(map?: {
|
|
171
|
+
[key: string]: any;
|
|
172
|
+
});
|
|
173
|
+
}
|
|
160
174
|
export declare class DivideBindingTransInInfo extends $tea.Model {
|
|
161
175
|
alipayPid: string;
|
|
162
176
|
static names(): {
|
|
@@ -350,13 +364,13 @@ export declare class FundAssertReport extends $tea.Model {
|
|
|
350
364
|
totalBillAmount: number;
|
|
351
365
|
averageTerm: string;
|
|
352
366
|
cancelledBillAmount: number;
|
|
353
|
-
billAmountOverdueBy1dayOrMore: number;
|
|
354
|
-
billAmountOverdueBy30DaysOrMore: number;
|
|
355
367
|
totalBillAmountYPeriod: number;
|
|
356
368
|
averageTermYPeriod: string;
|
|
357
369
|
cancelledBillAmountYPeriod: number;
|
|
358
|
-
|
|
359
|
-
|
|
370
|
+
billAmountOverdueBy1dayOrMore: string;
|
|
371
|
+
billAmountOverdueBy1dayOrMoreYPeriod: string;
|
|
372
|
+
billAmountOverdueBy30DaysOrMore: string;
|
|
373
|
+
billAmountOverdueBy30DaysOrMoreYPeriod: string;
|
|
360
374
|
static names(): {
|
|
361
375
|
[key: string]: string;
|
|
362
376
|
};
|
|
@@ -525,6 +539,19 @@ export declare class CompanyInfoUpdate extends $tea.Model {
|
|
|
525
539
|
[key: string]: any;
|
|
526
540
|
});
|
|
527
541
|
}
|
|
542
|
+
export declare class CompanySummaryInfo extends $tea.Model {
|
|
543
|
+
merchantId?: string;
|
|
544
|
+
merchantName?: string;
|
|
545
|
+
static names(): {
|
|
546
|
+
[key: string]: string;
|
|
547
|
+
};
|
|
548
|
+
static types(): {
|
|
549
|
+
[key: string]: any;
|
|
550
|
+
};
|
|
551
|
+
constructor(map?: {
|
|
552
|
+
[key: string]: any;
|
|
553
|
+
});
|
|
554
|
+
}
|
|
528
555
|
export declare class OrderSearchInfo extends $tea.Model {
|
|
529
556
|
orderId?: string;
|
|
530
557
|
agreementNo?: string;
|
|
@@ -858,6 +885,25 @@ export declare class OrderMsgInfo extends $tea.Model {
|
|
|
858
885
|
[key: string]: any;
|
|
859
886
|
});
|
|
860
887
|
}
|
|
888
|
+
export declare class DataDownloadInfo extends $tea.Model {
|
|
889
|
+
merchantId?: string;
|
|
890
|
+
bizNo?: string;
|
|
891
|
+
status?: string;
|
|
892
|
+
type?: string;
|
|
893
|
+
startTime?: string;
|
|
894
|
+
endTime?: string;
|
|
895
|
+
createTime?: string;
|
|
896
|
+
resultInfo?: string;
|
|
897
|
+
static names(): {
|
|
898
|
+
[key: string]: string;
|
|
899
|
+
};
|
|
900
|
+
static types(): {
|
|
901
|
+
[key: string]: any;
|
|
902
|
+
};
|
|
903
|
+
constructor(map?: {
|
|
904
|
+
[key: string]: any;
|
|
905
|
+
});
|
|
906
|
+
}
|
|
861
907
|
export declare class CustomerPersonInfo extends $tea.Model {
|
|
862
908
|
alipayLogonId: string;
|
|
863
909
|
alipayBindMobile: string;
|
|
@@ -4884,7 +4930,7 @@ export declare class QueryInnerLoggerRequest extends $tea.Model {
|
|
|
4884
4930
|
authToken?: string;
|
|
4885
4931
|
productInstanceId?: string;
|
|
4886
4932
|
channel: string;
|
|
4887
|
-
|
|
4933
|
+
channelAccountId: string;
|
|
4888
4934
|
traceId?: string;
|
|
4889
4935
|
startTime?: string;
|
|
4890
4936
|
endTime?: string;
|
|
@@ -4916,6 +4962,161 @@ export declare class QueryInnerLoggerResponse extends $tea.Model {
|
|
|
4916
4962
|
[key: string]: any;
|
|
4917
4963
|
});
|
|
4918
4964
|
}
|
|
4965
|
+
export declare class SubmitInnerDatadownloadRequest extends $tea.Model {
|
|
4966
|
+
authToken?: string;
|
|
4967
|
+
productInstanceId?: string;
|
|
4968
|
+
tenantId: string;
|
|
4969
|
+
merchantId?: string;
|
|
4970
|
+
merchantName?: string;
|
|
4971
|
+
startTime: string;
|
|
4972
|
+
endTime: string;
|
|
4973
|
+
type: string;
|
|
4974
|
+
static names(): {
|
|
4975
|
+
[key: string]: string;
|
|
4976
|
+
};
|
|
4977
|
+
static types(): {
|
|
4978
|
+
[key: string]: any;
|
|
4979
|
+
};
|
|
4980
|
+
constructor(map?: {
|
|
4981
|
+
[key: string]: any;
|
|
4982
|
+
});
|
|
4983
|
+
}
|
|
4984
|
+
export declare class SubmitInnerDatadownloadResponse extends $tea.Model {
|
|
4985
|
+
reqMsgId?: string;
|
|
4986
|
+
resultCode?: string;
|
|
4987
|
+
resultMsg?: string;
|
|
4988
|
+
static names(): {
|
|
4989
|
+
[key: string]: string;
|
|
4990
|
+
};
|
|
4991
|
+
static types(): {
|
|
4992
|
+
[key: string]: any;
|
|
4993
|
+
};
|
|
4994
|
+
constructor(map?: {
|
|
4995
|
+
[key: string]: any;
|
|
4996
|
+
});
|
|
4997
|
+
}
|
|
4998
|
+
export declare class PagequeryInnerDatadownloadRequest extends $tea.Model {
|
|
4999
|
+
authToken?: string;
|
|
5000
|
+
productInstanceId?: string;
|
|
5001
|
+
tenantId: string;
|
|
5002
|
+
status?: string;
|
|
5003
|
+
pageInfo: PageQuery;
|
|
5004
|
+
static names(): {
|
|
5005
|
+
[key: string]: string;
|
|
5006
|
+
};
|
|
5007
|
+
static types(): {
|
|
5008
|
+
[key: string]: any;
|
|
5009
|
+
};
|
|
5010
|
+
constructor(map?: {
|
|
5011
|
+
[key: string]: any;
|
|
5012
|
+
});
|
|
5013
|
+
}
|
|
5014
|
+
export declare class PagequeryInnerDatadownloadResponse extends $tea.Model {
|
|
5015
|
+
reqMsgId?: string;
|
|
5016
|
+
resultCode?: string;
|
|
5017
|
+
resultMsg?: string;
|
|
5018
|
+
total?: number;
|
|
5019
|
+
dataDownloadInfo?: DataDownloadInfo[];
|
|
5020
|
+
static names(): {
|
|
5021
|
+
[key: string]: string;
|
|
5022
|
+
};
|
|
5023
|
+
static types(): {
|
|
5024
|
+
[key: string]: any;
|
|
5025
|
+
};
|
|
5026
|
+
constructor(map?: {
|
|
5027
|
+
[key: string]: any;
|
|
5028
|
+
});
|
|
5029
|
+
}
|
|
5030
|
+
export declare class DeleteInnerDatadownloadRequest extends $tea.Model {
|
|
5031
|
+
authToken?: string;
|
|
5032
|
+
productInstanceId?: string;
|
|
5033
|
+
tenantId: string;
|
|
5034
|
+
bizNo: string;
|
|
5035
|
+
static names(): {
|
|
5036
|
+
[key: string]: string;
|
|
5037
|
+
};
|
|
5038
|
+
static types(): {
|
|
5039
|
+
[key: string]: any;
|
|
5040
|
+
};
|
|
5041
|
+
constructor(map?: {
|
|
5042
|
+
[key: string]: any;
|
|
5043
|
+
});
|
|
5044
|
+
}
|
|
5045
|
+
export declare class DeleteInnerDatadownloadResponse extends $tea.Model {
|
|
5046
|
+
reqMsgId?: string;
|
|
5047
|
+
resultCode?: string;
|
|
5048
|
+
resultMsg?: string;
|
|
5049
|
+
static names(): {
|
|
5050
|
+
[key: string]: string;
|
|
5051
|
+
};
|
|
5052
|
+
static types(): {
|
|
5053
|
+
[key: string]: any;
|
|
5054
|
+
};
|
|
5055
|
+
constructor(map?: {
|
|
5056
|
+
[key: string]: any;
|
|
5057
|
+
});
|
|
5058
|
+
}
|
|
5059
|
+
export declare class PagequeryInnerCompanyinfoRequest extends $tea.Model {
|
|
5060
|
+
authToken?: string;
|
|
5061
|
+
productInstanceId?: string;
|
|
5062
|
+
tenantId: string;
|
|
5063
|
+
pageInfo: PageQuery;
|
|
5064
|
+
static names(): {
|
|
5065
|
+
[key: string]: string;
|
|
5066
|
+
};
|
|
5067
|
+
static types(): {
|
|
5068
|
+
[key: string]: any;
|
|
5069
|
+
};
|
|
5070
|
+
constructor(map?: {
|
|
5071
|
+
[key: string]: any;
|
|
5072
|
+
});
|
|
5073
|
+
}
|
|
5074
|
+
export declare class PagequeryInnerCompanyinfoResponse extends $tea.Model {
|
|
5075
|
+
reqMsgId?: string;
|
|
5076
|
+
resultCode?: string;
|
|
5077
|
+
resultMsg?: string;
|
|
5078
|
+
total?: number;
|
|
5079
|
+
companyInfo?: CompanySummaryInfo[];
|
|
5080
|
+
static names(): {
|
|
5081
|
+
[key: string]: string;
|
|
5082
|
+
};
|
|
5083
|
+
static types(): {
|
|
5084
|
+
[key: string]: any;
|
|
5085
|
+
};
|
|
5086
|
+
constructor(map?: {
|
|
5087
|
+
[key: string]: any;
|
|
5088
|
+
});
|
|
5089
|
+
}
|
|
5090
|
+
export declare class QueryInnerExpandprocessRequest extends $tea.Model {
|
|
5091
|
+
authToken?: string;
|
|
5092
|
+
productInstanceId?: string;
|
|
5093
|
+
tenantId: string;
|
|
5094
|
+
expandMode: string;
|
|
5095
|
+
static names(): {
|
|
5096
|
+
[key: string]: string;
|
|
5097
|
+
};
|
|
5098
|
+
static types(): {
|
|
5099
|
+
[key: string]: any;
|
|
5100
|
+
};
|
|
5101
|
+
constructor(map?: {
|
|
5102
|
+
[key: string]: any;
|
|
5103
|
+
});
|
|
5104
|
+
}
|
|
5105
|
+
export declare class QueryInnerExpandprocessResponse extends $tea.Model {
|
|
5106
|
+
reqMsgId?: string;
|
|
5107
|
+
resultCode?: string;
|
|
5108
|
+
resultMsg?: string;
|
|
5109
|
+
processInfoList?: ExpandProcessInfo[];
|
|
5110
|
+
static names(): {
|
|
5111
|
+
[key: string]: string;
|
|
5112
|
+
};
|
|
5113
|
+
static types(): {
|
|
5114
|
+
[key: string]: any;
|
|
5115
|
+
};
|
|
5116
|
+
constructor(map?: {
|
|
5117
|
+
[key: string]: any;
|
|
5118
|
+
});
|
|
5119
|
+
}
|
|
4919
5120
|
export declare class CreateInsureRequest extends $tea.Model {
|
|
4920
5121
|
authToken?: string;
|
|
4921
5122
|
productInstanceId?: string;
|
|
@@ -8336,6 +8537,66 @@ export default class Client {
|
|
|
8336
8537
|
queryInnerLoggerEx(request: QueryInnerLoggerRequest, headers: {
|
|
8337
8538
|
[key: string]: string;
|
|
8338
8539
|
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerLoggerResponse>;
|
|
8540
|
+
/**
|
|
8541
|
+
* Description: 离线数据下载
|
|
8542
|
+
* Summary: 离线数据下载
|
|
8543
|
+
*/
|
|
8544
|
+
submitInnerDatadownload(request: SubmitInnerDatadownloadRequest): Promise<SubmitInnerDatadownloadResponse>;
|
|
8545
|
+
/**
|
|
8546
|
+
* Description: 离线数据下载
|
|
8547
|
+
* Summary: 离线数据下载
|
|
8548
|
+
*/
|
|
8549
|
+
submitInnerDatadownloadEx(request: SubmitInnerDatadownloadRequest, headers: {
|
|
8550
|
+
[key: string]: string;
|
|
8551
|
+
}, runtime: $Util.RuntimeOptions): Promise<SubmitInnerDatadownloadResponse>;
|
|
8552
|
+
/**
|
|
8553
|
+
* Description: 查询数据下载列表
|
|
8554
|
+
* Summary: 查询数据下载列表
|
|
8555
|
+
*/
|
|
8556
|
+
pagequeryInnerDatadownload(request: PagequeryInnerDatadownloadRequest): Promise<PagequeryInnerDatadownloadResponse>;
|
|
8557
|
+
/**
|
|
8558
|
+
* Description: 查询数据下载列表
|
|
8559
|
+
* Summary: 查询数据下载列表
|
|
8560
|
+
*/
|
|
8561
|
+
pagequeryInnerDatadownloadEx(request: PagequeryInnerDatadownloadRequest, headers: {
|
|
8562
|
+
[key: string]: string;
|
|
8563
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerDatadownloadResponse>;
|
|
8564
|
+
/**
|
|
8565
|
+
* Description: 删除下载任务
|
|
8566
|
+
* Summary: 删除下载任务
|
|
8567
|
+
*/
|
|
8568
|
+
deleteInnerDatadownload(request: DeleteInnerDatadownloadRequest): Promise<DeleteInnerDatadownloadResponse>;
|
|
8569
|
+
/**
|
|
8570
|
+
* Description: 删除下载任务
|
|
8571
|
+
* Summary: 删除下载任务
|
|
8572
|
+
*/
|
|
8573
|
+
deleteInnerDatadownloadEx(request: DeleteInnerDatadownloadRequest, headers: {
|
|
8574
|
+
[key: string]: string;
|
|
8575
|
+
}, runtime: $Util.RuntimeOptions): Promise<DeleteInnerDatadownloadResponse>;
|
|
8576
|
+
/**
|
|
8577
|
+
* Description: 分页查询公司信息
|
|
8578
|
+
* Summary: 分页查询公司信息
|
|
8579
|
+
*/
|
|
8580
|
+
pagequeryInnerCompanyinfo(request: PagequeryInnerCompanyinfoRequest): Promise<PagequeryInnerCompanyinfoResponse>;
|
|
8581
|
+
/**
|
|
8582
|
+
* Description: 分页查询公司信息
|
|
8583
|
+
* Summary: 分页查询公司信息
|
|
8584
|
+
*/
|
|
8585
|
+
pagequeryInnerCompanyinfoEx(request: PagequeryInnerCompanyinfoRequest, headers: {
|
|
8586
|
+
[key: string]: string;
|
|
8587
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerCompanyinfoResponse>;
|
|
8588
|
+
/**
|
|
8589
|
+
* Description: 查询商户进件流程节点
|
|
8590
|
+
* Summary: 查询商户进件流程节点
|
|
8591
|
+
*/
|
|
8592
|
+
queryInnerExpandprocess(request: QueryInnerExpandprocessRequest): Promise<QueryInnerExpandprocessResponse>;
|
|
8593
|
+
/**
|
|
8594
|
+
* Description: 查询商户进件流程节点
|
|
8595
|
+
* Summary: 查询商户进件流程节点
|
|
8596
|
+
*/
|
|
8597
|
+
queryInnerExpandprocessEx(request: QueryInnerExpandprocessRequest, headers: {
|
|
8598
|
+
[key: string]: string;
|
|
8599
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerExpandprocessResponse>;
|
|
8339
8600
|
/**
|
|
8340
8601
|
* Description: 一键投保
|
|
8341
8602
|
* Summary: 投保
|