tencentcloud-sdk-nodejs 4.0.777 → 4.0.779

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.
Files changed (67) hide show
  1. package/CHANGELOG.md +77 -0
  2. package/SERVICE_CHANGELOG.md +139 -173
  3. package/package.json +1 -1
  4. package/products.md +6 -6
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/ams/index.ts +2 -2
  7. package/src/services/btoe/index.ts +2 -2
  8. package/src/services/car/v20220110/car_client.ts +2 -2
  9. package/src/services/chdfs/index.ts +2 -2
  10. package/src/services/cii/index.ts +2 -2
  11. package/src/services/cloudaudit/v20190319/cloudaudit_client.ts +6 -6
  12. package/src/services/cloudaudit/v20190319/cloudaudit_models.ts +22 -10
  13. package/src/services/dbbrain/index.ts +2 -2
  14. package/src/services/essbasic/v20210526/essbasic_models.ts +1 -1
  15. package/src/services/iotcloud/index.ts +2 -2
  16. package/src/services/iotvideo/index.ts +2 -2
  17. package/src/services/mgobe/index.ts +2 -2
  18. package/src/services/mongodb/index.ts +2 -2
  19. package/src/services/organization/index.ts +2 -2
  20. package/src/services/tdid/v20210519/tdid_client.ts +84 -161
  21. package/src/services/tdid/v20210519/tdid_models.ts +154 -340
  22. package/src/services/teo/index.ts +2 -2
  23. package/src/services/thpc/index.ts +2 -2
  24. package/src/services/tione/index.ts +2 -2
  25. package/src/services/trtc/v20190722/trtc_models.ts +2 -1
  26. package/src/services/tsw/index.ts +2 -2
  27. package/tencentcloud/common/sdk_version.d.ts +1 -1
  28. package/tencentcloud/common/sdk_version.js +1 -1
  29. package/tencentcloud/services/ams/index.d.ts +4 -4
  30. package/tencentcloud/services/ams/index.js +2 -2
  31. package/tencentcloud/services/btoe/index.d.ts +4 -4
  32. package/tencentcloud/services/btoe/index.js +2 -2
  33. package/tencentcloud/services/car/v20220110/car_client.d.ts +2 -2
  34. package/tencentcloud/services/car/v20220110/car_client.js +2 -2
  35. package/tencentcloud/services/chdfs/index.d.ts +4 -4
  36. package/tencentcloud/services/chdfs/index.js +2 -2
  37. package/tencentcloud/services/cii/index.d.ts +4 -4
  38. package/tencentcloud/services/cii/index.js +2 -2
  39. package/tencentcloud/services/cloudaudit/v20190319/cloudaudit_client.d.ts +6 -6
  40. package/tencentcloud/services/cloudaudit/v20190319/cloudaudit_client.js +6 -6
  41. package/tencentcloud/services/cloudaudit/v20190319/cloudaudit_models.d.ts +22 -10
  42. package/tencentcloud/services/dbbrain/index.d.ts +4 -4
  43. package/tencentcloud/services/dbbrain/index.js +2 -2
  44. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +1 -1
  45. package/tencentcloud/services/iotcloud/index.d.ts +4 -4
  46. package/tencentcloud/services/iotcloud/index.js +2 -2
  47. package/tencentcloud/services/iotvideo/index.d.ts +4 -4
  48. package/tencentcloud/services/iotvideo/index.js +2 -2
  49. package/tencentcloud/services/mgobe/index.d.ts +4 -4
  50. package/tencentcloud/services/mgobe/index.js +2 -2
  51. package/tencentcloud/services/mongodb/index.d.ts +4 -4
  52. package/tencentcloud/services/mongodb/index.js +2 -2
  53. package/tencentcloud/services/organization/index.d.ts +4 -4
  54. package/tencentcloud/services/organization/index.js +2 -2
  55. package/tencentcloud/services/tdid/v20210519/tdid_client.d.ts +19 -62
  56. package/tencentcloud/services/tdid/v20210519/tdid_client.js +27 -78
  57. package/tencentcloud/services/tdid/v20210519/tdid_models.d.ts +154 -330
  58. package/tencentcloud/services/teo/index.d.ts +4 -4
  59. package/tencentcloud/services/teo/index.js +2 -2
  60. package/tencentcloud/services/thpc/index.d.ts +4 -4
  61. package/tencentcloud/services/thpc/index.js +2 -2
  62. package/tencentcloud/services/tione/index.d.ts +4 -4
  63. package/tencentcloud/services/tione/index.js +2 -2
  64. package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +2 -1
  65. package/tencentcloud/services/tsw/index.d.ts +4 -4
  66. package/tencentcloud/services/tsw/index.js +2 -2
  67. package/test/tdid.v20210519.test.js +18 -58
