tencentcloud-sdk-nodejs 4.0.646 → 4.0.647
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/CHANGELOG.md +199 -0
- package/SERVICE_CHANGELOG.md +415 -422
- package/package.json +1 -1
- package/products.md +20 -20
- package/src/common/sdk_version.ts +1 -1
- package/src/services/asr/v20190614/asr_models.ts +3 -0
- package/src/services/cdn/v20180606/cdn_models.ts +3 -3
- package/src/services/cme/v20191029/cme_models.ts +4 -0
- package/src/services/ess/v20201111/ess_models.ts +16 -2
- package/src/services/essbasic/v20210526/essbasic_models.ts +9 -0
- package/src/services/faceid/v20180301/faceid_models.ts +31 -26
- package/src/services/gme/v20180711/gme_models.ts +1 -1
- package/src/services/iai/v20180301/iai_models.ts +20 -20
- package/src/services/lcic/v20220817/lcic_models.ts +12 -0
- package/src/services/partners/v20180321/partners_client.ts +1 -0
- package/src/services/partners/v20180321/partners_models.ts +49 -28
- package/src/services/postgres/v20170312/postgres_client.ts +4 -2
- package/src/services/postgres/v20170312/postgres_models.ts +237 -149
- package/src/services/tdid/v20210519/tdid_client.ts +17 -62
- package/src/services/tdid/v20210519/tdid_models.ts +54 -235
- package/src/services/tiw/v20190919/tiw_models.ts +15 -0
- package/src/services/tke/v20180525/tke_models.ts +2 -2
- package/src/services/trtc/v20190722/trtc_client.ts +1 -1
- package/src/services/vpc/v20170312/vpc_models.ts +7 -7
- package/src/services/waf/v20180125/waf_models.ts +8 -7
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/asr/v20190614/asr_models.d.ts +3 -0
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +3 -3
- package/tencentcloud/services/cme/v20191029/cme_models.d.ts +4 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +16 -2
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +9 -0
- package/tencentcloud/services/faceid/v20180301/faceid_models.d.ts +31 -26
- package/tencentcloud/services/gme/v20180711/gme_models.d.ts +1 -1
- package/tencentcloud/services/iai/v20180301/iai_models.d.ts +20 -20
- package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +12 -0
- package/tencentcloud/services/partners/v20180321/partners_models.d.ts +48 -28
- package/tencentcloud/services/postgres/v20170312/postgres_client.d.ts +2 -0
- package/tencentcloud/services/postgres/v20170312/postgres_client.js +2 -0
- package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +237 -149
- package/tencentcloud/services/tdid/v20210519/tdid_client.d.ts +6 -24
- package/tencentcloud/services/tdid/v20210519/tdid_client.js +7 -31
- package/tencentcloud/services/tdid/v20210519/tdid_models.d.ts +54 -226
- package/tencentcloud/services/tiw/v20190919/tiw_models.d.ts +15 -0
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +2 -2
- package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +1 -1
- package/tencentcloud/services/trtc/v20190722/trtc_client.js +1 -1
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +7 -7
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +8 -7
- package/test/tdid.v20210519.test.js +4 -34
|
@@ -68,16 +68,6 @@ it("tdid.v20210519.CreateTDid", async function () {
|
|
|
68
68
|
}
|
|
69
69
|
})
|
|
70
70
|
|
|
71
|
-
it("tdid.v20210519.GetCredentialCptRank", async function () {
|
|
72
|
-
try {
|
|
73
|
-
const data = await client.GetCredentialCptRank({})
|
|
74
|
-
expect(data).to.be.ok
|
|
75
|
-
} catch(error) {
|
|
76
|
-
expect(error.requestId).to.be.ok
|
|
77
|
-
expect(error.code).to.be.ok
|
|
78
|
-
}
|
|
79
|
-
})
|
|
80
|
-
|
|
81
71
|
it("tdid.v20210519.CreateCredential", async function () {
|
|
82
72
|
try {
|
|
83
73
|
const data = await client.CreateCredential({})
|
|
@@ -98,9 +88,9 @@ it("tdid.v20210519.CreateTDidByPublicKey", async function () {
|
|
|
98
88
|
}
|
|
99
89
|
})
|
|
100
90
|
|
|
101
|
-
it("tdid.v20210519.
|
|
91
|
+
it("tdid.v20210519.GetCredentialStatus", async function () {
|
|
102
92
|
try {
|
|
103
|
-
const data = await client.
|
|
93
|
+
const data = await client.GetCredentialStatus({})
|
|
104
94
|
expect(data).to.be.ok
|
|
105
95
|
} catch(error) {
|
|
106
96
|
expect(error.requestId).to.be.ok
|
|
@@ -138,19 +128,9 @@ it("tdid.v20210519.AddLabel", async function () {
|
|
|
138
128
|
}
|
|
139
129
|
})
|
|
140
130
|
|
|
141
|
-
it("tdid.v20210519.
|
|
142
|
-
try {
|
|
143
|
-
const data = await client.GetCredentialStatus({})
|
|
144
|
-
expect(data).to.be.ok
|
|
145
|
-
} catch(error) {
|
|
146
|
-
expect(error.requestId).to.be.ok
|
|
147
|
-
expect(error.code).to.be.ok
|
|
148
|
-
}
|
|
149
|
-
})
|
|
150
|
-
|
|
151
|
-
it("tdid.v20210519.GetConsortiumClusterList", async function () {
|
|
131
|
+
it("tdid.v20210519.RegisterCpt", async function () {
|
|
152
132
|
try {
|
|
153
|
-
const data = await client.
|
|
133
|
+
const data = await client.RegisterCpt({})
|
|
154
134
|
expect(data).to.be.ok
|
|
155
135
|
} catch(error) {
|
|
156
136
|
expect(error.requestId).to.be.ok
|
|
@@ -188,14 +168,4 @@ it("tdid.v20210519.SetCredentialStatus", async function () {
|
|
|
188
168
|
}
|
|
189
169
|
})
|
|
190
170
|
|
|
191
|
-
it("tdid.v20210519.RegisterCpt", async function () {
|
|
192
|
-
try {
|
|
193
|
-
const data = await client.RegisterCpt({})
|
|
194
|
-
expect(data).to.be.ok
|
|
195
|
-
} catch(error) {
|
|
196
|
-
expect(error.requestId).to.be.ok
|
|
197
|
-
expect(error.code).to.be.ok
|
|
198
|
-
}
|
|
199
|
-
})
|
|
200
|
-
|
|
201
171
|
})
|