@verdocs/js-sdk 3.10.28 → 3.10.30

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.
@@ -42,7 +42,7 @@ var VerdocsEndpoint = /** @class */ (function () {
42
42
  function VerdocsEndpoint(options) {
43
43
  this.environment = 'verdocs';
44
44
  this.sessionType = 'user';
45
- this.baseURL = (window.location.origin === 'https://beta.verdocs.com'
45
+ this.baseURL = (window.location.origin === 'https://beta.verdocs.com' || window.location.origin === 'https://stage.verdocs.com'
46
46
  ? 'https://stage-api.verdocs.com'
47
47
  : 'https://api.verdocs.com');
48
48
  this.clientID = 'not-set';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdocs/js-sdk",
3
- "version": "3.10.28",
3
+ "version": "3.10.30",
4
4
  "private": false,
5
5
  "homepage": "https://github.com/Verdocs/js-sdk",
6
6
  "description": "Verdocs JS SDK",
@@ -39,29 +39,29 @@
39
39
  "docs": "npm run docs-md && npm run docs-html",
40
40
  "clear-docs": "aws --profile=verdocs cloudfront create-invalidation --distribution-id E29UFGU4KEH1GQ --paths \"/*\"",
41
41
  "deploy-docs": "npm run docs && aws --profile=verdocs s3 sync --acl public-read --delete docs-html s3://verdocs-developers-js-sdk/ && yarn clear-docs",
42
- "clean": "rm -rf Envelopes Session HTTP Organizations Search Templates Users Utils index.js index.d.ts VerdocsEndpoint.* docs docs-html",
42
+ "clean": "rm -rf Envelopes Sessions HTTP Organizations Search Templates Users Utils index.js index.d.ts VerdocsEndpoint.* docs docs-html",
43
43
  "push": "npm run build && npm publish"
44
44
  },
45
45
  "publishConfig": {
46
46
  "access": "public"
47
47
  },
48
48
  "dependencies": {
49
- "axios": "^1.6.5"
49
+ "axios": "^1.6.7"
50
50
  },
51
51
  "peerDependencies": {
52
52
  "typescript": "^5.3.3"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@jest/globals": "^29.7.0",
56
- "@types/jest": "^29.5.11",
56
+ "@types/jest": "^29.5.12",
57
57
  "axios-mock-adapter": "^1.22.0",
58
58
  "jest": "^29.7.0",
59
59
  "jest-environment-jsdom": "^29.7.0",
60
- "prettier": "^3.2.4",
61
- "ts-jest": "^29.1.1",
60
+ "prettier": "^3.2.5",
61
+ "ts-jest": "^29.1.2",
62
62
  "tslint": "^6.1.3",
63
63
  "tslint-config-prettier": "^1.18.0",
64
- "typedoc": "^0.25.7",
64
+ "typedoc": "^0.25.11",
65
65
  "typedoc-plugin-markdown": "^3.17.1",
66
66
  "typescript": "^5.3.3"
67
67
  }