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.
Files changed (48) hide show
  1. package/.eslintrc +28 -28
  2. package/.npmignore +5 -0
  3. package/README.md +371 -371
  4. package/dist/comprodls-sdk.js +11493 -11471
  5. package/dist/comprodls-sdk.min.js +14 -14
  6. package/grunt/publish.js +148 -148
  7. package/lib/comprodls.js +146 -146
  8. package/lib/config/index.js +337 -337
  9. package/lib/helpers/index.js +29 -29
  10. package/lib/helpers/lib/api/converter.js +119 -119
  11. package/lib/helpers/lib/api/index.js +120 -120
  12. package/lib/helpers/lib/api/validations.js +72 -72
  13. package/lib/helpers/lib/errors.js +129 -129
  14. package/lib/helpers/lib/utils.js +23 -23
  15. package/lib/helpers/lib/validator.js +100 -100
  16. package/lib/open_access/index.js +121 -121
  17. package/lib/services/activity/activity.js +209 -209
  18. package/lib/services/activity/attempt.js +431 -431
  19. package/lib/services/activity/index.js +28 -28
  20. package/lib/services/analytics/index.js +1555 -1555
  21. package/lib/services/attempts/index.js +342 -342
  22. package/lib/services/auth/classProduct.js +37 -37
  23. package/lib/services/auth/index.js +2541 -2541
  24. package/lib/services/collab/index.js +468 -468
  25. package/lib/services/drive/index.js +144 -144
  26. package/lib/services/integrations/index.js +279 -279
  27. package/lib/services/invitations/index.js +313 -313
  28. package/lib/services/lrs/index.js +459 -459
  29. package/lib/services/product/index.js +267 -267
  30. package/lib/services/pub/index.js +407 -407
  31. package/lib/services/push/index.js +187 -187
  32. package/lib/services/push/pubnubClientWrapper.js +557 -557
  33. package/lib/services/push/sessionStorage.js +64 -64
  34. package/lib/services/pushX/index.js +190 -190
  35. package/lib/services/pushX/pubnubClientWrapper.js +211 -211
  36. package/lib/services/sisevents/index.js +113 -113
  37. package/lib/services/spaces/index.js +976 -929
  38. package/lib/services/superuser/index.js +175 -175
  39. package/lib/services/workflows/index.js +464 -464
  40. package/lib/services/xapi/index.js +232 -232
  41. package/lib/token/index.js +114 -114
  42. package/lib/token/validations.js +88 -88
  43. package/package-lock.json +5095 -0
  44. package/package.json +1 -1
  45. package/test.js +50 -50
  46. package/.vscode/launch.json +0 -23
  47. package/npm-debug.log.189866131 +0 -0
  48. 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
  }
package/.npmignore ADDED
@@ -0,0 +1,5 @@
1
+ # Grunt File
2
+ Gruntfile.js
3
+
4
+ # Bower JSON
5
+ bower.json