@freelog/tools-lib 0.1.94 → 0.1.95
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/service-API/index.d.ts +2 -0
- package/dist/tools-lib.cjs.development.js +27 -1
- package/dist/tools-lib.cjs.development.js.map +1 -1
- package/dist/tools-lib.cjs.production.min.js +1 -1
- package/dist/tools-lib.cjs.production.min.js.map +1 -1
- package/dist/tools-lib.esm.js +27 -1
- package/dist/tools-lib.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/service-API/index.ts +31 -29
|
@@ -10,6 +10,7 @@ import * as Transaction from './transactions';
|
|
|
10
10
|
import * as Captcha from './captcha';
|
|
11
11
|
import * as Event from './events';
|
|
12
12
|
import * as Activity from './activities';
|
|
13
|
+
import * as TestQualification from './testQualifications';
|
|
13
14
|
declare const FServiceAPI: {
|
|
14
15
|
Node: typeof Node;
|
|
15
16
|
Exhibit: typeof Exhibit;
|
|
@@ -23,5 +24,6 @@ declare const FServiceAPI: {
|
|
|
23
24
|
Captcha: typeof Captcha;
|
|
24
25
|
Event: typeof Event;
|
|
25
26
|
Activity: typeof Activity;
|
|
27
|
+
TestQualification: typeof TestQualification;
|
|
26
28
|
};
|
|
27
29
|
export default FServiceAPI;
|
|
@@ -2210,6 +2210,31 @@ var Activity = {
|
|
|
2210
2210
|
adsDetails: adsDetails
|
|
2211
2211
|
};
|
|
2212
2212
|
|
|
2213
|
+
function betaCodesActivate(_ref) {
|
|
2214
|
+
var params = _extends({}, _ref);
|
|
2215
|
+
|
|
2216
|
+
return FUtil.Request({
|
|
2217
|
+
method: 'POST',
|
|
2218
|
+
url: '/v2/testQualifications/beta/codes/activate',
|
|
2219
|
+
data: params
|
|
2220
|
+
});
|
|
2221
|
+
}
|
|
2222
|
+
function betaApply(_ref2) {
|
|
2223
|
+
var params = _extends({}, _ref2);
|
|
2224
|
+
|
|
2225
|
+
return FUtil.Request({
|
|
2226
|
+
method: 'POST',
|
|
2227
|
+
url: '/v2/testQualifications/beta/apply',
|
|
2228
|
+
data: params
|
|
2229
|
+
});
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2232
|
+
var TestQualification = {
|
|
2233
|
+
__proto__: null,
|
|
2234
|
+
betaCodesActivate: betaCodesActivate,
|
|
2235
|
+
betaApply: betaApply
|
|
2236
|
+
};
|
|
2237
|
+
|
|
2213
2238
|
var FServiceAPI = {
|
|
2214
2239
|
Node: Node,
|
|
2215
2240
|
Exhibit: Exhibit,
|
|
@@ -2222,7 +2247,8 @@ var FServiceAPI = {
|
|
|
2222
2247
|
Transaction: Transaction,
|
|
2223
2248
|
Captcha: Captcha,
|
|
2224
2249
|
Event: Event,
|
|
2225
|
-
Activity: Activity
|
|
2250
|
+
Activity: Activity,
|
|
2251
|
+
TestQualification: TestQualification
|
|
2226
2252
|
};
|
|
2227
2253
|
|
|
2228
2254
|
var codeMessage = {
|