comprodls-sdk 2.12.0 → 2.12.1
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/.eslintrc +28 -28
- package/.npmignore +5 -0
- package/README.md +371 -371
- package/dist/comprodls-sdk.js +11493 -11471
- package/dist/comprodls-sdk.min.js +14 -14
- package/grunt/publish.js +148 -148
- package/lib/comprodls.js +146 -146
- package/lib/config/index.js +337 -337
- package/lib/helpers/index.js +29 -29
- package/lib/helpers/lib/api/converter.js +119 -119
- package/lib/helpers/lib/api/index.js +120 -120
- package/lib/helpers/lib/api/validations.js +72 -72
- package/lib/helpers/lib/errors.js +129 -129
- package/lib/helpers/lib/utils.js +23 -23
- package/lib/helpers/lib/validator.js +100 -100
- package/lib/open_access/index.js +121 -121
- package/lib/services/activity/activity.js +209 -209
- package/lib/services/activity/attempt.js +431 -431
- package/lib/services/activity/index.js +28 -28
- package/lib/services/analytics/index.js +1555 -1555
- package/lib/services/attempts/index.js +342 -342
- package/lib/services/auth/classProduct.js +37 -37
- package/lib/services/auth/index.js +2541 -2541
- package/lib/services/collab/index.js +468 -468
- package/lib/services/drive/index.js +144 -144
- package/lib/services/integrations/index.js +279 -279
- package/lib/services/invitations/index.js +313 -313
- package/lib/services/lrs/index.js +459 -459
- package/lib/services/product/index.js +267 -267
- package/lib/services/pub/index.js +407 -407
- package/lib/services/push/index.js +187 -187
- package/lib/services/push/pubnubClientWrapper.js +557 -557
- package/lib/services/push/sessionStorage.js +64 -64
- package/lib/services/pushX/index.js +190 -190
- package/lib/services/pushX/pubnubClientWrapper.js +211 -211
- package/lib/services/sisevents/index.js +113 -113
- package/lib/services/spaces/index.js +976 -929
- package/lib/services/superuser/index.js +175 -175
- package/lib/services/workflows/index.js +464 -464
- package/lib/services/xapi/index.js +232 -232
- package/lib/token/index.js +114 -114
- package/lib/token/validations.js +88 -88
- package/package-lock.json +5095 -0
- package/package.json +1 -1
- package/test.js +50 -50
- package/.vscode/launch.json +0 -23
- package/npm-debug.log.189866131 +0 -0
- package/npm-debug.log.712840116 +0 -26
package/.eslintrc
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
|
|
2
|
-
{
|
|
3
|
-
"env": {
|
|
4
|
-
"node": true
|
|
5
|
-
},
|
|
6
|
-
"parserOptions": {
|
|
7
|
-
"ecmaVersion": 6,
|
|
8
|
-
"sourceType": "module",
|
|
9
|
-
|
|
10
|
-
"ecmaFeatures": {
|
|
11
|
-
"jsx": true
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
"rules": {
|
|
15
|
-
"block-scoped-var": 2,
|
|
16
|
-
"curly": 2,
|
|
17
|
-
"eol-last": 2,
|
|
18
|
-
"eqeqeq": [2, "smart"],
|
|
19
|
-
"new-cap": 1,
|
|
20
|
-
"no-extend-native": 2,
|
|
21
|
-
"no-mixed-spaces-and-tabs": 2,
|
|
22
|
-
"no-trailing-spaces": 2,
|
|
23
|
-
"no-undef": 2,
|
|
24
|
-
"no-use-before-define": [2, "nofunc"],
|
|
25
|
-
"no-unused-vars": 1,
|
|
26
|
-
"quotes": [2, "single", "avoid-escape"],
|
|
27
|
-
"semi": [2, "always"]
|
|
28
|
-
}
|
|
1
|
+
|
|
2
|
+
{
|
|
3
|
+
"env": {
|
|
4
|
+
"node": true
|
|
5
|
+
},
|
|
6
|
+
"parserOptions": {
|
|
7
|
+
"ecmaVersion": 6,
|
|
8
|
+
"sourceType": "module",
|
|
9
|
+
|
|
10
|
+
"ecmaFeatures": {
|
|
11
|
+
"jsx": true
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"rules": {
|
|
15
|
+
"block-scoped-var": 2,
|
|
16
|
+
"curly": 2,
|
|
17
|
+
"eol-last": 2,
|
|
18
|
+
"eqeqeq": [2, "smart"],
|
|
19
|
+
"new-cap": 1,
|
|
20
|
+
"no-extend-native": 2,
|
|
21
|
+
"no-mixed-spaces-and-tabs": 2,
|
|
22
|
+
"no-trailing-spaces": 2,
|
|
23
|
+
"no-undef": 2,
|
|
24
|
+
"no-use-before-define": [2, "nofunc"],
|
|
25
|
+
"no-unused-vars": 1,
|
|
26
|
+
"quotes": [2, "single", "avoid-escape"],
|
|
27
|
+
"semi": [2, "always"]
|
|
28
|
+
}
|
|
29
29
|
}
|