ItemUpdateApi - axios parameter creator

  • Parameters

    Returns {
        getMetadataEditorInfo: (
            itemId: string,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        updateItem: (
            itemId: string,
            baseItemDto: BaseItemDto,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        updateItemContentType: (
            itemId: string,
            contentType?: string,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
    }

    • getMetadataEditorInfo: (itemId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
    • updateItem: (
          itemId: string,
          baseItemDto: BaseItemDto,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>
    • updateItemContentType: (
          itemId: string,
          contentType?: string,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>