@alicloud/dytnsapi20200217 2.6.0 → 2.7.0
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 +65 -0
- package/dist/client.js +552 -399
- package/dist/client.js.map +1 -1
- package/package.json +5 -5
- package/src/client.ts +168 -0
package/dist/client.d.ts
CHANGED
|
@@ -1223,6 +1223,56 @@ export declare class QueryPhoneNumberOnlineTimeResponse extends $tea.Model {
|
|
|
1223
1223
|
[key: string]: any;
|
|
1224
1224
|
});
|
|
1225
1225
|
}
|
|
1226
|
+
export declare class QueryPhoneTwiceTelVerifyRequest extends $tea.Model {
|
|
1227
|
+
authCode?: string;
|
|
1228
|
+
inputNumber?: string;
|
|
1229
|
+
mask?: string;
|
|
1230
|
+
ownerId?: number;
|
|
1231
|
+
resourceOwnerAccount?: string;
|
|
1232
|
+
resourceOwnerId?: number;
|
|
1233
|
+
startTime?: string;
|
|
1234
|
+
static names(): {
|
|
1235
|
+
[key: string]: string;
|
|
1236
|
+
};
|
|
1237
|
+
static types(): {
|
|
1238
|
+
[key: string]: any;
|
|
1239
|
+
};
|
|
1240
|
+
constructor(map?: {
|
|
1241
|
+
[key: string]: any;
|
|
1242
|
+
});
|
|
1243
|
+
}
|
|
1244
|
+
export declare class QueryPhoneTwiceTelVerifyResponseBody extends $tea.Model {
|
|
1245
|
+
accessDeniedDetail?: string;
|
|
1246
|
+
code?: string;
|
|
1247
|
+
data?: QueryPhoneTwiceTelVerifyResponseBodyData;
|
|
1248
|
+
message?: string;
|
|
1249
|
+
requestId?: string;
|
|
1250
|
+
static names(): {
|
|
1251
|
+
[key: string]: string;
|
|
1252
|
+
};
|
|
1253
|
+
static types(): {
|
|
1254
|
+
[key: string]: any;
|
|
1255
|
+
};
|
|
1256
|
+
constructor(map?: {
|
|
1257
|
+
[key: string]: any;
|
|
1258
|
+
});
|
|
1259
|
+
}
|
|
1260
|
+
export declare class QueryPhoneTwiceTelVerifyResponse extends $tea.Model {
|
|
1261
|
+
headers?: {
|
|
1262
|
+
[key: string]: string;
|
|
1263
|
+
};
|
|
1264
|
+
statusCode?: number;
|
|
1265
|
+
body?: QueryPhoneTwiceTelVerifyResponseBody;
|
|
1266
|
+
static names(): {
|
|
1267
|
+
[key: string]: string;
|
|
1268
|
+
};
|
|
1269
|
+
static types(): {
|
|
1270
|
+
[key: string]: any;
|
|
1271
|
+
};
|
|
1272
|
+
constructor(map?: {
|
|
1273
|
+
[key: string]: any;
|
|
1274
|
+
});
|
|
1275
|
+
}
|
|
1226
1276
|
export declare class QueryTagApplyRuleRequest extends $tea.Model {
|
|
1227
1277
|
ownerId?: number;
|
|
1228
1278
|
resourceOwnerAccount?: string;
|
|
@@ -1953,6 +2003,19 @@ export declare class QueryPhoneNumberOnlineTimeResponseBodyData extends $tea.Mod
|
|
|
1953
2003
|
[key: string]: any;
|
|
1954
2004
|
});
|
|
1955
2005
|
}
|
|
2006
|
+
export declare class QueryPhoneTwiceTelVerifyResponseBodyData extends $tea.Model {
|
|
2007
|
+
carrierCode?: string;
|
|
2008
|
+
verifyResult?: number;
|
|
2009
|
+
static names(): {
|
|
2010
|
+
[key: string]: string;
|
|
2011
|
+
};
|
|
2012
|
+
static types(): {
|
|
2013
|
+
[key: string]: any;
|
|
2014
|
+
};
|
|
2015
|
+
constructor(map?: {
|
|
2016
|
+
[key: string]: any;
|
|
2017
|
+
});
|
|
2018
|
+
}
|
|
1956
2019
|
export declare class QueryTagApplyRuleResponseBodyData extends $tea.Model {
|
|
1957
2020
|
applyMaterialDesc?: string;
|
|
1958
2021
|
autoAudit?: number;
|
|
@@ -2516,6 +2579,8 @@ export default class Client extends OpenApi {
|
|
|
2516
2579
|
queryAvailableAuthCode(request: QueryAvailableAuthCodeRequest): Promise<QueryAvailableAuthCodeResponse>;
|
|
2517
2580
|
queryPhoneNumberOnlineTimeWithOptions(request: QueryPhoneNumberOnlineTimeRequest, runtime: $Util.RuntimeOptions): Promise<QueryPhoneNumberOnlineTimeResponse>;
|
|
2518
2581
|
queryPhoneNumberOnlineTime(request: QueryPhoneNumberOnlineTimeRequest): Promise<QueryPhoneNumberOnlineTimeResponse>;
|
|
2582
|
+
queryPhoneTwiceTelVerifyWithOptions(request: QueryPhoneTwiceTelVerifyRequest, runtime: $Util.RuntimeOptions): Promise<QueryPhoneTwiceTelVerifyResponse>;
|
|
2583
|
+
queryPhoneTwiceTelVerify(request: QueryPhoneTwiceTelVerifyRequest): Promise<QueryPhoneTwiceTelVerifyResponse>;
|
|
2519
2584
|
queryTagApplyRuleWithOptions(request: QueryTagApplyRuleRequest, runtime: $Util.RuntimeOptions): Promise<QueryTagApplyRuleResponse>;
|
|
2520
2585
|
queryTagApplyRule(request: QueryTagApplyRuleRequest): Promise<QueryTagApplyRuleResponse>;
|
|
2521
2586
|
queryTagInfoBySelectionWithOptions(request: QueryTagInfoBySelectionRequest, runtime: $Util.RuntimeOptions): Promise<QueryTagInfoBySelectionResponse>;
|