tremendous 3.3.0 → 3.5.0

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.
@@ -1,5 +1,4 @@
1
- interface Environments {
2
- [env: string]: string;
3
- }
4
- export declare const Environments: Environments;
5
- export {};
1
+ export declare const Environments: {
2
+ production: string;
3
+ testflight: string;
4
+ };
@@ -2,6 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Environments = void 0;
4
4
  exports.Environments = {
5
- production: 'https://www.tremendous.com/api/v2',
5
+ production: 'https://api.tremendous.com/api/v2',
6
6
  testflight: 'https://testflight.tremendous.com/api/v2',
7
7
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tremendous",
3
- "version": "3.3.0",
3
+ "version": "3.5.0",
4
4
  "description": "A node.js client for the Tremendous API",
5
5
  "keywords": [
6
6
  "tremendous",
@@ -23,7 +23,7 @@
23
23
  "typings": "./dist/index.d.ts",
24
24
  "scripts": {
25
25
  "build": "tsc --outDir dist/",
26
- "test": "vitest --testTimeout 10000"
26
+ "test": "vitest --testTimeout 10000 --retry 3"
27
27
  },
28
28
  "dependencies": {
29
29
  "axios": "^1.6.1"