@doist/todoist-api-typescript 5.0.0 → 5.0.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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const TODOIST_WEB_URI = "https://app
|
|
1
|
+
export declare const TODOIST_WEB_URI = "https://app.todoist.com/app";
|
|
2
2
|
export declare const API_VERSION = "v1";
|
|
3
3
|
export declare const API_BASE_URI = "/api/v1/";
|
|
4
4
|
export declare function getSyncBaseUri(domainBase?: string): string;
|
package/dist/consts/endpoints.js
CHANGED
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.ENDPOINT_REVOKE_TOKEN = exports.ENDPOINT_GET_TOKEN = exports.ENDPOINT_AUTHORIZATION = exports.ENDPOINT_SYNC = exports.ENDPOINT_SYNC_QUICK_ADD = exports.ENDPOINT_REST_PROJECT_COLLABORATORS = exports.ENDPOINT_REST_TASK_REOPEN = exports.ENDPOINT_REST_TASK_CLOSE = exports.ENDPOINT_REST_COMMENTS = exports.ENDPOINT_REST_LABELS_SHARED_REMOVE = exports.ENDPOINT_REST_LABELS_SHARED_RENAME = exports.ENDPOINT_REST_LABELS_SHARED = exports.ENDPOINT_REST_LABELS = exports.ENDPOINT_REST_SECTIONS = exports.ENDPOINT_REST_PROJECTS = exports.ENDPOINT_REST_TASKS_FILTER = exports.ENDPOINT_REST_TASKS = exports.getAuthBaseUri = exports.getSyncBaseUri = exports.API_BASE_URI = exports.API_VERSION = exports.TODOIST_WEB_URI = void 0;
|
|
4
4
|
var BASE_URI = 'https://api.todoist.com';
|
|
5
5
|
var TODOIST_URI = 'https://todoist.com';
|
|
6
|
-
exports.TODOIST_WEB_URI = 'https://app
|
|
6
|
+
exports.TODOIST_WEB_URI = 'https://app.todoist.com/app';
|
|
7
7
|
// The API version is not configurable, to ensure
|
|
8
8
|
// compatibility between the API and the client.
|
|
9
9
|
exports.API_VERSION = 'v1';
|
package/package.json
CHANGED