@microsoft/msgraph-sdk-drives 1.0.0-preview.17 → 1.0.0-preview.18

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.
@@ -5,15 +5,15 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
5
5
  */
6
6
  export interface RangeRequestBuilder extends BaseRequestBuilder<RangeRequestBuilder> {
7
7
  /**
8
- * Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range.
8
+ * Retrieve the properties and relationships of range object.
9
9
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
10
  * @returns {Promise<WorkbookRange>}
11
11
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
12
- * @see {@link https://learn.microsoft.com/graph/api/nameditem-range?view=graph-rest-1.0|Find more info here}
12
+ * @see {@link https://learn.microsoft.com/graph/api/range-get?view=graph-rest-1.0|Find more info here}
13
13
  */
14
14
  get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<WorkbookRange | undefined>;
15
15
  /**
16
- * Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range.
16
+ * Retrieve the properties and relationships of range object.
17
17
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
18
18
  * @returns {RequestInformation}
19
19
  */
@@ -23,16 +23,16 @@ export interface AddPostRequestBody extends AdditionalDataHolder, BackedModel, P
23
23
  */
24
24
  export interface AddRequestBuilder extends BaseRequestBuilder<AddRequestBuilder> {
25
25
  /**
26
- * Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated.
26
+ * Use this API to create a new Table.
27
27
  * @param body The request body
28
28
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
29
29
  * @returns {Promise<WorkbookTable>}
30
30
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
31
- * @see {@link https://learn.microsoft.com/graph/api/tablecollection-add?view=graph-rest-1.0|Find more info here}
31
+ * @see {@link https://learn.microsoft.com/graph/api/workbook-post-tables?view=graph-rest-1.0|Find more info here}
32
32
  */
33
33
  post(body: AddPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<WorkbookTable | undefined>;
34
34
  /**
35
- * Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated.
35
+ * Use this API to create a new Table.
36
36
  * @param body The request body
37
37
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
38
38
  * @returns {RequestInformation}
@@ -27,7 +27,7 @@ export interface ColumnsRequestBuilder extends BaseRequestBuilder<ColumnsRequest
27
27
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
28
28
  * @returns {Promise<WorkbookTableColumnCollectionResponse>}
29
29
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
30
- * @see {@link https://learn.microsoft.com/graph/api/table-list-columns?view=graph-rest-1.0|Find more info here}
30
+ * @see {@link https://learn.microsoft.com/graph/api/tablecolumn-list?view=graph-rest-1.0|Find more info here}
31
31
  */
32
32
  get(requestConfiguration?: RequestConfiguration<ColumnsRequestBuilderGetQueryParameters> | undefined): Promise<WorkbookTableColumnCollectionResponse | undefined>;
33
33
  /**
@@ -9,7 +9,7 @@ export interface ColumnsRequestBuilder extends BaseRequestBuilder<ColumnsRequest
9
9
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
10
  * @returns {Promise<WorkbookTableColumnCollectionResponse>}
11
11
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
12
- * @see {@link https://learn.microsoft.com/graph/api/table-list-columns?view=graph-rest-1.0|Find more info here}
12
+ * @see {@link https://learn.microsoft.com/graph/api/tablecolumn-list?view=graph-rest-1.0|Find more info here}
13
13
  */
14
14
  get(requestConfiguration?: RequestConfiguration<ColumnsRequestBuilderGetQueryParameters> | undefined): Promise<WorkbookTableColumnCollectionResponse | undefined>;
15
15
  /**
@@ -28,7 +28,7 @@ export interface ChartsRequestBuilder extends BaseRequestBuilder<ChartsRequestBu
28
28
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
29
29
  * @returns {Promise<WorkbookChartCollectionResponse>}
30
30
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
31
- * @see {@link https://learn.microsoft.com/graph/api/worksheet-list-charts?view=graph-rest-1.0|Find more info here}
31
+ * @see {@link https://learn.microsoft.com/graph/api/chart-list?view=graph-rest-1.0|Find more info here}
32
32
  */
33
33
  get(requestConfiguration?: RequestConfiguration<ChartsRequestBuilderGetQueryParameters> | undefined): Promise<WorkbookChartCollectionResponse | undefined>;
34
34
  /**
@@ -18,11 +18,11 @@ export interface PointsRequestBuilder extends BaseRequestBuilder<PointsRequestBu
18
18
  */
19
19
  byWorkbookChartPointId(workbookChartPointId: string): WorkbookChartPointItemRequestBuilder;
20
20
  /**
21
- * Retrieve a list of chartpoint objects.
21
+ * Retrieve a list of chartpoints objects.
22
22
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
23
23
  * @returns {Promise<WorkbookChartPointCollectionResponse>}
24
24
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
25
- * @see {@link https://learn.microsoft.com/graph/api/chartpoint-list?view=graph-rest-1.0|Find more info here}
25
+ * @see {@link https://learn.microsoft.com/graph/api/chartseries-list-points?view=graph-rest-1.0|Find more info here}
26
26
  */
27
27
  get(requestConfiguration?: RequestConfiguration<PointsRequestBuilderGetQueryParameters> | undefined): Promise<WorkbookChartPointCollectionResponse | undefined>;
28
28
  /**
@@ -41,7 +41,7 @@ export interface PointsRequestBuilder extends BaseRequestBuilder<PointsRequestBu
41
41
  */
42
42
  post(body: WorkbookChartPoint, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<WorkbookChartPoint | undefined>;
43
43
  /**
44
- * Retrieve a list of chartpoint objects.
44
+ * Retrieve a list of chartpoints objects.
45
45
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
46
46
  * @returns {RequestInformation}
47
47
  */
@@ -55,7 +55,7 @@ export interface PointsRequestBuilder extends BaseRequestBuilder<PointsRequestBu
55
55
  toPostRequestInformation(body: WorkbookChartPoint, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
56
56
  }
57
57
  /**
58
- * Retrieve a list of chartpoint objects.
58
+ * Retrieve a list of chartpoints objects.
59
59
  */
60
60
  export interface PointsRequestBuilderGetQueryParameters {
61
61
  /**
@@ -5,11 +5,11 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
5
5
  */
6
6
  export interface PointsRequestBuilder extends BaseRequestBuilder<PointsRequestBuilder> {
7
7
  /**
8
- * Retrieve a list of chartpoint objects.
8
+ * Retrieve a list of chartpoints objects.
9
9
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
10
  * @returns {Promise<WorkbookChartPointCollectionResponse>}
11
11
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
12
- * @see {@link https://learn.microsoft.com/graph/api/chartpoint-list?view=graph-rest-1.0|Find more info here}
12
+ * @see {@link https://learn.microsoft.com/graph/api/chartseries-list-points?view=graph-rest-1.0|Find more info here}
13
13
  */
14
14
  get(requestConfiguration?: RequestConfiguration<PointsRequestBuilderGetQueryParameters> | undefined): Promise<WorkbookChartPointCollectionResponse | undefined>;
15
15
  /**
@@ -22,7 +22,7 @@ export interface PointsRequestBuilder extends BaseRequestBuilder<PointsRequestBu
22
22
  */
23
23
  post(body: WorkbookChartPoint, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<WorkbookChartPoint | undefined>;
24
24
  /**
25
- * Retrieve a list of chartpoint objects.
25
+ * Retrieve a list of chartpoints objects.
26
26
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
27
27
  * @returns {RequestInformation}
28
28
  */
@@ -36,7 +36,7 @@ export interface PointsRequestBuilder extends BaseRequestBuilder<PointsRequestBu
36
36
  toPostRequestInformation(body: WorkbookChartPoint, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
37
37
  }
38
38
  /**
39
- * Retrieve a list of chartpoint objects.
39
+ * Retrieve a list of chartpoints objects.
40
40
  */
41
41
  export interface PointsRequestBuilderGetQueryParameters {
42
42
  /**
@@ -5,15 +5,15 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
5
5
  */
6
6
  export interface RangeRequestBuilder extends BaseRequestBuilder<RangeRequestBuilder> {
7
7
  /**
8
- * Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range.
8
+ * Retrieve the properties and relationships of range object.
9
9
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
10
  * @returns {Promise<WorkbookRange>}
11
11
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
12
- * @see {@link https://learn.microsoft.com/graph/api/nameditem-range?view=graph-rest-1.0|Find more info here}
12
+ * @see {@link https://learn.microsoft.com/graph/api/range-get?view=graph-rest-1.0|Find more info here}
13
13
  */
14
14
  get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<WorkbookRange | undefined>;
15
15
  /**
16
- * Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range.
16
+ * Retrieve the properties and relationships of range object.
17
17
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
18
18
  * @returns {RequestInformation}
19
19
  */
@@ -23,16 +23,16 @@ export interface AddPostRequestBody extends AdditionalDataHolder, BackedModel, P
23
23
  */
24
24
  export interface AddRequestBuilder extends BaseRequestBuilder<AddRequestBuilder> {
25
25
  /**
26
- * Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated.
26
+ * Use this API to create a new Table.
27
27
  * @param body The request body
28
28
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
29
29
  * @returns {Promise<WorkbookTable>}
30
30
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
31
- * @see {@link https://learn.microsoft.com/graph/api/tablecollection-add?view=graph-rest-1.0|Find more info here}
31
+ * @see {@link https://learn.microsoft.com/graph/api/workbook-post-tables?view=graph-rest-1.0|Find more info here}
32
32
  */
33
33
  post(body: AddPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<WorkbookTable | undefined>;
34
34
  /**
35
- * Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated.
35
+ * Use this API to create a new Table.
36
36
  * @param body The request body
37
37
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
38
38
  * @returns {RequestInformation}
@@ -27,7 +27,7 @@ export interface ColumnsRequestBuilder extends BaseRequestBuilder<ColumnsRequest
27
27
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
28
28
  * @returns {Promise<WorkbookTableColumnCollectionResponse>}
29
29
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
30
- * @see {@link https://learn.microsoft.com/graph/api/table-list-columns?view=graph-rest-1.0|Find more info here}
30
+ * @see {@link https://learn.microsoft.com/graph/api/tablecolumn-list?view=graph-rest-1.0|Find more info here}
31
31
  */
32
32
  get(requestConfiguration?: RequestConfiguration<ColumnsRequestBuilderGetQueryParameters> | undefined): Promise<WorkbookTableColumnCollectionResponse | undefined>;
33
33
  /**
@@ -9,7 +9,7 @@ export interface ColumnsRequestBuilder extends BaseRequestBuilder<ColumnsRequest
9
9
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
10
  * @returns {Promise<WorkbookTableColumnCollectionResponse>}
11
11
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
12
- * @see {@link https://learn.microsoft.com/graph/api/table-list-columns?view=graph-rest-1.0|Find more info here}
12
+ * @see {@link https://learn.microsoft.com/graph/api/tablecolumn-list?view=graph-rest-1.0|Find more info here}
13
13
  */
14
14
  get(requestConfiguration?: RequestConfiguration<ColumnsRequestBuilderGetQueryParameters> | undefined): Promise<WorkbookTableColumnCollectionResponse | undefined>;
15
15
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/msgraph-sdk-drives",
3
- "version": "1.0.0-preview.17",
3
+ "version": "1.0.0-preview.18",
4
4
  "description": "Drives fluent API for Microsoft Graph",
5
5
  "keywords": [
6
6
  "Microsoft",
@@ -37,12 +37,12 @@
37
37
  "@microsoft/kiota-serialization-json": "^1.0.0-preview.39",
38
38
  "@microsoft/kiota-serialization-multipart": "^1.0.0-preview.18",
39
39
  "@microsoft/kiota-serialization-text": "^1.0.0-preview.36",
40
- "@microsoft/msgraph-sdk": "^1.0.0-preview.17",
40
+ "@microsoft/msgraph-sdk": "^1.0.0-preview.18",
41
41
  "guid-typescript": "^1.0.9",
42
42
  "tslib": "^2.6.2"
43
43
  },
44
44
  "devDependencies": {
45
45
  "typescript": "^5.3.3"
46
46
  },
47
- "gitHead": "cf9344aac51247cf524bc8163ff07531d51c9b6c"
47
+ "gitHead": "676c51d42cfb2332eb189ce7cfbc7e7dc08659b8"
48
48
  }