@microsoft/msgraph-sdk-planner 1.0.0-preview.20 → 1.0.0-preview.21
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 +3 -3
- package/planner/buckets/index.d.ts +5 -7
- package/planner/buckets/index.d.ts.map +1 -1
- package/planner/buckets/item/index.d.ts +5 -8
- package/planner/buckets/item/index.d.ts.map +1 -1
- package/planner/buckets/item/tasks/index.d.ts +3 -4
- package/planner/buckets/item/tasks/index.d.ts.map +1 -1
- package/planner/buckets/item/tasks/item/assignedToTaskBoardFormat/index.d.ts +3 -5
- package/planner/buckets/item/tasks/item/assignedToTaskBoardFormat/index.d.ts.map +1 -1
- package/planner/buckets/item/tasks/item/bucketTaskBoardFormat/index.d.ts +3 -5
- package/planner/buckets/item/tasks/item/bucketTaskBoardFormat/index.d.ts.map +1 -1
- package/planner/buckets/item/tasks/item/details/index.d.ts +3 -5
- package/planner/buckets/item/tasks/item/details/index.d.ts.map +1 -1
- package/planner/buckets/item/tasks/item/progressTaskBoardFormat/index.d.ts +3 -5
- package/planner/buckets/item/tasks/item/progressTaskBoardFormat/index.d.ts.map +1 -1
- package/planner/plans/index.d.ts +5 -7
- package/planner/plans/index.d.ts.map +1 -1
- package/planner/plans/item/buckets/index.d.ts +3 -4
- package/planner/plans/item/buckets/index.d.ts.map +1 -1
- package/planner/plans/item/buckets/item/tasks/index.d.ts +3 -4
- package/planner/plans/item/buckets/item/tasks/index.d.ts.map +1 -1
- package/planner/plans/item/buckets/item/tasks/item/assignedToTaskBoardFormat/index.d.ts +3 -5
- package/planner/plans/item/buckets/item/tasks/item/assignedToTaskBoardFormat/index.d.ts.map +1 -1
- package/planner/plans/item/buckets/item/tasks/item/bucketTaskBoardFormat/index.d.ts +3 -5
- package/planner/plans/item/buckets/item/tasks/item/bucketTaskBoardFormat/index.d.ts.map +1 -1
- package/planner/plans/item/buckets/item/tasks/item/details/index.d.ts +3 -5
- package/planner/plans/item/buckets/item/tasks/item/details/index.d.ts.map +1 -1
- package/planner/plans/item/buckets/item/tasks/item/progressTaskBoardFormat/index.d.ts +3 -5
- package/planner/plans/item/buckets/item/tasks/item/progressTaskBoardFormat/index.d.ts.map +1 -1
- package/planner/plans/item/details/index.d.ts +3 -5
- package/planner/plans/item/details/index.d.ts.map +1 -1
- package/planner/plans/item/index.d.ts +7 -10
- package/planner/plans/item/index.d.ts.map +1 -1
- package/planner/plans/item/tasks/index.d.ts +3 -4
- package/planner/plans/item/tasks/index.d.ts.map +1 -1
- package/planner/plans/item/tasks/item/assignedToTaskBoardFormat/index.d.ts +3 -5
- package/planner/plans/item/tasks/item/assignedToTaskBoardFormat/index.d.ts.map +1 -1
- package/planner/plans/item/tasks/item/bucketTaskBoardFormat/index.d.ts +3 -5
- package/planner/plans/item/tasks/item/bucketTaskBoardFormat/index.d.ts.map +1 -1
- package/planner/plans/item/tasks/item/details/index.d.ts +3 -5
- package/planner/plans/item/tasks/item/details/index.d.ts.map +1 -1
- package/planner/plans/item/tasks/item/progressTaskBoardFormat/index.d.ts +3 -5
- package/planner/plans/item/tasks/item/progressTaskBoardFormat/index.d.ts.map +1 -1
- package/planner/tasks/index.d.ts +5 -7
- package/planner/tasks/index.d.ts.map +1 -1
- package/planner/tasks/item/assignedToTaskBoardFormat/index.d.ts +3 -5
- package/planner/tasks/item/assignedToTaskBoardFormat/index.d.ts.map +1 -1
- package/planner/tasks/item/bucketTaskBoardFormat/index.d.ts +3 -5
- package/planner/tasks/item/bucketTaskBoardFormat/index.d.ts.map +1 -1
- package/planner/tasks/item/details/index.d.ts +3 -5
- package/planner/tasks/item/details/index.d.ts.map +1 -1
- package/planner/tasks/item/index.d.ts +5 -8
- package/planner/tasks/item/index.d.ts.map +1 -1
- package/planner/tasks/item/progressTaskBoardFormat/index.d.ts +3 -5
- package/planner/tasks/item/progressTaskBoardFormat/index.d.ts.map +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -11,11 +11,10 @@ export interface BucketTaskBoardFormatRequestBuilder extends BaseRequestBuilder<
|
|
|
11
11
|
*/
|
|
12
12
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket.
|
|
15
15
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
16
|
* @returns {Promise<PlannerBucketTaskBoardTaskFormat>}
|
|
17
17
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
18
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerbuckettaskboardtaskformat-get?view=graph-rest-1.0|Find more info here}
|
|
19
18
|
*/
|
|
20
19
|
get(requestConfiguration?: RequestConfiguration<BucketTaskBoardFormatRequestBuilderGetQueryParameters> | undefined): Promise<PlannerBucketTaskBoardTaskFormat | undefined>;
|
|
21
20
|
/**
|
|
@@ -24,7 +23,6 @@ export interface BucketTaskBoardFormatRequestBuilder extends BaseRequestBuilder<
|
|
|
24
23
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
25
24
|
* @returns {Promise<PlannerBucketTaskBoardTaskFormat>}
|
|
26
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
27
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerbuckettaskboardtaskformat-update?view=graph-rest-1.0|Find more info here}
|
|
28
26
|
*/
|
|
29
27
|
patch(body: PlannerBucketTaskBoardTaskFormat, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PlannerBucketTaskBoardTaskFormat | undefined>;
|
|
30
28
|
/**
|
|
@@ -34,7 +32,7 @@ export interface BucketTaskBoardFormatRequestBuilder extends BaseRequestBuilder<
|
|
|
34
32
|
*/
|
|
35
33
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
35
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket.
|
|
38
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
37
|
* @returns {RequestInformation}
|
|
40
38
|
*/
|
|
@@ -48,7 +46,7 @@ export interface BucketTaskBoardFormatRequestBuilder extends BaseRequestBuilder<
|
|
|
48
46
|
toPatchRequestInformation(body: PlannerBucketTaskBoardTaskFormat, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
47
|
}
|
|
50
48
|
/**
|
|
51
|
-
*
|
|
49
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket.
|
|
52
50
|
*/
|
|
53
51
|
export interface BucketTaskBoardFormatRequestBuilderGetQueryParameters {
|
|
54
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA2G,KAAK,gCAAgC,EAAE,MAAM,gCAAgC,CAAC;AAIhM,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,mCAAoC,SAAQ,kBAAkB,CAAC,mCAAmC,CAAC;IAChH;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA2G,KAAK,gCAAgC,EAAE,MAAM,gCAAgC,CAAC;AAIhM,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,mCAAoC,SAAQ,kBAAkB,CAAC,mCAAmC,CAAC;IAChH;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qDAAqD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,gCAAgC,GAAG,SAAS,CAAC,CAAC;IAC7K;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,gCAAgC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,gCAAgC,GAAG,SAAS,CAAC,CAAC;IACxK;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qDAAqD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC9J;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,gCAAgC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC5J;AACD;;GAEG;AACH,MAAM,WAAW,qDAAqD;IAClE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,8CAA8C,kJAAkJ,CAAC;AAQ9M;;GAEG;AACH,eAAO,MAAM,mDAAmD,EAAE,gBA+BjE,CAAC"}
|
|
@@ -11,11 +11,10 @@ export interface DetailsRequestBuilder extends BaseRequestBuilder<DetailsRequest
|
|
|
11
11
|
*/
|
|
12
12
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Read-only. Nullable. More details about the task.
|
|
15
15
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
16
|
* @returns {Promise<PlannerTaskDetails>}
|
|
17
17
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
18
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannertaskdetails-get?view=graph-rest-1.0|Find more info here}
|
|
19
18
|
*/
|
|
20
19
|
get(requestConfiguration?: RequestConfiguration<DetailsRequestBuilderGetQueryParameters> | undefined): Promise<PlannerTaskDetails | undefined>;
|
|
21
20
|
/**
|
|
@@ -24,7 +23,6 @@ export interface DetailsRequestBuilder extends BaseRequestBuilder<DetailsRequest
|
|
|
24
23
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
25
24
|
* @returns {Promise<PlannerTaskDetails>}
|
|
26
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
27
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannertaskdetails-update?view=graph-rest-1.0|Find more info here}
|
|
28
26
|
*/
|
|
29
27
|
patch(body: PlannerTaskDetails, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PlannerTaskDetails | undefined>;
|
|
30
28
|
/**
|
|
@@ -34,7 +32,7 @@ export interface DetailsRequestBuilder extends BaseRequestBuilder<DetailsRequest
|
|
|
34
32
|
*/
|
|
35
33
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
35
|
+
* Read-only. Nullable. More details about the task.
|
|
38
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
37
|
* @returns {RequestInformation}
|
|
40
38
|
*/
|
|
@@ -48,7 +46,7 @@ export interface DetailsRequestBuilder extends BaseRequestBuilder<DetailsRequest
|
|
|
48
46
|
toPatchRequestInformation(body: PlannerTaskDetails, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
47
|
}
|
|
50
48
|
/**
|
|
51
|
-
*
|
|
49
|
+
* Read-only. Nullable. More details about the task.
|
|
52
50
|
*/
|
|
53
51
|
export interface DetailsRequestBuilderGetQueryParameters {
|
|
54
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+E,KAAK,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AAItJ,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+E,KAAK,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AAItJ,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uCAAuC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kBAAkB,GAAG,SAAS,CAAC,CAAC;IACjJ;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,kBAAkB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kBAAkB,GAAG,SAAS,CAAC,CAAC;IAC5I;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uCAAuC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAChJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,kBAAkB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC9I;AACD;;GAEG;AACH,MAAM,WAAW,uCAAuC;IACpD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,gCAAgC,oIAAoI,CAAC;AAQlL;;GAEG;AACH,eAAO,MAAM,qCAAqC,EAAE,gBA+BnD,CAAC"}
|
|
@@ -11,11 +11,10 @@ export interface ProgressTaskBoardFormatRequestBuilder extends BaseRequestBuilde
|
|
|
11
11
|
*/
|
|
12
12
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress.
|
|
15
15
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
16
|
* @returns {Promise<PlannerProgressTaskBoardTaskFormat>}
|
|
17
17
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
18
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerprogresstaskboardtaskformat-get?view=graph-rest-1.0|Find more info here}
|
|
19
18
|
*/
|
|
20
19
|
get(requestConfiguration?: RequestConfiguration<ProgressTaskBoardFormatRequestBuilderGetQueryParameters> | undefined): Promise<PlannerProgressTaskBoardTaskFormat | undefined>;
|
|
21
20
|
/**
|
|
@@ -24,7 +23,6 @@ export interface ProgressTaskBoardFormatRequestBuilder extends BaseRequestBuilde
|
|
|
24
23
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
25
24
|
* @returns {Promise<PlannerProgressTaskBoardTaskFormat>}
|
|
26
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
27
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerprogresstaskboardtaskformat-update?view=graph-rest-1.0|Find more info here}
|
|
28
26
|
*/
|
|
29
27
|
patch(body: PlannerProgressTaskBoardTaskFormat, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PlannerProgressTaskBoardTaskFormat | undefined>;
|
|
30
28
|
/**
|
|
@@ -34,7 +32,7 @@ export interface ProgressTaskBoardFormatRequestBuilder extends BaseRequestBuilde
|
|
|
34
32
|
*/
|
|
35
33
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
35
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress.
|
|
38
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
37
|
* @returns {RequestInformation}
|
|
40
38
|
*/
|
|
@@ -48,7 +46,7 @@ export interface ProgressTaskBoardFormatRequestBuilder extends BaseRequestBuilde
|
|
|
48
46
|
toPatchRequestInformation(body: PlannerProgressTaskBoardTaskFormat, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
47
|
}
|
|
50
48
|
/**
|
|
51
|
-
*
|
|
49
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress.
|
|
52
50
|
*/
|
|
53
51
|
export interface ProgressTaskBoardFormatRequestBuilderGetQueryParameters {
|
|
54
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+G,KAAK,kCAAkC,EAAE,MAAM,gCAAgC,CAAC;AAItM,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,qCAAsC,SAAQ,kBAAkB,CAAC,qCAAqC,CAAC;IACpH;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+G,KAAK,kCAAkC,EAAE,MAAM,gCAAgC,CAAC;AAItM,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,qCAAsC,SAAQ,kBAAkB,CAAC,qCAAqC,CAAC;IACpH;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uDAAuD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kCAAkC,GAAG,SAAS,CAAC,CAAC;IACjL;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,kCAAkC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kCAAkC,GAAG,SAAS,CAAC,CAAC;IAC5K;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uDAAuD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAChK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,kCAAkC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC9J;AACD;;GAEG;AACH,MAAM,WAAW,uDAAuD;IACpE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,gDAAgD,oJAAoJ,CAAC;AAQlN;;GAEG;AACH,eAAO,MAAM,qDAAqD,EAAE,gBA+BnE,CAAC"}
|
|
@@ -11,11 +11,10 @@ export interface DetailsRequestBuilder extends BaseRequestBuilder<DetailsRequest
|
|
|
11
11
|
*/
|
|
12
12
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Read-only. Nullable. Extra details about the plan.
|
|
15
15
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
16
|
* @returns {Promise<PlannerPlanDetails>}
|
|
17
17
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
18
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerplandetails-get?view=graph-rest-1.0|Find more info here}
|
|
19
18
|
*/
|
|
20
19
|
get(requestConfiguration?: RequestConfiguration<DetailsRequestBuilderGetQueryParameters> | undefined): Promise<PlannerPlanDetails | undefined>;
|
|
21
20
|
/**
|
|
@@ -24,7 +23,6 @@ export interface DetailsRequestBuilder extends BaseRequestBuilder<DetailsRequest
|
|
|
24
23
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
25
24
|
* @returns {Promise<PlannerPlanDetails>}
|
|
26
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
27
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerplandetails-update?view=graph-rest-1.0|Find more info here}
|
|
28
26
|
*/
|
|
29
27
|
patch(body: PlannerPlanDetails, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PlannerPlanDetails | undefined>;
|
|
30
28
|
/**
|
|
@@ -34,7 +32,7 @@ export interface DetailsRequestBuilder extends BaseRequestBuilder<DetailsRequest
|
|
|
34
32
|
*/
|
|
35
33
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
35
|
+
* Read-only. Nullable. Extra details about the plan.
|
|
38
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
37
|
* @returns {RequestInformation}
|
|
40
38
|
*/
|
|
@@ -48,7 +46,7 @@ export interface DetailsRequestBuilder extends BaseRequestBuilder<DetailsRequest
|
|
|
48
46
|
toPatchRequestInformation(body: PlannerPlanDetails, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
47
|
}
|
|
50
48
|
/**
|
|
51
|
-
*
|
|
49
|
+
* Read-only. Nullable. Extra details about the plan.
|
|
52
50
|
*/
|
|
53
51
|
export interface DetailsRequestBuilderGetQueryParameters {
|
|
54
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+E,KAAK,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AAItJ,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+E,KAAK,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AAItJ,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uCAAuC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kBAAkB,GAAG,SAAS,CAAC,CAAC;IACjJ;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,kBAAkB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kBAAkB,GAAG,SAAS,CAAC,CAAC;IAC5I;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uCAAuC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAChJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,kBAAkB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC9I;AACD;;GAEG;AACH,MAAM,WAAW,uCAAuC;IACpD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,gCAAgC,8EAA8E,CAAC;AAQ5H;;GAEG;AACH,eAAO,MAAM,qCAAqC,EAAE,gBA+BnD,CAAC"}
|
|
@@ -20,43 +20,40 @@ export interface PlannerPlanItemRequestBuilder extends BaseRequestBuilder<Planne
|
|
|
20
20
|
*/
|
|
21
21
|
get tasks(): TasksRequestBuilder;
|
|
22
22
|
/**
|
|
23
|
-
* Delete
|
|
23
|
+
* Delete navigation property plans for planner
|
|
24
24
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
25
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
26
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerplan-delete?view=graph-rest-1.0|Find more info here}
|
|
27
26
|
*/
|
|
28
27
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
29
28
|
/**
|
|
30
|
-
*
|
|
29
|
+
* Read-only. Nullable. Returns a collection of the specified plans
|
|
31
30
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
32
31
|
* @returns {Promise<PlannerPlan>}
|
|
33
32
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
34
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerplan-get?view=graph-rest-1.0|Find more info here}
|
|
35
33
|
*/
|
|
36
34
|
get(requestConfiguration?: RequestConfiguration<PlannerPlanItemRequestBuilderGetQueryParameters> | undefined): Promise<PlannerPlan | undefined>;
|
|
37
35
|
/**
|
|
38
|
-
* Update the
|
|
36
|
+
* Update the navigation property plans in planner
|
|
39
37
|
* @param body The request body
|
|
40
38
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
41
39
|
* @returns {Promise<PlannerPlan>}
|
|
42
40
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
43
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerplan-update?view=graph-rest-1.0|Find more info here}
|
|
44
41
|
*/
|
|
45
42
|
patch(body: PlannerPlan, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PlannerPlan | undefined>;
|
|
46
43
|
/**
|
|
47
|
-
* Delete
|
|
44
|
+
* Delete navigation property plans for planner
|
|
48
45
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
49
46
|
* @returns {RequestInformation}
|
|
50
47
|
*/
|
|
51
48
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
52
49
|
/**
|
|
53
|
-
*
|
|
50
|
+
* Read-only. Nullable. Returns a collection of the specified plans
|
|
54
51
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
55
52
|
* @returns {RequestInformation}
|
|
56
53
|
*/
|
|
57
54
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<PlannerPlanItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
58
55
|
/**
|
|
59
|
-
* Update the
|
|
56
|
+
* Update the navigation property plans in planner
|
|
60
57
|
* @param body The request body
|
|
61
58
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
62
59
|
* @returns {RequestInformation}
|
|
@@ -64,7 +61,7 @@ export interface PlannerPlanItemRequestBuilder extends BaseRequestBuilder<Planne
|
|
|
64
61
|
toPatchRequestInformation(body: PlannerPlan, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
65
62
|
}
|
|
66
63
|
/**
|
|
67
|
-
*
|
|
64
|
+
* Read-only. Nullable. Returns a collection of the specified plans
|
|
68
65
|
*/
|
|
69
66
|
export interface PlannerPlanItemRequestBuilderGetQueryParameters {
|
|
70
67
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiE,KAAK,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAIjI,OAAO,EAAkF,KAAK,qBAAqB,EAAE,MAAM,YAAY,CAAC;AAExI,OAAO,EAAyC,KAAK,qBAAqB,EAAE,MAAM,YAAY,CAAC;AAE/F,OAAO,EAA8E,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEhI,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,6BAA8B,SAAQ,kBAAkB,CAAC,6BAA6B,CAAC;IACpG;;OAEG;IACH,IAAI,OAAO,IAAI,qBAAqB,CAAC;IACrC;;OAEG;IACH,IAAI,OAAO,IAAI,qBAAqB,CAAC;IACrC;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiE,KAAK,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAIjI,OAAO,EAAkF,KAAK,qBAAqB,EAAE,MAAM,YAAY,CAAC;AAExI,OAAO,EAAyC,KAAK,qBAAqB,EAAE,MAAM,YAAY,CAAC;AAE/F,OAAO,EAA8E,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEhI,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,6BAA8B,SAAQ,kBAAkB,CAAC,6BAA6B,CAAC;IACpG;;OAEG;IACH,IAAI,OAAO,IAAI,qBAAqB,CAAC;IACrC;;OAEG;IACH,IAAI,OAAO,IAAI,qBAAqB,CAAC;IACrC;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,+CAA+C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IAClJ;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,WAAW,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IAC9H;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,+CAA+C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACxJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,WAAW,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACvI;AACD;;GAEG;AACH,MAAM,WAAW,+CAA+C;IAC5D;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,wCAAwC,sEAAsE,CAAC;AAQ5H;;GAEG;AACH,eAAO,MAAM,+CAA+C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,6BAA6B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAYxK,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,6CAA6C,EAAE,gBA+B3D,CAAC"}
|
|
@@ -17,11 +17,10 @@ export interface TasksRequestBuilder extends BaseRequestBuilder<TasksRequestBuil
|
|
|
17
17
|
*/
|
|
18
18
|
byPlannerTaskId(plannerTaskId: string): PlannerTaskItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Read-only. Nullable. Collection of tasks in the plan.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<PlannerTaskCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerplan-list-tasks?view=graph-rest-1.0|Find more info here}
|
|
25
24
|
*/
|
|
26
25
|
get(requestConfiguration?: RequestConfiguration<TasksRequestBuilderGetQueryParameters> | undefined): Promise<PlannerTaskCollectionResponse | undefined>;
|
|
27
26
|
/**
|
|
@@ -33,7 +32,7 @@ export interface TasksRequestBuilder extends BaseRequestBuilder<TasksRequestBuil
|
|
|
33
32
|
*/
|
|
34
33
|
post(body: PlannerTask, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PlannerTask | undefined>;
|
|
35
34
|
/**
|
|
36
|
-
*
|
|
35
|
+
* Read-only. Nullable. Collection of tasks in the plan.
|
|
37
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
38
37
|
* @returns {RequestInformation}
|
|
39
38
|
*/
|
|
@@ -47,7 +46,7 @@ export interface TasksRequestBuilder extends BaseRequestBuilder<TasksRequestBuil
|
|
|
47
46
|
toPostRequestInformation(body: PlannerTask, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
48
47
|
}
|
|
49
48
|
/**
|
|
50
|
-
*
|
|
49
|
+
* Read-only. Nullable. Collection of tasks in the plan.
|
|
51
50
|
*/
|
|
52
51
|
export interface TasksRequestBuilderGetQueryParameters {
|
|
53
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA4H,KAAK,WAAW,EAAE,KAAK,6BAA6B,EAAE,MAAM,gCAAgC,CAAC;AAIhO,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAkG,KAAK,6BAA6B,EAAE,MAAM,SAAS,CAAC;AAE7J,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,kBAAkB,CAAC,mBAAmB,CAAC;IAChF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,eAAe,CAAC,aAAa,EAAE,MAAM,GAAI,6BAA6B,CAAC;IACxE
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA4H,KAAK,WAAW,EAAE,KAAK,6BAA6B,EAAE,MAAM,gCAAgC,CAAC;AAIhO,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAkG,KAAK,6BAA6B,EAAE,MAAM,SAAS,CAAC;AAE7J,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,kBAAkB,CAAC,mBAAmB,CAAC;IAChF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,eAAe,CAAC,aAAa,EAAE,MAAM,GAAI,6BAA6B,CAAC;IACxE;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,6BAA6B,GAAG,SAAS,CAAC,CAAC;IAC1J;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,WAAW,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IAC7H;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC9I;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,WAAW,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACtI;AACD;;GAEG;AACH,MAAM,WAAW,qCAAqC;IAClD;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,8BAA8B,mIAAmI,CAAC;AAc/K;;GAEG;AACH,eAAO,MAAM,qCAAqC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,mBAAmB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CASpJ,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,mCAAmC,EAAE,gBAuBjD,CAAC"}
|
|
@@ -11,11 +11,10 @@ export interface AssignedToTaskBoardFormatRequestBuilder extends BaseRequestBuil
|
|
|
11
11
|
*/
|
|
12
12
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo.
|
|
15
15
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
16
|
* @returns {Promise<PlannerAssignedToTaskBoardTaskFormat>}
|
|
17
17
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
18
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerassignedtotaskboardtaskformat-get?view=graph-rest-1.0|Find more info here}
|
|
19
18
|
*/
|
|
20
19
|
get(requestConfiguration?: RequestConfiguration<AssignedToTaskBoardFormatRequestBuilderGetQueryParameters> | undefined): Promise<PlannerAssignedToTaskBoardTaskFormat | undefined>;
|
|
21
20
|
/**
|
|
@@ -24,7 +23,6 @@ export interface AssignedToTaskBoardFormatRequestBuilder extends BaseRequestBuil
|
|
|
24
23
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
25
24
|
* @returns {Promise<PlannerAssignedToTaskBoardTaskFormat>}
|
|
26
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
27
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerassignedtotaskboardtaskformat-update?view=graph-rest-1.0|Find more info here}
|
|
28
26
|
*/
|
|
29
27
|
patch(body: PlannerAssignedToTaskBoardTaskFormat, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PlannerAssignedToTaskBoardTaskFormat | undefined>;
|
|
30
28
|
/**
|
|
@@ -34,7 +32,7 @@ export interface AssignedToTaskBoardFormatRequestBuilder extends BaseRequestBuil
|
|
|
34
32
|
*/
|
|
35
33
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
35
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo.
|
|
38
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
37
|
* @returns {RequestInformation}
|
|
40
38
|
*/
|
|
@@ -48,7 +46,7 @@ export interface AssignedToTaskBoardFormatRequestBuilder extends BaseRequestBuil
|
|
|
48
46
|
toPatchRequestInformation(body: PlannerAssignedToTaskBoardTaskFormat, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
47
|
}
|
|
50
48
|
/**
|
|
51
|
-
*
|
|
49
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo.
|
|
52
50
|
*/
|
|
53
51
|
export interface AssignedToTaskBoardFormatRequestBuilderGetQueryParameters {
|
|
54
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAmH,KAAK,oCAAoC,EAAE,MAAM,gCAAgC,CAAC;AAI5M,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,uCAAwC,SAAQ,kBAAkB,CAAC,uCAAuC,CAAC;IACxH;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAmH,KAAK,oCAAoC,EAAE,MAAM,gCAAgC,CAAC;AAI5M,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,uCAAwC,SAAQ,kBAAkB,CAAC,uCAAuC,CAAC;IACxH;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yDAAyD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oCAAoC,GAAG,SAAS,CAAC,CAAC;IACrL;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,oCAAoC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oCAAoC,GAAG,SAAS,CAAC,CAAC;IAChL;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yDAAyD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,oCAAoC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAChK;AACD;;GAEG;AACH,MAAM,WAAW,yDAAyD;IACtE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,kDAAkD,yHAAyH,CAAC;AAQzL;;GAEG;AACH,eAAO,MAAM,uDAAuD,EAAE,gBA+BrE,CAAC"}
|
|
@@ -11,11 +11,10 @@ export interface BucketTaskBoardFormatRequestBuilder extends BaseRequestBuilder<
|
|
|
11
11
|
*/
|
|
12
12
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket.
|
|
15
15
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
16
|
* @returns {Promise<PlannerBucketTaskBoardTaskFormat>}
|
|
17
17
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
18
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerbuckettaskboardtaskformat-get?view=graph-rest-1.0|Find more info here}
|
|
19
18
|
*/
|
|
20
19
|
get(requestConfiguration?: RequestConfiguration<BucketTaskBoardFormatRequestBuilderGetQueryParameters> | undefined): Promise<PlannerBucketTaskBoardTaskFormat | undefined>;
|
|
21
20
|
/**
|
|
@@ -24,7 +23,6 @@ export interface BucketTaskBoardFormatRequestBuilder extends BaseRequestBuilder<
|
|
|
24
23
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
25
24
|
* @returns {Promise<PlannerBucketTaskBoardTaskFormat>}
|
|
26
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
27
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerbuckettaskboardtaskformat-update?view=graph-rest-1.0|Find more info here}
|
|
28
26
|
*/
|
|
29
27
|
patch(body: PlannerBucketTaskBoardTaskFormat, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PlannerBucketTaskBoardTaskFormat | undefined>;
|
|
30
28
|
/**
|
|
@@ -34,7 +32,7 @@ export interface BucketTaskBoardFormatRequestBuilder extends BaseRequestBuilder<
|
|
|
34
32
|
*/
|
|
35
33
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
35
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket.
|
|
38
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
37
|
* @returns {RequestInformation}
|
|
40
38
|
*/
|
|
@@ -48,7 +46,7 @@ export interface BucketTaskBoardFormatRequestBuilder extends BaseRequestBuilder<
|
|
|
48
46
|
toPatchRequestInformation(body: PlannerBucketTaskBoardTaskFormat, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
47
|
}
|
|
50
48
|
/**
|
|
51
|
-
*
|
|
49
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket.
|
|
52
50
|
*/
|
|
53
51
|
export interface BucketTaskBoardFormatRequestBuilderGetQueryParameters {
|
|
54
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA2G,KAAK,gCAAgC,EAAE,MAAM,gCAAgC,CAAC;AAIhM,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,mCAAoC,SAAQ,kBAAkB,CAAC,mCAAmC,CAAC;IAChH;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA2G,KAAK,gCAAgC,EAAE,MAAM,gCAAgC,CAAC;AAIhM,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,mCAAoC,SAAQ,kBAAkB,CAAC,mCAAmC,CAAC;IAChH;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qDAAqD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,gCAAgC,GAAG,SAAS,CAAC,CAAC;IAC7K;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,gCAAgC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,gCAAgC,GAAG,SAAS,CAAC,CAAC;IACxK;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qDAAqD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC9J;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,gCAAgC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC5J;AACD;;GAEG;AACH,MAAM,WAAW,qDAAqD;IAClE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,8CAA8C,qHAAqH,CAAC;AAQjL;;GAEG;AACH,eAAO,MAAM,mDAAmD,EAAE,gBA+BjE,CAAC"}
|
|
@@ -11,11 +11,10 @@ export interface DetailsRequestBuilder extends BaseRequestBuilder<DetailsRequest
|
|
|
11
11
|
*/
|
|
12
12
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Read-only. Nullable. More details about the task.
|
|
15
15
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
16
|
* @returns {Promise<PlannerTaskDetails>}
|
|
17
17
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
18
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannertaskdetails-get?view=graph-rest-1.0|Find more info here}
|
|
19
18
|
*/
|
|
20
19
|
get(requestConfiguration?: RequestConfiguration<DetailsRequestBuilderGetQueryParameters> | undefined): Promise<PlannerTaskDetails | undefined>;
|
|
21
20
|
/**
|
|
@@ -24,7 +23,6 @@ export interface DetailsRequestBuilder extends BaseRequestBuilder<DetailsRequest
|
|
|
24
23
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
25
24
|
* @returns {Promise<PlannerTaskDetails>}
|
|
26
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
27
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannertaskdetails-update?view=graph-rest-1.0|Find more info here}
|
|
28
26
|
*/
|
|
29
27
|
patch(body: PlannerTaskDetails, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PlannerTaskDetails | undefined>;
|
|
30
28
|
/**
|
|
@@ -34,7 +32,7 @@ export interface DetailsRequestBuilder extends BaseRequestBuilder<DetailsRequest
|
|
|
34
32
|
*/
|
|
35
33
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
35
|
+
* Read-only. Nullable. More details about the task.
|
|
38
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
37
|
* @returns {RequestInformation}
|
|
40
38
|
*/
|
|
@@ -48,7 +46,7 @@ export interface DetailsRequestBuilder extends BaseRequestBuilder<DetailsRequest
|
|
|
48
46
|
toPatchRequestInformation(body: PlannerTaskDetails, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
47
|
}
|
|
50
48
|
/**
|
|
51
|
-
*
|
|
49
|
+
* Read-only. Nullable. More details about the task.
|
|
52
50
|
*/
|
|
53
51
|
export interface DetailsRequestBuilderGetQueryParameters {
|
|
54
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+E,KAAK,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AAItJ,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+E,KAAK,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AAItJ,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uCAAuC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kBAAkB,GAAG,SAAS,CAAC,CAAC;IACjJ;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,kBAAkB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kBAAkB,GAAG,SAAS,CAAC,CAAC;IAC5I;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uCAAuC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAChJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,kBAAkB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC9I;AACD;;GAEG;AACH,MAAM,WAAW,uCAAuC;IACpD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,gCAAgC,uGAAuG,CAAC;AAQrJ;;GAEG;AACH,eAAO,MAAM,qCAAqC,EAAE,gBA+BnD,CAAC"}
|
|
@@ -11,11 +11,10 @@ export interface ProgressTaskBoardFormatRequestBuilder extends BaseRequestBuilde
|
|
|
11
11
|
*/
|
|
12
12
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress.
|
|
15
15
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
16
|
* @returns {Promise<PlannerProgressTaskBoardTaskFormat>}
|
|
17
17
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
18
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerprogresstaskboardtaskformat-get?view=graph-rest-1.0|Find more info here}
|
|
19
18
|
*/
|
|
20
19
|
get(requestConfiguration?: RequestConfiguration<ProgressTaskBoardFormatRequestBuilderGetQueryParameters> | undefined): Promise<PlannerProgressTaskBoardTaskFormat | undefined>;
|
|
21
20
|
/**
|
|
@@ -24,7 +23,6 @@ export interface ProgressTaskBoardFormatRequestBuilder extends BaseRequestBuilde
|
|
|
24
23
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
25
24
|
* @returns {Promise<PlannerProgressTaskBoardTaskFormat>}
|
|
26
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
27
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerprogresstaskboardtaskformat-update?view=graph-rest-1.0|Find more info here}
|
|
28
26
|
*/
|
|
29
27
|
patch(body: PlannerProgressTaskBoardTaskFormat, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PlannerProgressTaskBoardTaskFormat | undefined>;
|
|
30
28
|
/**
|
|
@@ -34,7 +32,7 @@ export interface ProgressTaskBoardFormatRequestBuilder extends BaseRequestBuilde
|
|
|
34
32
|
*/
|
|
35
33
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
35
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress.
|
|
38
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
37
|
* @returns {RequestInformation}
|
|
40
38
|
*/
|
|
@@ -48,7 +46,7 @@ export interface ProgressTaskBoardFormatRequestBuilder extends BaseRequestBuilde
|
|
|
48
46
|
toPatchRequestInformation(body: PlannerProgressTaskBoardTaskFormat, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
47
|
}
|
|
50
48
|
/**
|
|
51
|
-
*
|
|
49
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress.
|
|
52
50
|
*/
|
|
53
51
|
export interface ProgressTaskBoardFormatRequestBuilderGetQueryParameters {
|
|
54
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+G,KAAK,kCAAkC,EAAE,MAAM,gCAAgC,CAAC;AAItM,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,qCAAsC,SAAQ,kBAAkB,CAAC,qCAAqC,CAAC;IACpH;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+G,KAAK,kCAAkC,EAAE,MAAM,gCAAgC,CAAC;AAItM,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,qCAAsC,SAAQ,kBAAkB,CAAC,qCAAqC,CAAC;IACpH;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uDAAuD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kCAAkC,GAAG,SAAS,CAAC,CAAC;IACjL;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,kCAAkC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kCAAkC,GAAG,SAAS,CAAC,CAAC;IAC5K;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uDAAuD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAChK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,kCAAkC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC9J;AACD;;GAEG;AACH,MAAM,WAAW,uDAAuD;IACpE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,gDAAgD,uHAAuH,CAAC;AAQrL;;GAEG;AACH,eAAO,MAAM,qDAAqD,EAAE,gBA+BnE,CAAC"}
|
package/planner/tasks/index.d.ts
CHANGED
|
@@ -17,30 +17,28 @@ export interface TasksRequestBuilder extends BaseRequestBuilder<TasksRequestBuil
|
|
|
17
17
|
*/
|
|
18
18
|
byPlannerTaskId(plannerTaskId: string): PlannerTaskItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Read-only. Nullable. Returns a collection of the specified tasks
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<PlannerTaskCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
-
* @see {@link https://learn.microsoft.com/graph/api/planner-list-tasks?view=graph-rest-1.0|Find more info here}
|
|
25
24
|
*/
|
|
26
25
|
get(requestConfiguration?: RequestConfiguration<TasksRequestBuilderGetQueryParameters> | undefined): Promise<PlannerTaskCollectionResponse | undefined>;
|
|
27
26
|
/**
|
|
28
|
-
* Create
|
|
27
|
+
* Create new navigation property to tasks for planner
|
|
29
28
|
* @param body The request body
|
|
30
29
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
30
|
* @returns {Promise<PlannerTask>}
|
|
32
31
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
33
|
-
* @see {@link https://learn.microsoft.com/graph/api/planner-post-tasks?view=graph-rest-1.0|Find more info here}
|
|
34
32
|
*/
|
|
35
33
|
post(body: PlannerTask, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PlannerTask | undefined>;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
35
|
+
* Read-only. Nullable. Returns a collection of the specified tasks
|
|
38
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
37
|
* @returns {RequestInformation}
|
|
40
38
|
*/
|
|
41
39
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<TasksRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
42
40
|
/**
|
|
43
|
-
* Create
|
|
41
|
+
* Create new navigation property to tasks for planner
|
|
44
42
|
* @param body The request body
|
|
45
43
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
46
44
|
* @returns {RequestInformation}
|
|
@@ -48,7 +46,7 @@ export interface TasksRequestBuilder extends BaseRequestBuilder<TasksRequestBuil
|
|
|
48
46
|
toPostRequestInformation(body: PlannerTask, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
47
|
}
|
|
50
48
|
/**
|
|
51
|
-
*
|
|
49
|
+
* Read-only. Nullable. Returns a collection of the specified tasks
|
|
52
50
|
*/
|
|
53
51
|
export interface TasksRequestBuilderGetQueryParameters {
|
|
54
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA4H,KAAK,WAAW,EAAE,KAAK,6BAA6B,EAAE,MAAM,gCAAgC,CAAC;AAIhO,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAkG,KAAK,6BAA6B,EAAE,MAAM,SAAS,CAAC;AAE7J,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,kBAAkB,CAAC,mBAAmB,CAAC;IAChF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,eAAe,CAAC,aAAa,EAAE,MAAM,GAAI,6BAA6B,CAAC;IACxE
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA4H,KAAK,WAAW,EAAE,KAAK,6BAA6B,EAAE,MAAM,gCAAgC,CAAC;AAIhO,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAkG,KAAK,6BAA6B,EAAE,MAAM,SAAS,CAAC;AAE7J,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,kBAAkB,CAAC,mBAAmB,CAAC;IAChF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,eAAe,CAAC,aAAa,EAAE,MAAM,GAAI,6BAA6B,CAAC;IACxE;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,6BAA6B,GAAG,SAAS,CAAC,CAAC;IAC1J;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,WAAW,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IAC7H;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC9I;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,WAAW,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACtI;AACD;;GAEG;AACH,MAAM,WAAW,qCAAqC;IAClD;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,8BAA8B,0GAA0G,CAAC;AActJ;;GAEG;AACH,eAAO,MAAM,qCAAqC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,mBAAmB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CASpJ,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,mCAAmC,EAAE,gBAuBjD,CAAC"}
|
|
@@ -11,11 +11,10 @@ export interface AssignedToTaskBoardFormatRequestBuilder extends BaseRequestBuil
|
|
|
11
11
|
*/
|
|
12
12
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo.
|
|
15
15
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
16
|
* @returns {Promise<PlannerAssignedToTaskBoardTaskFormat>}
|
|
17
17
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
18
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerassignedtotaskboardtaskformat-get?view=graph-rest-1.0|Find more info here}
|
|
19
18
|
*/
|
|
20
19
|
get(requestConfiguration?: RequestConfiguration<AssignedToTaskBoardFormatRequestBuilderGetQueryParameters> | undefined): Promise<PlannerAssignedToTaskBoardTaskFormat | undefined>;
|
|
21
20
|
/**
|
|
@@ -24,7 +23,6 @@ export interface AssignedToTaskBoardFormatRequestBuilder extends BaseRequestBuil
|
|
|
24
23
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
25
24
|
* @returns {Promise<PlannerAssignedToTaskBoardTaskFormat>}
|
|
26
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
27
|
-
* @see {@link https://learn.microsoft.com/graph/api/plannerassignedtotaskboardtaskformat-update?view=graph-rest-1.0|Find more info here}
|
|
28
26
|
*/
|
|
29
27
|
patch(body: PlannerAssignedToTaskBoardTaskFormat, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PlannerAssignedToTaskBoardTaskFormat | undefined>;
|
|
30
28
|
/**
|
|
@@ -34,7 +32,7 @@ export interface AssignedToTaskBoardFormatRequestBuilder extends BaseRequestBuil
|
|
|
34
32
|
*/
|
|
35
33
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
35
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo.
|
|
38
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
37
|
* @returns {RequestInformation}
|
|
40
38
|
*/
|
|
@@ -48,7 +46,7 @@ export interface AssignedToTaskBoardFormatRequestBuilder extends BaseRequestBuil
|
|
|
48
46
|
toPatchRequestInformation(body: PlannerAssignedToTaskBoardTaskFormat, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
47
|
}
|
|
50
48
|
/**
|
|
51
|
-
*
|
|
49
|
+
* Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo.
|
|
52
50
|
*/
|
|
53
51
|
export interface AssignedToTaskBoardFormatRequestBuilderGetQueryParameters {
|
|
54
52
|
/**
|