@doist/todoist-api-typescript 4.0.1 → 4.0.2
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/dist/authentication.d.ts +1 -1
- package/package.json +1 -1
package/dist/authentication.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Permission scopes that can be requested during OAuth2 authorization.
|
|
3
3
|
* @see {@link https://todoist.com/api/v1/docs#tag/Authorization}
|
|
4
4
|
*/
|
|
5
|
-
export type Permission = 'task:add' | 'data:read' | 'data:read_write' | 'data:delete' | 'project:delete';
|
|
5
|
+
export type Permission = 'task:add' | 'data:read' | 'data:read_write' | 'data:delete' | 'project:delete' | 'backups:read';
|
|
6
6
|
/**
|
|
7
7
|
* Parameters required to exchange an authorization code for an access token.
|
|
8
8
|
* @see https://todoist.com/api/v1/docs#tag/Authorization/OAuth
|
package/package.json
CHANGED