@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/package.json CHANGED
@@ -1,31 +1,32 @@
1
1
  {
2
- "name": "@antchain/ato",
3
- "version": "1.19.79",
4
- "description": "",
5
- "main": "dist/client.js",
6
- "scripts": {
7
- "test": "mocha --reporter spec --timeout 3000 test/*.test.js",
8
- "test-cov": "nyc -e .ts -r=html -r=text -r=lcov npm run test",
9
- "build": "tsc",
10
- "prepublishOnly": "tsc"
11
- },
12
- "author": "Alibaba Cloud SDK",
13
- "license": "Apache-2.0",
14
- "devDependencies": {
15
- "@types/node": "^12.12.26",
16
- "nyc": "^15.0.0",
17
- "source-map-support": "^0.5.16",
18
- "ts-node": "^8.6.2",
19
- "typescript": "^3.7.5"
20
- },
21
- "dependencies": {
22
- "@alicloud/tea-typescript": "^1.7.1",
23
- "@antchain/alipay-util": "^1.0.4",
24
- "@alicloud/tea-util": "^1.4.11",
25
- "@alicloud/rpc-util": "^0.1.0"
26
- },
27
- "files": [
28
- "dist",
29
- "src"
30
- ]
2
+ "license":"Apache-2.0",
3
+ "devDependencies":{
4
+ "source-map-support":"^0.5.16",
5
+ "@types/node":"^12.12.26",
6
+ "@types/ms":"0.7.31",
7
+ "nyc":"^15.0.0",
8
+ "typescript":"^3.7.5",
9
+ "ts-node":"^8.6.2"
10
+ },
11
+ "author":"",
12
+ "name":"@antchain/ato",
13
+ "description":"",
14
+ "files":[
15
+ "dist",
16
+ "src"
17
+ ],
18
+ "main":"dist/client.js",
19
+ "scripts":{
20
+ "test":"mocha --reporter spec --timeout 3000 test/*.test.js",
21
+ "build":"tsc",
22
+ "prepublishOnly":"tsc",
23
+ "test-cov":"nyc -e .ts -r=html -r=text -r=lcov npm run test"
24
+ },
25
+ "version":"1.19.80",
26
+ "dependencies":{
27
+ "@alicloud/rpc-util":"^0.1.0",
28
+ "@antchain/alipay-util":"^1.0.4",
29
+ "@alicloud/tea-typescript":"^1.7.1",
30
+ "@alicloud/tea-util":"^1.4.11"
31
+ }
31
32
  }
package/src/client.ts CHANGED
@@ -28431,12 +28431,16 @@ export class AuthSignFlowResponse extends $tea.Model {
28431
28431
  resultMsg?: string;
28432
28432
  // 签署最后落签的签署区域id列表
28433
28433
  signFieldIds?: string;
28434
+ // 手动签署链接,区块链合同签署方式,企业未进行静默授权,会返回一个手动签署链接
28435
+ // 如果已授权或者不是区块链签署方式,该字段为空
28436
+ orgSignUrl?: string;
28434
28437
  static names(): { [key: string]: string } {
28435
28438
  return {
28436
28439
  reqMsgId: 'req_msg_id',
28437
28440
  resultCode: 'result_code',
28438
28441
  resultMsg: 'result_msg',
28439
28442
  signFieldIds: 'sign_field_ids',
28443
+ orgSignUrl: 'org_sign_url',
28440
28444
  };
28441
28445
  }
28442
28446
 
@@ -28446,6 +28450,7 @@ export class AuthSignFlowResponse extends $tea.Model {
28446
28450
  resultCode: 'string',
28447
28451
  resultMsg: 'string',
28448
28452
  signFieldIds: 'string',
28453
+ orgSignUrl: 'string',
28449
28454
  };
28450
28455
  }
28451
28456
 
@@ -32773,7 +32778,7 @@ export default class Client {
32773
32778
  req_msg_id: AntchainUtil.getNonce(),
32774
32779
  access_key: this._accessKeyId,
32775
32780
  base_sdk_version: "TeaSDK-2.0",
32776
- sdk_version: "1.19.79",
32781
+ sdk_version: "1.19.80",
32777
32782
  _prod_code: "ATO",
32778
32783
  _prod_channel: "undefined",
32779
32784
  };
@@ -38257,7 +38262,7 @@ export default class Client {
38257
38262
  /**
38258
38263
  * @remarks
38259
38264
  * Description: 电子合同签署模块,机构调用这个接口进行签署的授权落签
38260
- * Summary: 电子合同签署流程落签操作
38265
+ * Summary: 电子合同签署模块,机构调用这个接口进行签署的授权落签
38261
38266
  */
38262
38267
  async authSignFlow(request: AuthSignFlowRequest): Promise<AuthSignFlowResponse> {
38263
38268
  let runtime = new $Util.RuntimeOptions({ });
@@ -38268,7 +38273,7 @@ export default class Client {
38268
38273
  /**
38269
38274
  * @remarks
38270
38275
  * Description: 电子合同签署模块,机构调用这个接口进行签署的授权落签
38271
- * Summary: 电子合同签署流程落签操作
38276
+ * Summary: 电子合同签署模块,机构调用这个接口进行签署的授权落签
38272
38277
  */
38273
38278
  async authSignFlowEx(request: AuthSignFlowRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<AuthSignFlowResponse> {
38274
38279
  Util.validateModel(request);