import { type CreatePickList, type PickList } from '../../../../models/index.js'; import { type PagedList } from '../../../../models/pickList/index.js'; import { type WithPicklistItemRequestBuilder } from './item/index.js'; import { type BaseRequestBuilder, type Guid, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /v2/wms/{warehouseId}/picklists */ export interface PicklistsRequestBuilder extends BaseRequestBuilder { /** * Gets an item from the JtlErpApi.v2.wms.item.picklists.item collection * @param picklistId The id of the pick list. * @returns {WithPicklistItemRequestBuilder} */ byPicklistId(picklistId: Guid): WithPicklistItemRequestBuilder; /** * Query all pick lists for a specific wms warehouse that are not completed. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ErrorResponse} error when the service returns a 404 status code */ get(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Create a new pick list for a specific wms warehouse * @param body Model Class: CreatePickList * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ErrorResponse} error when the service returns a 400 status code * @throws {ErrorResponse} error when the service returns a 404 status code */ post(body: CreatePickList, requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Query all pick lists for a specific wms warehouse that are not completed. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; /** * Create a new pick list for a specific wms warehouse * @param body Model Class: CreatePickList * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(body: CreatePickList, requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Query all pick lists for a specific wms warehouse that are not completed. */ export interface PicklistsRequestBuilderGetQueryParameters { /** * Number of the page of items to fetch. */ pageNumber?: number; /** * Size of the page that is specified by `pageNumber`. */ pageSize?: number; } /** * Uri template for the request builder. */ export declare const PicklistsRequestBuilderUriTemplate = "{+baseurl}/v2/wms/{warehouseId}/picklists{?pageNumber*,pageSize*}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const PicklistsRequestBuilderNavigationMetadata: Record, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const PicklistsRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map