@nocobase/plugin-verification 1.4.0-beta.1 → 1.5.0-alpha.3

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 (18) hide show
  1. package/dist/externalVersion.js +6 -6
  2. package/dist/node_modules/@alicloud/dysmsapi20170525/dist/client.js +2 -2
  3. package/dist/node_modules/@alicloud/dysmsapi20170525/package.json +1 -1
  4. package/dist/node_modules/@alicloud/openapi-client/dist/client.d.ts +44 -0
  5. package/dist/node_modules/@alicloud/openapi-client/dist/client.js +2 -1
  6. package/dist/node_modules/@alicloud/openapi-client/package.json +1 -1
  7. package/dist/node_modules/@alicloud/openapi-client/src/client.ts +429 -51
  8. package/dist/node_modules/@alicloud/tea-util/package.json +1 -1
  9. package/dist/node_modules/tencentcloud-sdk-nodejs/package.json +1 -1
  10. package/package.json +3 -3
  11. package/dist/node_modules/@alicloud/dysmsapi20170525/node_modules/@alicloud/openapi-client/dist/client.d.ts +0 -291
  12. package/dist/node_modules/@alicloud/dysmsapi20170525/node_modules/@alicloud/openapi-client/dist/client.js +0 -1192
  13. package/dist/node_modules/@alicloud/dysmsapi20170525/node_modules/@alicloud/openapi-client/package.json +0 -37
  14. package/dist/node_modules/@alicloud/dysmsapi20170525/node_modules/@alicloud/openapi-client/src/client.ts +0 -1389
  15. /package/dist/node_modules/@alicloud/{dysmsapi20170525/node_modules/@alicloud/openapi-client → openapi-client}/node_modules/@alicloud/openapi-util/dist/client.d.ts +0 -0
  16. /package/dist/node_modules/@alicloud/{dysmsapi20170525/node_modules/@alicloud/openapi-client → openapi-client}/node_modules/@alicloud/openapi-util/dist/client.js +0 -0
  17. /package/dist/node_modules/@alicloud/{dysmsapi20170525/node_modules/@alicloud/openapi-client → openapi-client}/node_modules/@alicloud/openapi-util/package.json +0 -0
  18. /package/dist/node_modules/@alicloud/{dysmsapi20170525/node_modules/@alicloud/openapi-client → openapi-client}/node_modules/@alicloud/openapi-util/src/client.ts +0 -0
@@ -1 +1 @@
1
- {"name":"@alicloud/dysmsapi20170525","version":"2.0.17","description":"","main":"dist/client.js","scripts":{"test":"mocha --reporter spec --timeout 3000 test/*.test.js","test-cov":"nyc -e .ts -r=html -r=text -r=lcov npm run test","build":"tsc","prepublishOnly":"tsc"},"author":"Alibaba Cloud SDK","license":"Apache-2.0","devDependencies":{"@types/node":"^12.12.26","nyc":"^15.0.0","source-map-support":"^0.5.16","ts-node":"^8.6.2","typescript":"^3.7.5"},"dependencies":{"@alicloud/tea-typescript":"^1.7.1","@alicloud/tea-util":"^1.4.4","@alicloud/openapi-client":"^0.4.1","@alicloud/endpoint-util":"^0.0.1","@alicloud/openapi-util":"^0.2.9"},"files":["dist","src"],"_lastModified":"2024-11-19T15:03:56.526Z"}
1
+ {"name":"@alicloud/dysmsapi20170525","version":"2.0.17","description":"","main":"dist/client.js","scripts":{"test":"mocha --reporter spec --timeout 3000 test/*.test.js","test-cov":"nyc -e .ts -r=html -r=text -r=lcov npm run test","build":"tsc","prepublishOnly":"tsc"},"author":"Alibaba Cloud SDK","license":"Apache-2.0","devDependencies":{"@types/node":"^12.12.26","nyc":"^15.0.0","source-map-support":"^0.5.16","ts-node":"^8.6.2","typescript":"^3.7.5"},"dependencies":{"@alicloud/tea-typescript":"^1.7.1","@alicloud/tea-util":"^1.4.4","@alicloud/openapi-client":"^0.4.1","@alicloud/endpoint-util":"^0.0.1","@alicloud/openapi-util":"^0.2.9"},"files":["dist","src"],"_lastModified":"2024-11-21T01:47:54.148Z"}
@@ -7,6 +7,23 @@ import Credential from '@alicloud/credentials';
7
7
  import SPI from '@alicloud/gateway-spi';
8
8
  import { Readable } from 'stream';
9
9
  import * as $tea from '@alicloud/tea-typescript';
10
+ export declare class GlobalParameters extends $tea.Model {
11
+ headers?: {
12
+ [key: string]: string;
13
+ };
14
+ queries?: {
15
+ [key: string]: string;
16
+ };
17
+ static names(): {
18
+ [key: string]: string;
19
+ };
20
+ static types(): {
21
+ [key: string]: any;
22
+ };
23
+ constructor(map?: {
24
+ [key: string]: any;
25
+ });
26
+ }
10
27
  /**
11
28
  * Model for initing client
12
29
  */
@@ -14,6 +31,7 @@ export declare class Config extends $tea.Model {
14
31
  accessKeyId?: string;
15
32
  accessKeySecret?: string;
16
33
  securityToken?: string;
34
+ bearerToken?: string;
17
35
  protocol?: string;
18
36
  method?: string;
19
37
  regionId?: string;
@@ -35,6 +53,11 @@ export declare class Config extends $tea.Model {
35
53
  type?: string;
36
54
  signatureVersion?: string;
37
55
  signatureAlgorithm?: string;
56
+ globalParameters?: GlobalParameters;
57
+ key?: string;
58
+ cert?: string;
59
+ ca?: string;
60
+ disableHttp2?: boolean;
38
61
  static names(): {
39
62
  [key: string]: string;
40
63
  };
@@ -57,6 +80,7 @@ export declare class OpenApiRequest extends $tea.Model {
57
80
  hostMap?: {
58
81
  [key: string]: string;
59
82
  };
83
+ endpointOverride?: string;
60
84
  static names(): {
61
85
  [key: string]: string;
62
86
  };
@@ -117,6 +141,11 @@ export default class Client {
117
141
  [key: string]: string;
118
142
  };
119
143
  _spi: SPI;
144
+ _globalParameters: GlobalParameters;
145
+ _key: string;
146
+ _cert: string;
147
+ _ca: string;
148
+ _disableHttp2: boolean;
120
149
  /**
121
150
  * Init client with Config
122
151
  * @param config config contains the necessary information to create a client
@@ -222,6 +251,16 @@ export default class Client {
222
251
  * @return security token
223
252
  */
224
253
  getSecurityToken(): Promise<string>;
254
+ /**
255
+ * Get bearer token by credential
256
+ * @return bearer token
257
+ */
258
+ getBearerToken(): Promise<string>;
259
+ /**
260
+ * Get credential type by credential
261
+ * @return credential type e.g. access_key
262
+ */
263
+ getType(): Promise<string>;
225
264
  /**
226
265
  * If inputValue is not null, return it or return defaultValue
227
266
  * @param inputValue users input value
@@ -234,6 +273,11 @@ export default class Client {
234
273
  * @param config config contains the necessary information to create a client
235
274
  */
236
275
  checkConfig(config: Config): void;
276
+ /**
277
+ * set gateway client
278
+ * @param spi.
279
+ */
280
+ setGatewayClient(spi: SPI): void;
237
281
  /**
238
282
  * set RPC header for debug
239
283
  * @param headers headers for debug, this header can be used only once.