@antchain/ato 1.19.79 → 1.19.80
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 +3 -2
- package/dist/client.js +5 -3
- package/dist/client.js.map +1 -1
- package/package.json +30 -29
- package/src/client.ts +8 -3
package/dist/client.d.ts
CHANGED
|
@@ -13561,6 +13561,7 @@ export declare class AuthSignFlowResponse extends $tea.Model {
|
|
|
13561
13561
|
resultCode?: string;
|
|
13562
13562
|
resultMsg?: string;
|
|
13563
13563
|
signFieldIds?: string;
|
|
13564
|
+
orgSignUrl?: string;
|
|
13564
13565
|
static names(): {
|
|
13565
13566
|
[key: string]: string;
|
|
13566
13567
|
};
|
|
@@ -19043,13 +19044,13 @@ export default class Client {
|
|
|
19043
19044
|
/**
|
|
19044
19045
|
* @remarks
|
|
19045
19046
|
* Description: 电子合同签署模块,机构调用这个接口进行签署的授权落签
|
|
19046
|
-
* Summary:
|
|
19047
|
+
* Summary: 电子合同签署模块,机构调用这个接口进行签署的授权落签
|
|
19047
19048
|
*/
|
|
19048
19049
|
authSignFlow(request: AuthSignFlowRequest): Promise<AuthSignFlowResponse>;
|
|
19049
19050
|
/**
|
|
19050
19051
|
* @remarks
|
|
19051
19052
|
* Description: 电子合同签署模块,机构调用这个接口进行签署的授权落签
|
|
19052
|
-
* Summary:
|
|
19053
|
+
* Summary: 电子合同签署模块,机构调用这个接口进行签署的授权落签
|
|
19053
19054
|
*/
|
|
19054
19055
|
authSignFlowEx(request: AuthSignFlowRequest, headers: {
|
|
19055
19056
|
[key: string]: string;
|
package/dist/client.js
CHANGED
|
@@ -16603,6 +16603,7 @@ class AuthSignFlowResponse extends $tea.Model {
|
|
|
16603
16603
|
resultCode: 'result_code',
|
|
16604
16604
|
resultMsg: 'result_msg',
|
|
16605
16605
|
signFieldIds: 'sign_field_ids',
|
|
16606
|
+
orgSignUrl: 'org_sign_url',
|
|
16606
16607
|
};
|
|
16607
16608
|
}
|
|
16608
16609
|
static types() {
|
|
@@ -16611,6 +16612,7 @@ class AuthSignFlowResponse extends $tea.Model {
|
|
|
16611
16612
|
resultCode: 'string',
|
|
16612
16613
|
resultMsg: 'string',
|
|
16613
16614
|
signFieldIds: 'string',
|
|
16615
|
+
orgSignUrl: 'string',
|
|
16614
16616
|
};
|
|
16615
16617
|
}
|
|
16616
16618
|
}
|
|
@@ -19433,7 +19435,7 @@ class Client {
|
|
|
19433
19435
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
19434
19436
|
access_key: this._accessKeyId,
|
|
19435
19437
|
base_sdk_version: "TeaSDK-2.0",
|
|
19436
|
-
sdk_version: "1.19.
|
|
19438
|
+
sdk_version: "1.19.80",
|
|
19437
19439
|
_prod_code: "ATO",
|
|
19438
19440
|
_prod_channel: "undefined",
|
|
19439
19441
|
};
|
|
@@ -24390,7 +24392,7 @@ class Client {
|
|
|
24390
24392
|
/**
|
|
24391
24393
|
* @remarks
|
|
24392
24394
|
* Description: 电子合同签署模块,机构调用这个接口进行签署的授权落签
|
|
24393
|
-
* Summary:
|
|
24395
|
+
* Summary: 电子合同签署模块,机构调用这个接口进行签署的授权落签
|
|
24394
24396
|
*/
|
|
24395
24397
|
async authSignFlow(request) {
|
|
24396
24398
|
let runtime = new $Util.RuntimeOptions({});
|
|
@@ -24400,7 +24402,7 @@ class Client {
|
|
|
24400
24402
|
/**
|
|
24401
24403
|
* @remarks
|
|
24402
24404
|
* Description: 电子合同签署模块,机构调用这个接口进行签署的授权落签
|
|
24403
|
-
* Summary:
|
|
24405
|
+
* Summary: 电子合同签署模块,机构调用这个接口进行签署的授权落签
|
|
24404
24406
|
*/
|
|
24405
24407
|
async authSignFlowEx(request, headers, runtime) {
|
|
24406
24408
|
tea_util_1.default.validateModel(request);
|