@nocobase/plugin-verification 0.13.0-alpha.3 → 0.13.0-alpha.5
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/index.js +1 -519
- package/dist/index.js +37 -16
- package/dist/locale/pt-BR.js +22 -4
- package/dist/locale/zh-CN.js +22 -4
- package/dist/node_modules/@alicloud/dysmsapi20170525/dist/client.js +2 -2
- package/dist/node_modules/@alicloud/dysmsapi20170525/package.json +1 -1
- package/dist/node_modules/@alicloud/openapi-client/dist/client.js +1 -1
- package/dist/node_modules/@alicloud/openapi-client/package.json +1 -1
- package/dist/node_modules/@alicloud/tea-util/dist/client.js +1 -1
- package/dist/node_modules/@alicloud/tea-util/package.json +1 -1
- package/dist/node_modules/tencentcloud-sdk-nodejs/package.json +1 -1
- package/dist/node_modules/tencentcloud-sdk-nodejs/tencentcloud/index.js +4 -4
- package/dist/server/Plugin.js +53 -32
- package/dist/server/actions/index.js +33 -26
- package/dist/server/actions/verifications.js +55 -29
- package/dist/server/collections/verifications.js +22 -4
- package/dist/server/collections/verifications_providers.js +22 -4
- package/dist/server/constants.js +32 -7
- package/dist/server/index.js +46 -32
- package/dist/server/locale/index.js +36 -13
- package/dist/server/locale/zh-CN.js +22 -4
- package/dist/server/providers/index.js +42 -17
- package/dist/server/providers/sms-aliyun.js +40 -36
- package/dist/server/providers/sms-tencent.js +35 -28
- package/dist/swagger/index.json +117 -0
- package/package.json +2 -2
- package/dist/swagger/index.js +0 -131
|
@@ -1,15 +1,39 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
var
|
|
12
|
-
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
var providers_exports = {};
|
|
29
|
+
__export(providers_exports, {
|
|
30
|
+
Provider: () => Provider,
|
|
31
|
+
default: () => providers_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(providers_exports);
|
|
34
|
+
var import_path = __toESM(require("path"));
|
|
35
|
+
var import_utils = require("@nocobase/utils");
|
|
36
|
+
var import_constants = require("../constants");
|
|
13
37
|
class Provider {
|
|
14
38
|
constructor(plugin, options) {
|
|
15
39
|
this.plugin = plugin;
|
|
@@ -20,9 +44,9 @@ class Provider {
|
|
|
20
44
|
}
|
|
21
45
|
function providers_default(plugin, more = {}) {
|
|
22
46
|
const { providers } = plugin;
|
|
23
|
-
const natives = [
|
|
47
|
+
const natives = [import_constants.PROVIDER_TYPE_SMS_ALIYUN, import_constants.PROVIDER_TYPE_SMS_TENCENT].reduce(
|
|
24
48
|
(result, key) => Object.assign(result, {
|
|
25
|
-
[key]:
|
|
49
|
+
[key]: (0, import_utils.requireModule)(import_path.default.isAbsolute(key) ? key : import_path.default.join(__dirname, key))
|
|
26
50
|
}),
|
|
27
51
|
{}
|
|
28
52
|
);
|
|
@@ -30,6 +54,7 @@ function providers_default(plugin, more = {}) {
|
|
|
30
54
|
providers.register(name, provider);
|
|
31
55
|
}
|
|
32
56
|
}
|
|
33
|
-
|
|
34
|
-
exports
|
|
35
|
-
|
|
57
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
58
|
+
0 && (module.exports = {
|
|
59
|
+
Provider
|
|
60
|
+
});
|
|
@@ -1,56 +1,62 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var
|
|
4
|
-
var
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
17
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
18
|
-
enumerable: true,
|
|
19
|
-
get: function () { return e[k]; }
|
|
20
|
-
});
|
|
21
|
-
}
|
|
22
|
-
});
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
23
16
|
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
var sms_aliyun_exports = {};
|
|
29
|
+
__export(sms_aliyun_exports, {
|
|
30
|
+
default: () => sms_aliyun_default
|
|
31
|
+
});
|
|
32
|
+
module.exports = __toCommonJS(sms_aliyun_exports);
|
|
33
|
+
var import_dysmsapi20170525 = __toESM(require("@alicloud/dysmsapi20170525"));
|
|
34
|
+
var OpenApi = __toESM(require("@alicloud/openapi-client"));
|
|
35
|
+
var import_tea_util = require("@alicloud/tea-util");
|
|
36
|
+
var import__ = require(".");
|
|
37
|
+
class sms_aliyun_default extends import__.Provider {
|
|
32
38
|
client;
|
|
33
39
|
constructor(plugin, options) {
|
|
34
40
|
super(plugin, options);
|
|
35
41
|
const { accessKeyId, accessKeySecret, endpoint } = this.options;
|
|
36
|
-
const config = new
|
|
42
|
+
const config = new OpenApi.Config({
|
|
37
43
|
// 您的 AccessKey ID
|
|
38
44
|
accessKeyId,
|
|
39
45
|
// 您的 AccessKey Secret
|
|
40
46
|
accessKeySecret
|
|
41
47
|
});
|
|
42
48
|
config.endpoint = endpoint;
|
|
43
|
-
this.client = new
|
|
49
|
+
this.client = new import_dysmsapi20170525.default(config);
|
|
44
50
|
}
|
|
45
51
|
async send(phoneNumbers, data = {}) {
|
|
46
|
-
const request = new
|
|
52
|
+
const request = new import_dysmsapi20170525.SendSmsRequest({
|
|
47
53
|
phoneNumbers,
|
|
48
54
|
signName: this.options.sign,
|
|
49
55
|
templateCode: this.options.template,
|
|
50
56
|
templateParam: JSON.stringify(data)
|
|
51
57
|
});
|
|
52
58
|
try {
|
|
53
|
-
const { body } = await this.client.sendSmsWithOptions(request, new
|
|
59
|
+
const { body } = await this.client.sendSmsWithOptions(request, new import_tea_util.RuntimeOptions({}));
|
|
54
60
|
const err = new Error(body.message);
|
|
55
61
|
switch (body.code) {
|
|
56
62
|
case "OK":
|
|
@@ -72,5 +78,3 @@ class sms_aliyun_default extends _.Provider {
|
|
|
72
78
|
}
|
|
73
79
|
}
|
|
74
80
|
}
|
|
75
|
-
|
|
76
|
-
module.exports = sms_aliyun_default;
|
|
@@ -1,30 +1,39 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var
|
|
4
|
-
var
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
var
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
});
|
|
17
|
-
}
|
|
18
|
-
});
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
19
16
|
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
var sms_tencent_exports = {};
|
|
29
|
+
__export(sms_tencent_exports, {
|
|
30
|
+
default: () => sms_tencent_default
|
|
31
|
+
});
|
|
32
|
+
module.exports = __toCommonJS(sms_tencent_exports);
|
|
33
|
+
var import__ = require(".");
|
|
34
|
+
var tencentcloud = __toESM(require("tencentcloud-sdk-nodejs"));
|
|
35
|
+
const smsClient = tencentcloud.sms.v20210111.Client;
|
|
36
|
+
class sms_tencent_default extends import__.Provider {
|
|
28
37
|
client;
|
|
29
38
|
constructor(plugin, options) {
|
|
30
39
|
super(plugin, options);
|
|
@@ -67,5 +76,3 @@ class sms_tencent_default extends _.Provider {
|
|
|
67
76
|
throw error;
|
|
68
77
|
}
|
|
69
78
|
}
|
|
70
|
-
|
|
71
|
-
module.exports = sms_tencent_default;
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.0.2",
|
|
3
|
+
"info": {
|
|
4
|
+
"title": "NocoBase API - Verification plugin"
|
|
5
|
+
},
|
|
6
|
+
"tags": [],
|
|
7
|
+
"paths": {
|
|
8
|
+
"/verifications:list": {
|
|
9
|
+
"get": {
|
|
10
|
+
"tags": ["verifications"],
|
|
11
|
+
"description": "",
|
|
12
|
+
"parameters": [],
|
|
13
|
+
"responses": {
|
|
14
|
+
"200": {
|
|
15
|
+
"description": "OK"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"/verifications:get": {
|
|
21
|
+
"get": {
|
|
22
|
+
"tags": ["verifications"],
|
|
23
|
+
"description": "",
|
|
24
|
+
"parameters": [],
|
|
25
|
+
"responses": {
|
|
26
|
+
"200": {
|
|
27
|
+
"description": "OK"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"/verifications:create": {
|
|
33
|
+
"post": {
|
|
34
|
+
"tags": ["verifications"],
|
|
35
|
+
"description": "",
|
|
36
|
+
"parameters": [],
|
|
37
|
+
"responses": {
|
|
38
|
+
"200": {
|
|
39
|
+
"description": "OK"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"/verifications:update": {
|
|
45
|
+
"post": {
|
|
46
|
+
"tags": ["verifications"],
|
|
47
|
+
"description": "",
|
|
48
|
+
"parameters": [],
|
|
49
|
+
"responses": {
|
|
50
|
+
"200": {
|
|
51
|
+
"description": "OK"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"/verifications:destroy": {
|
|
57
|
+
"post": {
|
|
58
|
+
"tags": ["verifications"],
|
|
59
|
+
"description": "",
|
|
60
|
+
"parameters": [],
|
|
61
|
+
"responses": {
|
|
62
|
+
"200": {
|
|
63
|
+
"description": "OK"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"/verifications_providers:list": {
|
|
69
|
+
"get": {
|
|
70
|
+
"tags": ["verifications_providers"],
|
|
71
|
+
"description": "",
|
|
72
|
+
"parameters": [],
|
|
73
|
+
"responses": {
|
|
74
|
+
"200": {
|
|
75
|
+
"description": "OK"
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"/verifications_providers:create": {
|
|
81
|
+
"post": {
|
|
82
|
+
"tags": ["verifications_providers"],
|
|
83
|
+
"description": "",
|
|
84
|
+
"parameters": [],
|
|
85
|
+
"responses": {
|
|
86
|
+
"200": {
|
|
87
|
+
"description": "OK"
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"/verifications_providers:update": {
|
|
93
|
+
"post": {
|
|
94
|
+
"tags": ["verifications_providers"],
|
|
95
|
+
"description": "",
|
|
96
|
+
"parameters": [],
|
|
97
|
+
"responses": {
|
|
98
|
+
"200": {
|
|
99
|
+
"description": "OK"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"/verifications_providers:destroy": {
|
|
105
|
+
"post": {
|
|
106
|
+
"tags": ["verifications_providers"],
|
|
107
|
+
"description": "",
|
|
108
|
+
"parameters": [],
|
|
109
|
+
"responses": {
|
|
110
|
+
"200": {
|
|
111
|
+
"description": "OK"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"displayName.zh-CN": "验证码",
|
|
5
5
|
"description": "verification setting.",
|
|
6
6
|
"description.zh-CN": "验证码配置。",
|
|
7
|
-
"version": "0.13.0-alpha.
|
|
7
|
+
"version": "0.13.0-alpha.5",
|
|
8
8
|
"license": "AGPL-3.0",
|
|
9
9
|
"main": "./dist/server/index.js",
|
|
10
10
|
"devDependencies": {
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"@nocobase/test": "0.x",
|
|
30
30
|
"@nocobase/utils": "0.x"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "9eabe607b4a20c356fdb2fd95e40fa476986dcb0"
|
|
33
33
|
}
|
package/dist/swagger/index.js
DELETED
|
@@ -1,131 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
|
-
var openapi = "3.0.2";
|
|
6
|
-
var info = {
|
|
7
|
-
title: "NocoBase API - Verification plugin"
|
|
8
|
-
};
|
|
9
|
-
var tags = [];
|
|
10
|
-
var paths = {
|
|
11
|
-
"/verifications:list": {
|
|
12
|
-
get: {
|
|
13
|
-
tags: ["verifications"],
|
|
14
|
-
description: "",
|
|
15
|
-
parameters: [],
|
|
16
|
-
responses: {
|
|
17
|
-
"200": {
|
|
18
|
-
description: "OK"
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"/verifications:get": {
|
|
24
|
-
get: {
|
|
25
|
-
tags: ["verifications"],
|
|
26
|
-
description: "",
|
|
27
|
-
parameters: [],
|
|
28
|
-
responses: {
|
|
29
|
-
"200": {
|
|
30
|
-
description: "OK"
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
|
-
"/verifications:create": {
|
|
36
|
-
post: {
|
|
37
|
-
tags: ["verifications"],
|
|
38
|
-
description: "",
|
|
39
|
-
parameters: [],
|
|
40
|
-
responses: {
|
|
41
|
-
"200": {
|
|
42
|
-
description: "OK"
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
"/verifications:update": {
|
|
48
|
-
post: {
|
|
49
|
-
tags: ["verifications"],
|
|
50
|
-
description: "",
|
|
51
|
-
parameters: [],
|
|
52
|
-
responses: {
|
|
53
|
-
"200": {
|
|
54
|
-
description: "OK"
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
},
|
|
59
|
-
"/verifications:destroy": {
|
|
60
|
-
post: {
|
|
61
|
-
tags: ["verifications"],
|
|
62
|
-
description: "",
|
|
63
|
-
parameters: [],
|
|
64
|
-
responses: {
|
|
65
|
-
"200": {
|
|
66
|
-
description: "OK"
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
},
|
|
71
|
-
"/verifications_providers:list": {
|
|
72
|
-
get: {
|
|
73
|
-
tags: ["verifications_providers"],
|
|
74
|
-
description: "",
|
|
75
|
-
parameters: [],
|
|
76
|
-
responses: {
|
|
77
|
-
"200": {
|
|
78
|
-
description: "OK"
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
},
|
|
83
|
-
"/verifications_providers:create": {
|
|
84
|
-
post: {
|
|
85
|
-
tags: ["verifications_providers"],
|
|
86
|
-
description: "",
|
|
87
|
-
parameters: [],
|
|
88
|
-
responses: {
|
|
89
|
-
"200": {
|
|
90
|
-
description: "OK"
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
},
|
|
95
|
-
"/verifications_providers:update": {
|
|
96
|
-
post: {
|
|
97
|
-
tags: ["verifications_providers"],
|
|
98
|
-
description: "",
|
|
99
|
-
parameters: [],
|
|
100
|
-
responses: {
|
|
101
|
-
"200": {
|
|
102
|
-
description: "OK"
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
},
|
|
107
|
-
"/verifications_providers:destroy": {
|
|
108
|
-
post: {
|
|
109
|
-
tags: ["verifications_providers"],
|
|
110
|
-
description: "",
|
|
111
|
-
parameters: [],
|
|
112
|
-
responses: {
|
|
113
|
-
"200": {
|
|
114
|
-
description: "OK"
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
};
|
|
120
|
-
var swagger_default = {
|
|
121
|
-
openapi,
|
|
122
|
-
info,
|
|
123
|
-
tags,
|
|
124
|
-
paths
|
|
125
|
-
};
|
|
126
|
-
|
|
127
|
-
exports.default = swagger_default;
|
|
128
|
-
exports.info = info;
|
|
129
|
-
exports.openapi = openapi;
|
|
130
|
-
exports.paths = paths;
|
|
131
|
-
exports.tags = tags;
|