@solar-kit/planets 1.0.8 → 1.0.10
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/mercury/index.d.ts +1 -2
- package/mercury/index.js +1 -1
- package/mercury/index.js.map +1 -1
- package/mercury/model.d.ts +25 -0
- package/mercury/model.js +5 -0
- package/mercury/model.js.map +1 -0
- package/package.json +1 -1
package/mercury/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export default _default;
|
|
1
|
+
export * from './model';
|
package/mercury/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './model.js';
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/mercury/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../packages/planets/src/mercury/index.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../packages/planets/src/mercury/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export interface SmsLogin {
|
|
2
|
+
captcha: string;
|
|
3
|
+
cellphone: string;
|
|
4
|
+
remember: boolean;
|
|
5
|
+
service: string;
|
|
6
|
+
smsCode: string;
|
|
7
|
+
}
|
|
8
|
+
export interface Captcha {
|
|
9
|
+
jigsawImageBase64: string;
|
|
10
|
+
originalImageBase64: string;
|
|
11
|
+
result: boolean;
|
|
12
|
+
secretKey: string;
|
|
13
|
+
token: string;
|
|
14
|
+
captcha: string;
|
|
15
|
+
captchaType: string;
|
|
16
|
+
pointJson: string;
|
|
17
|
+
wordList: any[];
|
|
18
|
+
clientId: string;
|
|
19
|
+
clientSecret: string;
|
|
20
|
+
}
|
|
21
|
+
export declare const CaptchaType: {
|
|
22
|
+
readonly BlockPuzzle: "blockPuzzle";
|
|
23
|
+
readonly ClickWord: "clickWord";
|
|
24
|
+
};
|
|
25
|
+
export type CaptchaType = typeof CaptchaType[keyof typeof CaptchaType];
|
package/mercury/model.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"model.js","sourceRoot":"","sources":["../../../../packages/planets/src/mercury/model.ts"],"names":[],"mappings":"AAsBA,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,WAAW,EAAE,aAAa;IAC1B,SAAS,EAAE,WAAW;CACd,CAAA"}
|