@@ -1,520 +1,344 @@
1
1
  /**
2
- * 凭证链上状态信息
3
- */
4
- export interface CredentialStatus {
5
- /**
6
- * 凭证唯一id
7
- */
8
- CredentialId: string;
9
- /**
10
- * 凭证状态(0:吊销;1:有效)
11
- */
12
- Status: number;
13
- /**
14
- * 凭证颁发者Did
15
- */
16
- Issuer: string;
17
- /**
18
- * 凭证摘要
19
- 注意:此字段可能返回 null,表示取不到有效值。
20
- */
21
- Digest: string;
22
- /**
23
- * 凭证签名
24
- 注意:此字段可能返回 null,表示取不到有效值。
25
- */
26
- Signature: string;
27
- /**
28
- * 更新时间戳
29
- 注意:此字段可能返回 null,表示取不到有效值。
30
- */
31
- TimeStamp: number;
32
- }
33
- /**
34
- * CreateTDid请求参数结构体
2
+ * CreateTDidByPubKey返回参数结构体
35
3
  */
36
- export interface CreateTDidRequest {
4
+ export interface CreateTDidByPubKeyResponse {
37
5
  /**
38
- * 群组ID
6
+ * did标识
39
7
  */
40
- GroupId: number;
8
+ Did?: string;
41
9
  /**
42
- * 网络ID
10
+ * 链上交易信息
43
11
  */
44
- ClusterId: string;
45
- /**
46
- * 部署机构为1,否则为0
47
- */
48
- Relegation: number;
49
- }
50
- /**
51
- * CreateSelectiveCredential请求参数结构体
52
- */
53
- export interface CreateSelectiveCredentialRequest {
54
- /**
55
- * 参数集合
56
- */
57
- FunctionArg: VerifyFunctionArg;
58
- /**
59
- * 批露策略id
60
- */
61
- PolicyId: number;
62
- }
63
- /**
64
- * CreateTDidByPrivateKey返回参数结构体
65
- */
66
- export interface CreateTDidByPrivateKeyResponse {
67
- /**
68
- * did的具体信息
69
- */
70
- Did: string;
12
+ Transaction?: ChainTransaction;
71
13
  /**
72
14
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
73
15
  */
74
16
  RequestId?: string;
75
17
  }
76
18
  /**
77
- * CheckChain返回参数结构体
19
+ * GetTDidDocument返回参数结构体
78
20
  */
79
- export interface CheckChainResponse {
80
- /**
81
- * 1为盟主,0为非盟主
82
- */
83
- RoleType: number;
84
- /**
85
- * 链ID
86
- */
87
- ChainId: string;
21
+ export interface GetTDidDocumentResponse {
88
22
  /**
89
- * 应用名称
23
+ * DID文档内容
90
24
  */
91
- AppName: string;
25
+ Document?: string;
92
26
  /**
93
27
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
94
28
  */
95
29
  RequestId?: string;
96
30
  }
97
31
  /**
98
- * CreateTDidByPublicKey请求参数结构体
32
+ * GetCredentialState请求参数结构体
99
33
  */
100
- export interface CreateTDidByPublicKeyRequest {
34
+ export interface GetCredentialStateRequest {
101
35
  /**
102
- * 网络ID
36
+ * 凭证唯一Id
103
37
  */
104
- ClusterId: string;
38
+ CredentialId?: string;
105
39
  /**
106
- * 群组ID
40
+ * 用户应用Id
107
41
  */
108
- GroupId: number;
109
- /**
110
- * 身份公钥
111
- */
112
- PublicKey: string;
113
- /**
114
- * 加密公钥
115
- */
116
- EncryptPubKey?: string;
42
+ DAPId?: number;
117
43
  }
118
44
  /**
119
- * CreateCredential返回参数结构体
45
+ * CheckNewPurchase请求参数结构体
46
+ */
47
+ export declare type CheckNewPurchaseRequest = null;
48
+ /**
49
+ * VerifyCredentials请求参数结构体
120
50
  */
121
- export interface CreateCredentialResponse {
51
+ export interface VerifyCredentialsRequest {
122
52
  /**
123
- * Credential的具体信息
53
+ * 0:仅验证签名,1:验证签名和链上状态,2, 仅验证链上状态,默认为0, 3.验证DID和凭证状态以及签名,4. 验证历史凭证有效性
124
54
  */
125
- CredentialData: string;
55
+ VerifyType?: number;
126
56
  /**
127
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
57
+ * 凭证内容
128
58
  */
129
- RequestId?: string;
130
- }
131
- /**
132
- * GetAuthorityIssuer请求参数结构体
133
- */
134
- export interface GetAuthorityIssuerRequest {
59
+ CredentialData?: string;
135
60
  /**
136
- * tdid
61
+ * DID应用id
137
62
  */
138
- Did: string;
63
+ DAPId?: number;
139
64
  }
140
65
  /**
141
- * CreateCredential请求参数结构体
66
+ * 颁发凭证的数据参数
142
67
  */
143
- export interface CreateCredentialRequest {
68
+ export interface CRDLArg {
144
69
  /**
145
- * 参数集合,详见示例
70
+ * CPT ID
146
71
  */
147
- FunctionArg: FunctionArg;
72
+ CPTId: number;
148
73
  /**
149
- * 参数集合,详见示例
74
+ * 签发者 did
150
75
  */
151
- TransactionArg: TransactionArg;
76
+ Issuer: string;
152
77
  /**
153
- * 版本
78
+ * 过期时间
154
79
  */
155
- VersionCredential: string;
80
+ ExpirationDate: string;
156
81
  /**
157
- * 是否未签名
82
+ * 声明
158
83
  */
159
- UnSigned?: boolean;
160
- }
161
- /**
162
- * GetDidDocument请求参数结构体
163
- */
164
- export interface GetDidDocumentRequest {
84
+ ClaimJson: string;
165
85
  /**
166
- * tdid
86
+ * 凭证类型
167
87
  */
168
- Did: string;
169
- }
170
- /**
171
- * GetCredentialStatus请求参数结构体
172
- */
173
- export interface GetCredentialStatusRequest {
88
+ Type?: Array<string>;
174
89
  /**
175
- * 凭证id
90
+ * 多方签名的用户did
176
91
  */
177
- CredentialId: string;
92
+ Parties?: Array<string>;
178
93
  }
179
94
  /**
180
- * VerifyCredential返回参数结构体
95
+ * GetTDidDocument请求参数结构体
181
96
  */
182
- export interface VerifyCredentialResponse {
97
+ export interface GetTDidDocumentRequest {
183
98
  /**
184
- * 是否验证成功
185
- */
186
- Result: boolean;
187
- /**
188
- * 验证返回码
99
+ * DID标识
189
100
  */
190
- VerifyCode: number;
101
+ Did?: string;
191
102
  /**
192
- * 验证消息
103
+ * DID应用ID
193
104
  */
194
- VerifyMessage: string;
195
- /**
196
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
197
- */
198
- RequestId?: string;
105
+ DAPId?: number;
199
106
  }
200
107
  /**
201
- * SetCredentialStatus返回参数结构体
108
+ * IssueCredential返回参数结构体
202
109
  */
203
- export interface SetCredentialStatusResponse {
110
+ export interface IssueCredentialResponse {
111
+ /**
112
+ * 可验证凭证内容
113
+ */
114
+ CredentialData?: string;
204
115
  /**
205
116
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
206
117
  */
207
118
  RequestId?: string;
208
119
  }
209
120
  /**
210
- * GetCptInfo返回参数结构体
121
+ * GetCredentialState返回参数结构体
211
122
  */
212
- export interface GetCptInfoResponse {
123
+ export interface GetCredentialStateResponse {
213
124
  /**
214
- * CptJsonData的具体信息
125
+ * 凭证状态信息
126
+ 注意:此字段可能返回 null,表示取不到有效值。
215
127
  */
216
- CptJsonData: string;
128
+ CredentialState?: CredentialState;
217
129
  /**
218
130
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
219
131
  */
220
132
  RequestId?: string;
221
133
  }
222
134
  /**
223
- * 创建凭证第二个
135
+ * CreateTDidByHost请求参数结构体
224
136
  */
225
- export interface TransactionArg {
137
+ export interface CreateTDidByHostRequest {
226
138
  /**
227
- * 凭证did
139
+ * DID应用ID
228
140
  */
229
- InvokerTDid: string;
230
- }
231
- /**
232
- * CheckChain请求参数结构体
233
- */
234
- export interface CheckChainRequest {
235
- /**
236
- * 群组ID
237
- */
238
- GroupId: number;
141
+ DAPId?: number;
239
142
  /**
240
- * 网络ID
143
+ * 自定义DID文档json属性
241
144
  */
242
- ClusterId: string;
243
- /**
244
- * did服务机构名称
245
- */
246
- AgencyName: string;
145
+ CustomAttribute?: string;
247
146
  }
248
147
  /**
249
- * GetAuthorityIssuer返回参数结构体
148
+ * IssueCredential请求参数结构体
250
149
  */
251
- export interface GetAuthorityIssuerResponse {
252
- /**
253
- * 名称
254
- */
255
- Name: string;
256
- /**
257
- * 区块链网络id
258
- */
259
- ClusterId: string;
260
- /**
261
- * 区块链群组id
262
- */
263
- GroupId: number;
150
+ export interface IssueCredentialRequest {
264
151
  /**
265
- * 权威机构did
266
- */
267
- Did: string;
268
- /**
269
- * 机构备注信息
270
- */
271
- Remark: string;
272
- /**
273
- * 注册时间
152
+ * 参数集合,详见示例
274
153
  */
275
- RegisterTime: string;
154
+ CRDLArg?: CRDLArg;
276
155
  /**
277
- * 认证时间
156
+ * 是否未签名
278
157
  */
279
- RecognizeTime: string;
158
+ UnSigned?: boolean;
280
159
  /**
281
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
160
+ * DID应用id
282
161
  */
283
- RequestId?: string;
162
+ DAPId?: number;
284
163
  }
285
164
  /**
286
- * GetDidDocument返回参数结构体
165
+ * VerifyCredentials返回参数结构体
287
166
  */
288
- export interface GetDidDocumentResponse {
289
- /**
290
- * 名称
291
- */
292
- Name: string;
167
+ export interface VerifyCredentialsResponse {
293
168
  /**
294
- * DID文档
169
+ * 是否验证成功
295
170
  */
296
- Document: string;
171
+ Result?: boolean;
297
172
  /**
298
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
173
+ * 验证返回码
299
174
  */
300
- RequestId?: string;
301
- }
302
- /**
303
- * CreateTDid返回参数结构体
304
- */
305
- export interface CreateTDidResponse {
175
+ VerifyCode?: number;
306
176
  /**
307
- * TDID
177
+ * 验证结果信息
308
178
  */
309
- Did: string;
179
+ VerifyMessage?: string;
310
180
  /**
311
181
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
312
182
  */
313
183
  RequestId?: string;
314
184
  }
315
185
  /**
316
- * CreateSelectiveCredential返回参数结构体
186
+ * UpdateCredentialState请求参数结构体
317
187
  */
318
- export interface CreateSelectiveCredentialResponse {
188
+ export interface UpdateCredentialStateRequest {
319
189
  /**
320
- * 凭证字符串
190
+ * DID应用Id
321
191
  */
322
- CredentialData: string;
192
+ DAPId?: number;
323
193
  /**
324
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
194
+ * 更新VC状态的临时凭证内容,通过创建凭证接口(CreateCredential)生成并签名,凭证类型为:OperateCredential, 为安全起见凭证过期时间不适合太长,建议设置为1分钟内
325
195
  */
326
- RequestId?: string;
196
+ OperateCredential?: string;
327
197
  }
328
198
  /**
329
- * RegisterCpt请求参数结构体
199
+ * 凭证链上状态信息
330
200
  */
331
- export interface RegisterCptRequest {
201
+ export interface CredentialState {
332
202
  /**
333
- * 群组ID
203
+ * 凭证唯一id
334
204
  */
335
- GroupId: number;
205
+ Id?: string;
336
206
  /**
337
- * 网络ID
207
+ * 凭证状态(0:吊销;1:有效)
338
208
  */
339
- ClusterId: string;
209
+ Status?: number;
340
210
  /**
341
- * CptJson的具体信息
211
+ * 凭证颁发者Did
342
212
  */
343
- CptJson: string;
213
+ Issuer?: string;
344
214
  /**
345
- * cptId 不填默认自增
215
+ * VC摘要,对应凭证Proof的vcDigest字段
346
216
  */
347
- CptId?: number;
348
- }
349
- /**
350
- * CreateTDidByPublicKey返回参数结构体
351
- */
352
- export interface CreateTDidByPublicKeyResponse {
217
+ VCDigest?: string;
353
218
  /**
354
- * did具体信息
219
+ * 交易摘要,对应凭证Proof的txDigest字段
355
220
  */
356
- Did: string;
221
+ TXDigest?: string;
357
222
  /**
358
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
223
+ * 颁布凭证的UTC时间戳
359
224
  */
360
- RequestId?: string;
361
- }
362
- /**
363
- * 验证凭证签名
364
- */
365
- export interface Proof {
366
- /**
367
- * 创建时间
368
- */
369
- Created: number;
225
+ IssueTime?: number;
370
226
  /**
371
- * 创建着did
227
+ * 凭证过期的UTC时间戳
372
228
  */
373
- Creator: string;
229
+ ExpireTime?: number;
374
230
  /**
375
- * salt值
231
+ * 凭证模板id
376
232
  */
377
- SaltJson: string;
233
+ CPTId?: number;
378
234
  /**
379
- * 签名
235
+ * 凭证签名
380
236
  */
381
- SignatureValue: string;
237
+ Signature?: string;
382
238
  /**
383
- * type类型
239
+ * 元数据摘要
384
240
  */
385
- Type: string;
241
+ MetaDigest?: string;
386
242
  }
387
243
  /**
388
- * 验证凭证参数值
244
+ * CreateTDidByPubKey请求参数结构体
389
245
  */
390
- export interface VerifyFunctionArg {
246
+ export interface CreateTDidByPubKeyRequest {
391
247
  /**
392
- * CPT ID
248
+ * DID应用id
393
249
  */
394
- CptId: number;
250
+ DAPId?: number;
395
251
  /**
396
- * issuer did
252
+ * pem格式的认证公钥
397
253
  */
398
- Issuer: string;
254
+ PublicKey?: string;
399
255
  /**
400
- * 过期时间
256
+ * 自定义DID初始化属性json字符串
401
257
  */
402
- ExpirationDate: number;
258
+ CustomAttribute?: string;
403
259
  /**
404
- * 声明
260
+ * 0:did存在返回错误,1:did存在返回该did,默认:0
405
261
  */
406
- ClaimJson: string;
407
- /**
408
- * 颁发时间
409
- */
410
- IssuanceDate: number;
411
- /**
412
- * context值
413
- */
414
- Context: string;
415
- /**
416
- * id值
417
- */
418
- Id: string;
419
- /**
420
- * 签名值
421
- */
422
- Proof: Proof;
423
- /**
424
- * type值
425
- */
426
- Type: Array<string>;
262
+ IgnoreExisted?: number;
427
263
  }
428
264
  /**
429
- * 创建凭证入参的FunctionArg
265
+ * DeactivateTDid请求参数结构体
430
266
  */
431
- export interface FunctionArg {
267
+ export interface DeactivateTDidRequest {
432
268
  /**
433
- * CPT ID
269
+ * DID标识符
434
270
  */
435
- CptId: number;
271
+ Did?: string;
436
272
  /**
437
- * 签发者 did
273
+ * 设置DID禁用状态的临时凭证内容,通过创建凭证接口(CreateCredential)生成并签名,凭证类型为:OperateCredential, 为安全起见凭证过期时间不适合太长,建议设置为1分钟内
438
274
  */
439
- Issuer: string;
275
+ OperateCredential?: string;
440
276
  /**
441
- * 过期时间
277
+ * DID应用Id
442
278
  */
443
- ExpirationDate: string;
279
+ DAPId?: number;
444
280
  /**
445
- * 声明
281
+ * 是否禁用
446
282
  */
447
- ClaimJson: string;
283
+ Deactivated?: string;
448
284
  }
449
285
  /**
450
- * CreateTDidByPrivateKey请求参数结构体
286
+ * CheckNewPurchase返回参数结构体
451
287
  */
452
- export interface CreateTDidByPrivateKeyRequest {
453
- /**
454
- * 网络ID
455
- */
456
- ClusterId: string;
457
- /**
458
- * 群组ID
459
- */
460
- GroupId: number;
288
+ export interface CheckNewPurchaseResponse {
461
289
  /**
462
- * 私钥
290
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
463
291
  */
464
- PrivateKey: string;
292
+ RequestId?: string;
465
293
  }
466
294
  /**
467
- * VerifyCredential请求参数结构体
295
+ * UpdateCredentialState返回参数结构体
468
296
  */
469
- export interface VerifyCredentialRequest {
297
+ export interface UpdateCredentialStateResponse {
470
298
  /**
471
- * 参数集合
299
+ * 更新是否成功
300
+ 注意:此字段可能返回 null,表示取不到有效值。
472
301
  */
473
- FunctionArg: VerifyFunctionArg;
474
- }
475
- /**
476
- * SetCredentialStatus请求参数结构体
477
- */
478
- export interface SetCredentialStatusRequest {
302
+ Result?: boolean;
479
303
  /**
480
- * 凭证状态
304
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
481
305
  */
482
- CredentialStatus: CredentialStatus;
306
+ RequestId?: string;
483
307
  }
484
308
  /**
485
- * GetCptInfo请求参数结构体
309
+ * 链上交易信息
486
310
  */
487
- export interface GetCptInfoRequest {
311
+ export interface ChainTransaction {
488
312
  /**
489
- * Cpt索引
313
+ * 交易哈希
490
314
  */
491
- CptIndex: number;
315
+ TransactionHash: string;
492
316
  }
493
317
  /**
494
- * GetCredentialStatus返回参数结构体
318
+ * DeactivateTDid返回参数结构体
495
319
  */
496
- export interface GetCredentialStatusResponse {
320
+ export interface DeactivateTDidResponse {
497
321
  /**
498
- * 凭证状态信息
322
+ * 上链交易信息
499
323
  */
500
- CredentialStatus: CredentialStatus;
324
+ Transaction?: ChainTransaction;
501
325
  /**
502
326
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
503
327
  */
504
328
  RequestId?: string;
505
329
  }
506
330
  /**
507
- * RegisterCpt返回参数结构体
331
+ * CreateTDidByHost返回参数结构体
508
332
  */
509
- export interface RegisterCptResponse {
333
+ export interface CreateTDidByHostResponse {
510
334
  /**
511
- * 凭证模板索引
335
+ * DID标识
512
336
  */
513
- Id: number;
337
+ Did?: string;
514
338
  /**
515
- * 凭证模板id
339
+ * 链上交易信息
516
340
  */
517
- CptId: number;
341
+ Transaction?: ChainTransaction;
518
342
  /**
519
343
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
520
344
  */
@@ -1,10 +1,10 @@
1
1
  export declare const teo: {
2
- v20220106: {
3
- Client: typeof import("./v20220106/teo_client").Client;
4
- Models: typeof import("./v20220106/teo_models");
5
- };
6
2
  v20220901: {
7
3
  Client: typeof import("./v20220901/teo_client").Client;
8
4
  Models: typeof import("./v20220901/teo_models");
9
5
  };
6
+ v20220106: {
7
+ Client: typeof import("./v20220106/teo_client").Client;
8
+ Models: typeof import("./v20220106/teo_models");
9
+ };
10
10
  };
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.teo = void 0;
4
- const v20220106_1 = require("./v20220106");
5
4
  const v20220901_1 = require("./v20220901");
5
+ const v20220106_1 = require("./v20220106");
6
6
  exports.teo = {
7
- v20220106: v20220106_1.v20220106,
8
7
  v20220901: v20220901_1.v20220901,
8
+ v20220106: v20220106_1.v20220106,
9
9
  };