starti.app 1.3.23 → 1.3.26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "starti.app",
3
- "version": "1.3.23",
3
+ "version": "1.3.26",
4
4
  "description": "Use this package for easy communication with the starti.app API.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1 +0,0 @@
1
- export declare function checkIfAppVersionIsClosed(next: Function): Promise<any>;
@@ -1,13 +0,0 @@
1
- export declare type AvailableVersionsDocument = {
2
- versions: string[];
3
- androidStoreId: string;
4
- iosStoreId: string;
5
- };
6
- export declare class ClosedVersionChecker {
7
- private documentData;
8
- private getAvailableVersionsUrl;
9
- getAvailableVersionsDocument(): Promise<AvailableVersionsDocument>;
10
- private getCurrentVersionSemver;
11
- private getLatestVersionSemvar;
12
- isCurrentVersionClosed(): Promise<boolean>;
13
- }
@@ -1,8 +0,0 @@
1
- declare type TaskFunction = (next: Function) => Promise<unknown> | unknown;
2
- export declare class TaskStepper {
3
- private tasks;
4
- addTask(task: TaskFunction): void;
5
- start(): Promise<void>;
6
- private runTasks;
7
- }
8
- export {};
@@ -1,2 +0,0 @@
1
- import "isomorphic-fetch";
2
- import "jest";