@antchain/ato 1.8.70 → 1.8.76
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 +198 -3
- package/dist/client.js +300 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +446 -4
package/dist/client.d.ts
CHANGED
|
@@ -495,6 +495,7 @@ export declare class UploadFundFlowRequest extends $tea.Model {
|
|
|
495
495
|
fileObject?: Readable;
|
|
496
496
|
fileObjectName?: string;
|
|
497
497
|
fileId: string;
|
|
498
|
+
fundId?: string;
|
|
498
499
|
static names(): {
|
|
499
500
|
[key: string]: string;
|
|
500
501
|
};
|
|
@@ -525,6 +526,7 @@ export declare class GetFundFlowRequest extends $tea.Model {
|
|
|
525
526
|
merchantId: string;
|
|
526
527
|
orderId: string;
|
|
527
528
|
contractType?: string;
|
|
529
|
+
fundId?: string;
|
|
528
530
|
static names(): {
|
|
529
531
|
[key: string]: string;
|
|
530
532
|
};
|
|
@@ -558,6 +560,7 @@ export declare class RefuseFundFlowRequest extends $tea.Model {
|
|
|
558
560
|
orderId: string;
|
|
559
561
|
signNo: string;
|
|
560
562
|
signReason?: string;
|
|
563
|
+
fundId?: string;
|
|
561
564
|
static names(): {
|
|
562
565
|
[key: string]: string;
|
|
563
566
|
};
|
|
@@ -620,6 +623,7 @@ export declare class CancelFundPlanRequest extends $tea.Model {
|
|
|
620
623
|
orderId: string;
|
|
621
624
|
merchantId: string;
|
|
622
625
|
cancelReason: string;
|
|
626
|
+
fundId?: string;
|
|
623
627
|
static names(): {
|
|
624
628
|
[key: string]: string;
|
|
625
629
|
};
|
|
@@ -679,6 +683,7 @@ export declare class SyncFundMerchantpromiseRequest extends $tea.Model {
|
|
|
679
683
|
orderId: string;
|
|
680
684
|
merchantId: string;
|
|
681
685
|
bizContent: string;
|
|
686
|
+
fundId?: string;
|
|
682
687
|
static names(): {
|
|
683
688
|
[key: string]: string;
|
|
684
689
|
};
|
|
@@ -711,6 +716,7 @@ export declare class SyncFundFinanceloanresultsRequest extends $tea.Model {
|
|
|
711
716
|
orderId: string;
|
|
712
717
|
merchantId: string;
|
|
713
718
|
bizContent: string;
|
|
719
|
+
fundId?: string;
|
|
714
720
|
static names(): {
|
|
715
721
|
[key: string]: string;
|
|
716
722
|
};
|
|
@@ -743,6 +749,7 @@ export declare class GetFundUserpromiseRequest extends $tea.Model {
|
|
|
743
749
|
productInstanceId?: string;
|
|
744
750
|
orderId: string;
|
|
745
751
|
merchantId: string;
|
|
752
|
+
fundId?: string;
|
|
746
753
|
static names(): {
|
|
747
754
|
[key: string]: string;
|
|
748
755
|
};
|
|
@@ -868,6 +875,7 @@ export declare class NotifyFundFlowRequest extends $tea.Model {
|
|
|
868
875
|
orderId: string;
|
|
869
876
|
signNo: string;
|
|
870
877
|
fileItemNo: string;
|
|
878
|
+
fundId?: string;
|
|
871
879
|
static names(): {
|
|
872
880
|
[key: string]: string;
|
|
873
881
|
};
|
|
@@ -892,6 +900,75 @@ export declare class NotifyFundFlowResponse extends $tea.Model {
|
|
|
892
900
|
[key: string]: any;
|
|
893
901
|
});
|
|
894
902
|
}
|
|
903
|
+
export declare class UploadFundCreditRequest extends $tea.Model {
|
|
904
|
+
authToken?: string;
|
|
905
|
+
productInstanceId?: string;
|
|
906
|
+
orderNoType: string;
|
|
907
|
+
orderNo: string;
|
|
908
|
+
fundId: string;
|
|
909
|
+
creditType: string;
|
|
910
|
+
creditName?: string;
|
|
911
|
+
contentType: string;
|
|
912
|
+
fileUrl?: string;
|
|
913
|
+
content?: string;
|
|
914
|
+
merchantId: string;
|
|
915
|
+
static names(): {
|
|
916
|
+
[key: string]: string;
|
|
917
|
+
};
|
|
918
|
+
static types(): {
|
|
919
|
+
[key: string]: any;
|
|
920
|
+
};
|
|
921
|
+
constructor(map?: {
|
|
922
|
+
[key: string]: any;
|
|
923
|
+
});
|
|
924
|
+
}
|
|
925
|
+
export declare class UploadFundCreditResponse extends $tea.Model {
|
|
926
|
+
reqMsgId?: string;
|
|
927
|
+
resultCode?: string;
|
|
928
|
+
resultMsg?: string;
|
|
929
|
+
contentId?: string;
|
|
930
|
+
static names(): {
|
|
931
|
+
[key: string]: string;
|
|
932
|
+
};
|
|
933
|
+
static types(): {
|
|
934
|
+
[key: string]: any;
|
|
935
|
+
};
|
|
936
|
+
constructor(map?: {
|
|
937
|
+
[key: string]: any;
|
|
938
|
+
});
|
|
939
|
+
}
|
|
940
|
+
export declare class QueryFundCreditRequest extends $tea.Model {
|
|
941
|
+
authToken?: string;
|
|
942
|
+
productInstanceId?: string;
|
|
943
|
+
orderNoType: string;
|
|
944
|
+
orderNo: string;
|
|
945
|
+
fundId: string;
|
|
946
|
+
merchantId: string;
|
|
947
|
+
static names(): {
|
|
948
|
+
[key: string]: string;
|
|
949
|
+
};
|
|
950
|
+
static types(): {
|
|
951
|
+
[key: string]: any;
|
|
952
|
+
};
|
|
953
|
+
constructor(map?: {
|
|
954
|
+
[key: string]: any;
|
|
955
|
+
});
|
|
956
|
+
}
|
|
957
|
+
export declare class QueryFundCreditResponse extends $tea.Model {
|
|
958
|
+
reqMsgId?: string;
|
|
959
|
+
resultCode?: string;
|
|
960
|
+
resultMsg?: string;
|
|
961
|
+
contentInfo?: string;
|
|
962
|
+
static names(): {
|
|
963
|
+
[key: string]: string;
|
|
964
|
+
};
|
|
965
|
+
static types(): {
|
|
966
|
+
[key: string]: any;
|
|
967
|
+
};
|
|
968
|
+
constructor(map?: {
|
|
969
|
+
[key: string]: any;
|
|
970
|
+
});
|
|
971
|
+
}
|
|
895
972
|
export declare class GetInnerProductRequest extends $tea.Model {
|
|
896
973
|
authToken?: string;
|
|
897
974
|
productInstanceId?: string;
|
|
@@ -1759,9 +1836,9 @@ export declare class CreateInnerMerchantpayexpandRequest extends $tea.Model {
|
|
|
1759
1836
|
authToken?: string;
|
|
1760
1837
|
productInstanceId?: string;
|
|
1761
1838
|
tenantId: string;
|
|
1762
|
-
companyInfo
|
|
1763
|
-
legalInfo
|
|
1764
|
-
applicationInfo
|
|
1839
|
+
companyInfo: CompanyInfo;
|
|
1840
|
+
legalInfo: LegalInfo;
|
|
1841
|
+
applicationInfo: ApplicationInfo;
|
|
1765
1842
|
submit: string;
|
|
1766
1843
|
expandMode: string;
|
|
1767
1844
|
subTenantId?: string;
|
|
@@ -2583,6 +2660,71 @@ export declare class UploadSignTemplateResponse extends $tea.Model {
|
|
|
2583
2660
|
[key: string]: any;
|
|
2584
2661
|
});
|
|
2585
2662
|
}
|
|
2663
|
+
export declare class UploadSignCreditRequest extends $tea.Model {
|
|
2664
|
+
authToken?: string;
|
|
2665
|
+
productInstanceId?: string;
|
|
2666
|
+
orderNoType: string;
|
|
2667
|
+
orderNo: string;
|
|
2668
|
+
creditType: string;
|
|
2669
|
+
creditName?: string;
|
|
2670
|
+
contentType: string;
|
|
2671
|
+
fileUrl?: string;
|
|
2672
|
+
content?: string;
|
|
2673
|
+
static names(): {
|
|
2674
|
+
[key: string]: string;
|
|
2675
|
+
};
|
|
2676
|
+
static types(): {
|
|
2677
|
+
[key: string]: any;
|
|
2678
|
+
};
|
|
2679
|
+
constructor(map?: {
|
|
2680
|
+
[key: string]: any;
|
|
2681
|
+
});
|
|
2682
|
+
}
|
|
2683
|
+
export declare class UploadSignCreditResponse extends $tea.Model {
|
|
2684
|
+
reqMsgId?: string;
|
|
2685
|
+
resultCode?: string;
|
|
2686
|
+
resultMsg?: string;
|
|
2687
|
+
contentId?: string;
|
|
2688
|
+
static names(): {
|
|
2689
|
+
[key: string]: string;
|
|
2690
|
+
};
|
|
2691
|
+
static types(): {
|
|
2692
|
+
[key: string]: any;
|
|
2693
|
+
};
|
|
2694
|
+
constructor(map?: {
|
|
2695
|
+
[key: string]: any;
|
|
2696
|
+
});
|
|
2697
|
+
}
|
|
2698
|
+
export declare class QuerySignCreditRequest extends $tea.Model {
|
|
2699
|
+
authToken?: string;
|
|
2700
|
+
productInstanceId?: string;
|
|
2701
|
+
orderNoType: string;
|
|
2702
|
+
orderNo: string;
|
|
2703
|
+
static names(): {
|
|
2704
|
+
[key: string]: string;
|
|
2705
|
+
};
|
|
2706
|
+
static types(): {
|
|
2707
|
+
[key: string]: any;
|
|
2708
|
+
};
|
|
2709
|
+
constructor(map?: {
|
|
2710
|
+
[key: string]: any;
|
|
2711
|
+
});
|
|
2712
|
+
}
|
|
2713
|
+
export declare class QuerySignCreditResponse extends $tea.Model {
|
|
2714
|
+
reqMsgId?: string;
|
|
2715
|
+
resultCode?: string;
|
|
2716
|
+
resultMsg?: string;
|
|
2717
|
+
contentInfo?: string;
|
|
2718
|
+
static names(): {
|
|
2719
|
+
[key: string]: string;
|
|
2720
|
+
};
|
|
2721
|
+
static types(): {
|
|
2722
|
+
[key: string]: any;
|
|
2723
|
+
};
|
|
2724
|
+
constructor(map?: {
|
|
2725
|
+
[key: string]: any;
|
|
2726
|
+
});
|
|
2727
|
+
}
|
|
2586
2728
|
export declare class SyncTradeRequest extends $tea.Model {
|
|
2587
2729
|
authToken?: string;
|
|
2588
2730
|
productInstanceId?: string;
|
|
@@ -2679,6 +2821,11 @@ export declare class SyncTradeFinanceloanapplyRequest extends $tea.Model {
|
|
|
2679
2821
|
orderId: string;
|
|
2680
2822
|
merchantId: string;
|
|
2681
2823
|
merchantName: string;
|
|
2824
|
+
fundId?: string;
|
|
2825
|
+
type?: string;
|
|
2826
|
+
assetPackageId?: string;
|
|
2827
|
+
stage?: string;
|
|
2828
|
+
orderIdList?: string;
|
|
2682
2829
|
static names(): {
|
|
2683
2830
|
[key: string]: string;
|
|
2684
2831
|
};
|
|
@@ -3565,6 +3712,30 @@ export default class Client {
|
|
|
3565
3712
|
notifyFundFlowEx(request: NotifyFundFlowRequest, headers: {
|
|
3566
3713
|
[key: string]: string;
|
|
3567
3714
|
}, runtime: $Util.RuntimeOptions): Promise<NotifyFundFlowResponse>;
|
|
3715
|
+
/**
|
|
3716
|
+
* Description: 资方资产凭证上传,可以是文本或文件
|
|
3717
|
+
* Summary: 资方资产凭证上传
|
|
3718
|
+
*/
|
|
3719
|
+
uploadFundCredit(request: UploadFundCreditRequest): Promise<UploadFundCreditResponse>;
|
|
3720
|
+
/**
|
|
3721
|
+
* Description: 资方资产凭证上传,可以是文本或文件
|
|
3722
|
+
* Summary: 资方资产凭证上传
|
|
3723
|
+
*/
|
|
3724
|
+
uploadFundCreditEx(request: UploadFundCreditRequest, headers: {
|
|
3725
|
+
[key: string]: string;
|
|
3726
|
+
}, runtime: $Util.RuntimeOptions): Promise<UploadFundCreditResponse>;
|
|
3727
|
+
/**
|
|
3728
|
+
* Description: 资方资产凭证查询,需要提供订单号或资产包号
|
|
3729
|
+
* Summary: 资方资产凭证查询
|
|
3730
|
+
*/
|
|
3731
|
+
queryFundCredit(request: QueryFundCreditRequest): Promise<QueryFundCreditResponse>;
|
|
3732
|
+
/**
|
|
3733
|
+
* Description: 资方资产凭证查询,需要提供订单号或资产包号
|
|
3734
|
+
* Summary: 资方资产凭证查询
|
|
3735
|
+
*/
|
|
3736
|
+
queryFundCreditEx(request: QueryFundCreditRequest, headers: {
|
|
3737
|
+
[key: string]: string;
|
|
3738
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryFundCreditResponse>;
|
|
3568
3739
|
/**
|
|
3569
3740
|
* Description: 内部调用,商品信息获取
|
|
3570
3741
|
* Summary: 商品信息获取
|
|
@@ -4177,6 +4348,30 @@ export default class Client {
|
|
|
4177
4348
|
uploadSignTemplateEx(request: UploadSignTemplateRequest, headers: {
|
|
4178
4349
|
[key: string]: string;
|
|
4179
4350
|
}, runtime: $Util.RuntimeOptions): Promise<UploadSignTemplateResponse>;
|
|
4351
|
+
/**
|
|
4352
|
+
* Description: 商户资产凭证上传,可以是文本或文件
|
|
4353
|
+
* Summary: 商户资产凭证上传
|
|
4354
|
+
*/
|
|
4355
|
+
uploadSignCredit(request: UploadSignCreditRequest): Promise<UploadSignCreditResponse>;
|
|
4356
|
+
/**
|
|
4357
|
+
* Description: 商户资产凭证上传,可以是文本或文件
|
|
4358
|
+
* Summary: 商户资产凭证上传
|
|
4359
|
+
*/
|
|
4360
|
+
uploadSignCreditEx(request: UploadSignCreditRequest, headers: {
|
|
4361
|
+
[key: string]: string;
|
|
4362
|
+
}, runtime: $Util.RuntimeOptions): Promise<UploadSignCreditResponse>;
|
|
4363
|
+
/**
|
|
4364
|
+
* Description: 商户资产凭证查询,需要提供订单号或资产包号
|
|
4365
|
+
* Summary: 商户资产凭证查询
|
|
4366
|
+
*/
|
|
4367
|
+
querySignCredit(request: QuerySignCreditRequest): Promise<QuerySignCreditResponse>;
|
|
4368
|
+
/**
|
|
4369
|
+
* Description: 商户资产凭证查询,需要提供订单号或资产包号
|
|
4370
|
+
* Summary: 商户资产凭证查询
|
|
4371
|
+
*/
|
|
4372
|
+
querySignCreditEx(request: QuerySignCreditRequest, headers: {
|
|
4373
|
+
[key: string]: string;
|
|
4374
|
+
}, runtime: $Util.RuntimeOptions): Promise<QuerySignCreditResponse>;
|
|
4180
4375
|
/**
|
|
4181
4376
|
* Description: 对账saas交易信息同步接口
|
|
4182
4377
|
* Summary: 对账saas交易信息同步接口
|