aloux-iam 0.0.117 → 0.0.119
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/.gitattributes +2 -2
- package/CONTRIBUTING.md +1 -1
- package/LICENSE +21 -21
- package/README.md +271 -271
- package/index.js +38 -38
- package/lib/config/utils.js +13 -13
- package/lib/controllers/auth.js +166 -166
- package/lib/controllers/business.js +204 -0
- package/lib/controllers/company.js +154 -0
- package/lib/controllers/functions.js +86 -86
- package/lib/controllers/history.js +97 -97
- package/lib/controllers/label.js +82 -82
- package/lib/controllers/log.js +278 -268
- package/lib/controllers/menu.js +101 -101
- package/lib/controllers/operationsAWS.js +228 -228
- package/lib/controllers/permission.js +90 -90
- package/lib/controllers/user.js +884 -880
- package/lib/middleware.js +148 -146
- package/lib/models/Business.js +48 -14
- package/lib/models/Company.js +14 -0
- package/lib/models/Functions.js +13 -13
- package/lib/models/History.js +15 -15
- package/lib/models/Label.js +13 -13
- package/lib/models/Log.js +11 -11
- package/lib/models/Menu.js +17 -17
- package/lib/models/Permission.js +16 -16
- package/lib/models/User.js +136 -115
- package/lib/models/UserProvisional.js +10 -10
- package/lib/router.js +142 -104
- package/lib/services/auth.js +958 -958
- package/lib/services/bigQuery.js +87 -87
- package/lib/services/s3.js +71 -71
- package/lib/services/ses.js +97 -97
- package/lib/services/sns.js +21 -21
- package/lib/services/user.js +99 -99
- package/lib/swagger.yaml +1231 -1231
- package/package.json +38 -38
package/package.json
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "aloux-iam",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Aloux IAM for APIs ",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"test": ""
|
|
8
|
-
},
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/alouxDeveloper/aloux-sdk#readme"
|
|
12
|
-
},
|
|
13
|
-
"keywords": [
|
|
14
|
-
"aloux",
|
|
15
|
-
"aloux-iam",
|
|
16
|
-
"IAM"
|
|
17
|
-
],
|
|
18
|
-
"author": "Aloux",
|
|
19
|
-
"license": "MIT",
|
|
20
|
-
"homepage": "https://github.com/alouxDeveloper/aloux-sdk#readme",
|
|
21
|
-
"dependencies": {
|
|
22
|
-
"@aws-sdk/client-s3": "^3.293.0",
|
|
23
|
-
"@aws-sdk/client-ses": "^3.293.0",
|
|
24
|
-
"@aws-sdk/client-sns": "^3.293.0",
|
|
25
|
-
"@google-cloud/bigquery": "^5.12.0",
|
|
26
|
-
"@google-cloud/bigquery-storage": "^4.2.1",
|
|
27
|
-
"@google-cloud/storage": "^5.7.0",
|
|
28
|
-
"bcryptjs": "^2.4.3",
|
|
29
|
-
"cookie-parser": "^1.4.6",
|
|
30
|
-
"dayjs": "^1.11.9",
|
|
31
|
-
"express": "^4.19.2",
|
|
32
|
-
"jsonwebtoken": "^9.0.0",
|
|
33
|
-
"method-override": "^3.0.0",
|
|
34
|
-
"mongodb": "^3.5.11",
|
|
35
|
-
"mongoose": "^5.13.3",
|
|
36
|
-
"yamljs": "^0.3.0"
|
|
37
|
-
}
|
|
38
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "aloux-iam",
|
|
3
|
+
"version": "0.0.119",
|
|
4
|
+
"description": "Aloux IAM for APIs ",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": ""
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/alouxDeveloper/aloux-sdk#readme"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"aloux",
|
|
15
|
+
"aloux-iam",
|
|
16
|
+
"IAM"
|
|
17
|
+
],
|
|
18
|
+
"author": "Aloux",
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"homepage": "https://github.com/alouxDeveloper/aloux-sdk#readme",
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@aws-sdk/client-s3": "^3.293.0",
|
|
23
|
+
"@aws-sdk/client-ses": "^3.293.0",
|
|
24
|
+
"@aws-sdk/client-sns": "^3.293.0",
|
|
25
|
+
"@google-cloud/bigquery": "^5.12.0",
|
|
26
|
+
"@google-cloud/bigquery-storage": "^4.2.1",
|
|
27
|
+
"@google-cloud/storage": "^5.7.0",
|
|
28
|
+
"bcryptjs": "^2.4.3",
|
|
29
|
+
"cookie-parser": "^1.4.6",
|
|
30
|
+
"dayjs": "^1.11.9",
|
|
31
|
+
"express": "^4.19.2",
|
|
32
|
+
"jsonwebtoken": "^9.0.0",
|
|
33
|
+
"method-override": "^3.0.0",
|
|
34
|
+
"mongodb": "^3.5.11",
|
|
35
|
+
"mongoose": "^5.13.3",
|
|
36
|
+
"yamljs": "^0.3.0"
|
|
37
|
+
}
|
|
38
|
+
}
|