UNPKG

@microsoft/msgraph-beta-sdk-users

Version:
103 lines 6.53 kB
import { type OutlookTaskFolder, type OutlookTaskFolderCollectionResponse } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type CountRequestBuilder } from './count/index.js'; import { type OutlookTaskFolderItemRequestBuilder } from './item/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the taskFolders property of the microsoft.graph.outlookUser entity. */ export interface TaskFoldersRequestBuilder extends BaseRequestBuilder<TaskFoldersRequestBuilder> { /** * Provides operations to count the resources in the collection. * @deprecated The Outlook tasks API is deprecated and will stop returning data on February 20, 2023. Please use the new To Do API. For more details, please visit https://developer.microsoft.com/en-us/office/blogs/announcing-the-general-availability-of-microsoft-to-do-apis-on-graph/ as of 2020-08/Outlook_Tasks on 2021-02-20 and will be removed 2023-02-20 */ get count(): CountRequestBuilder; /** * Provides operations to manage the taskFolders property of the microsoft.graph.outlookUser entity. * @param outlookTaskFolderId The unique identifier of outlookTaskFolder * @returns {OutlookTaskFolderItemRequestBuilder} * @deprecated The Outlook tasks API is deprecated and will stop returning data on February 20, 2023. Please use the new To Do API. For more details, please visit https://developer.microsoft.com/en-us/office/blogs/announcing-the-general-availability-of-microsoft-to-do-apis-on-graph/ as of 2020-08/Outlook_Tasks on 2021-02-20 and will be removed 2023-02-20 */ byOutlookTaskFolderId(outlookTaskFolderId: string): OutlookTaskFolderItemRequestBuilder; /** * The user's Outlook task folders. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<OutlookTaskFolderCollectionResponse>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @deprecated The Outlook tasks API is deprecated and will stop returning data on February 20, 2023. Please use the new To Do API. For more details, please visit https://developer.microsoft.com/en-us/office/blogs/announcing-the-general-availability-of-microsoft-to-do-apis-on-graph/ as of 2020-08/Outlook_Tasks on 2021-02-20 and will be removed 2023-02-20 */ get(requestConfiguration?: RequestConfiguration<TaskFoldersRequestBuilderGetQueryParameters> | undefined): Promise<OutlookTaskFolderCollectionResponse | undefined>; /** * Create new navigation property to taskFolders for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<OutlookTaskFolder>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @deprecated The Outlook tasks API is deprecated and will stop returning data on February 20, 2023. Please use the new To Do API. For more details, please visit https://developer.microsoft.com/en-us/office/blogs/announcing-the-general-availability-of-microsoft-to-do-apis-on-graph/ as of 2020-08/Outlook_Tasks on 2021-02-20 and will be removed 2023-02-20 */ post(body: OutlookTaskFolder, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<OutlookTaskFolder | undefined>; /** * The user's Outlook task folders. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} * @deprecated The Outlook tasks API is deprecated and will stop returning data on February 20, 2023. Please use the new To Do API. For more details, please visit https://developer.microsoft.com/en-us/office/blogs/announcing-the-general-availability-of-microsoft-to-do-apis-on-graph/ as of 2020-08/Outlook_Tasks on 2021-02-20 and will be removed 2023-02-20 */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<TaskFoldersRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Create new navigation property to taskFolders for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} * @deprecated The Outlook tasks API is deprecated and will stop returning data on February 20, 2023. Please use the new To Do API. For more details, please visit https://developer.microsoft.com/en-us/office/blogs/announcing-the-general-availability-of-microsoft-to-do-apis-on-graph/ as of 2020-08/Outlook_Tasks on 2021-02-20 and will be removed 2023-02-20 */ toPostRequestInformation(body: OutlookTaskFolder, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * The user's Outlook task folders. Read-only. Nullable. */ export interface TaskFoldersRequestBuilderGetQueryParameters { /** * Include count of items */ count?: boolean; /** * Expand related entities */ expand?: string[]; /** * Filter items by property values */ filter?: string; /** * Order items by property values */ orderby?: string[]; /** * Search items by search phrases */ search?: string; /** * Select properties to be returned */ select?: string[]; /** * Skip the first n items */ skip?: number; /** * Show only the first n items */ top?: number; } /** * Uri template for the request builder. */ export declare const TaskFoldersRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/outlook/taskFolders{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const TaskFoldersRequestBuilderNavigationMetadata: Record<Exclude<keyof TaskFoldersRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const TaskFoldersRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map