You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @option {String} [redirectUri] The URL that Asana should redirect to once
677
647
* user authorization is complete. Defaults to the URL configured in
678
648
* the app, and if none then the current page URL.
679
-
* @constructor
680
649
*/
681
650
new(options: any): BaseBrowserFlow;
682
651
}
@@ -826,7 +795,6 @@ declare namespace asana {
826
795
* An _attachment_ object represents any file attached to a task in Asana,
827
796
* whether it's an uploaded file or one associated via a third-party service
828
797
* such as Dropbox or Google Drive.
829
-
* @class
830
798
* @param {Dispatcher} dispatcher The API dispatcher
831
799
*/
832
800
interfaceAttachmentsextendsTopLevelResource{
@@ -935,7 +903,6 @@ declare namespace asana {
935
903
*
936
904
* Sync tokens always expire after 24 hours, but may expire sooner, depending on
937
905
* load on the service.
938
-
* @class
939
906
* @param {Dispatcher} dispatcher The API dispatcher
940
907
*/
941
908
interfaceEventsextendsTopLevelResource{
@@ -1022,7 +989,6 @@ declare namespace asana {
1022
989
* change the team of a project via the API. Non-organization workspaces do not
1023
990
* have teams and so you should not specify the team of project in a
1024
991
* regular workspace.
1025
-
* @class
1026
992
* @param {Dispatcher} dispatcher The API dispatcher
1027
993
*/
1028
994
interfaceProjectsextendsTopLevelResource{
@@ -1421,7 +1387,6 @@ declare namespace asana {
1421
1387
*
1422
1388
* Stories are a form of history in the system, and as such they are read-only.
1423
1389
* Once generated, it is not possible to modify a story.
1424
-
* @class
1425
1390
* @param {Dispatcher} dispatcher The API dispatcher
1426
1391
*/
1427
1392
interfaceStoriesextendsTopLevelResource{
@@ -1510,7 +1475,6 @@ declare namespace asana {
1510
1475
* simplify them in the future so it is not encouraged to rely too heavily on it.
1511
1476
* Unlike projects, tags do not provide any ordering on the tasks they
1512
1477
* are associated with.
1513
-
* @class
1514
1478
* @param {Dispatcher} dispatcher The API dispatcher
1515
1479
*/
1516
1480
interfaceTagsextendsTopLevelResource{
@@ -1810,7 +1774,6 @@ declare namespace asana {
1810
1774
* centered. In the Asana application, multiple tasks populate the middle pane
1811
1775
* according to some view parameters, and the set of selected tasks determines
1812
1776
* the more detailed information presented in the details pane.
1813
-
* @class
1814
1777
* @param {Dispatcher} dispatcher The API dispatcher
1815
1778
*/
1816
1779
interfaceTasksextendsTopLevelResource{
@@ -2301,7 +2264,6 @@ declare namespace asana {
2301
2264
/**
2302
2265
* A _team_ is used to group related projects and people together within an
2303
2266
* organization. Each project in an organization is associated with a team.
2304
-
* @class
2305
2267
* @param {Dispatcher} dispatcher The API dispatcher
2306
2268
*/
2307
2269
interfaceTeamsextendsTopLevelResource{
@@ -2417,7 +2379,6 @@ declare namespace asana {
2417
2379
* Like other objects in the system, users are referred to by numerical IDs.
2418
2380
* However, the special string identifier `me` can be used anywhere
2419
2381
* a user ID is accepted, to refer to the current authenticated user.
2420
-
* @class
2421
2382
* @param {Dispatcher} dispatcher The API dispatcher
2422
2383
*/
2423
2384
interfaceUsersextendsTopLevelResource{
@@ -2555,7 +2516,6 @@ declare namespace asana {
2555
2516
*
2556
2517
* Webhooks themselves contain only the information necessary to deliver the
2557
2518
* events to the desired target as they are generated.
2558
-
* @class
2559
2519
* @param {Dispatcher} dispatcher The API dispatcher
2560
2520
*/
2561
2521
interfaceWebhooksextendsTopLevelResource{
@@ -2671,7 +2631,6 @@ declare namespace asana {
2671
2631
* using workspace-based APIs for organizations. Currently, and until after
2672
2632
* some reasonable grace period following any further announcements, you can
2673
2633
* still reference organizations in any `workspace` parameter.
2674
-
* @class
2675
2634
* @param {Dispatcher} dispatcher The API dispatcher
2676
2635
*/
2677
2636
interfaceWorkspacesextendsTopLevelResource{
@@ -2829,7 +2788,6 @@ declare namespace asana {
2829
2788
* when they can address them. When building an integration it’s worth noting that tasks with due dates
2830
2789
* will automatically move through assignee_status states as their due dates approach; read up on task
2831
2790
* auto-promotion, https://asana.com/guide/help/fundamentals/my-tasks#gl-auto-promote, for more information
2832
-
* @class
2833
2791
* @param {Dispatcher} dispatcher The API dispatcher
2834
2792
*/
2835
2793
interfaceUserTaskListsextendsTopLevelResource{
@@ -2897,7 +2855,7 @@ declare namespace asana {
2897
2855
new(dispatcher: Dispatcher): Resource;
2898
2856
2899
2857
/**
2900
-
* @type {number} Default number of items to get per page.
2858
+
* Default number of items to get per page.
2901
2859
*/
2902
2860
DEFAULT_PAGE_LIMIT: number;
2903
2861
@@ -2934,7 +2892,6 @@ declare namespace asana {
2934
2892
* Base class for a resource accessible via the API. Uses a `Dispatcher` to
0 commit comments