import { type AddItemSupplierCommandRequest } from '../../../../models/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /v2/itemdetails/suppliers/add */ export interface AddRequestBuilder extends BaseRequestBuilder { /** * Adds supplier information to an existing regular item. This command allows the association of suppliers with the item, including details such as purchase prices, delivery times, and order intervals. * @param body Adds supplier information to an existing regular item. This command allows the association of suppliers with the item, including details such as purchase prices, delivery times, and order intervals. - Request * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} */ post(body: AddItemSupplierCommandRequest, requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Adds supplier information to an existing regular item. This command allows the association of suppliers with the item, including details such as purchase prices, delivery times, and order intervals. * @param body Adds supplier information to an existing regular item. This command allows the association of suppliers with the item, including details such as purchase prices, delivery times, and order intervals. - Request * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(body: AddItemSupplierCommandRequest, requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const AddRequestBuilderUriTemplate = "{+baseurl}/v2/itemdetails/suppliers/add"; /** * Metadata for all the requests in the request builder. */ export declare const AddRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map