@pnp/odata
Advanced tools
Comparing version 2.1.0-beta6 to 2.1.0-beta7
import { IFetchOptions } from "@pnp/common"; | ||
import { IODataParser } from "./parsers"; | ||
import { IQueryable } from "./queryable"; | ||
import { IRequestContext } from "./pipeline"; | ||
import { IODataParser } from "./parsers.js"; | ||
import { IQueryable } from "./queryable.js"; | ||
import { IRequestContext } from "./pipeline.js"; | ||
export interface IODataBatchRequestInfo { | ||
@@ -6,0 +6,0 @@ url: string; |
@@ -1,2 +0,2 @@ | ||
import { IODataParser } from "./parsers"; | ||
import { IODataParser } from "./parsers.js"; | ||
import { IPnPClientStore, PnPClientStorage } from "@pnp/common"; | ||
@@ -3,0 +3,0 @@ export interface ICachingOptions { |
import { Logger } from "@pnp/logging"; | ||
import { extendGlobal } from "./invokable-extensions"; | ||
import { extendGlobal } from "./invokable-extensions.js"; | ||
extendGlobal([ | ||
@@ -4,0 +4,0 @@ function (op, target) { |
@@ -1,11 +0,11 @@ | ||
export * from "./batch"; | ||
export * from "./caching"; | ||
export * from "./add-prop"; | ||
export * from "./invokable-binder"; | ||
export * from "./pipeline-binder"; | ||
export * from "./parsers"; | ||
export * from "./pipeline"; | ||
export * from "./queryable"; | ||
export * from "./request-builders"; | ||
export { extendGlobal, extendObj, extendFactory, ExtensionType, clearGlobalExtensions, enableExtensions, disableExtensions, } from "./invokable-extensions"; | ||
export * from "./batch.js"; | ||
export * from "./caching.js"; | ||
export * from "./add-prop.js"; | ||
export * from "./invokable-binder.js"; | ||
export * from "./pipeline-binder.js"; | ||
export * from "./parsers.js"; | ||
export * from "./pipeline.js"; | ||
export * from "./queryable.js"; | ||
export * from "./request-builders.js"; | ||
export { extendGlobal, extendObj, extendFactory, ExtensionType, clearGlobalExtensions, enableExtensions, disableExtensions, } from "./invokable-extensions.js"; | ||
//# sourceMappingURL=index.d.ts.map |
20
index.js
@@ -1,11 +0,11 @@ | ||
export * from "./batch"; | ||
export * from "./caching"; | ||
export * from "./add-prop"; | ||
export * from "./invokable-binder"; | ||
export * from "./pipeline-binder"; | ||
export * from "./parsers"; | ||
export * from "./pipeline"; | ||
export * from "./queryable"; | ||
export * from "./request-builders"; | ||
export { extendGlobal, extendObj, extendFactory, clearGlobalExtensions, enableExtensions, disableExtensions, } from "./invokable-extensions"; | ||
export * from "./batch.js"; | ||
export * from "./caching.js"; | ||
export * from "./add-prop.js"; | ||
export * from "./invokable-binder.js"; | ||
export * from "./pipeline-binder.js"; | ||
export * from "./parsers.js"; | ||
export * from "./pipeline.js"; | ||
export * from "./queryable.js"; | ||
export * from "./request-builders.js"; | ||
export { extendGlobal, extendObj, extendFactory, clearGlobalExtensions, enableExtensions, disableExtensions, } from "./invokable-extensions.js"; | ||
//# sourceMappingURL=index.js.map |
@@ -1,3 +0,3 @@ | ||
import { IQueryable } from "./queryable"; | ||
import { IRequestContext } from "./pipeline"; | ||
import { IQueryable } from "./queryable.js"; | ||
import { IRequestContext } from "./pipeline.js"; | ||
export declare type IHybrid<R = any, T = any> = T & { | ||
@@ -4,0 +4,0 @@ (this: T, ...args: any[]): Promise<R>; |
import { __read, __spread } from "tslib"; | ||
import { DefaultRuntime } from "@pnp/common"; | ||
import { extensionOrDefault, applyFactoryExtensions } from "./invokable-extensions"; | ||
import { extensionOrDefault, applyFactoryExtensions } from "./invokable-extensions.js"; | ||
var invokableBinder = function (invoker) { return function (constructor) { | ||
@@ -5,0 +5,0 @@ return function () { |
{ | ||
"name": "@pnp/odata", | ||
"version": "2.1.0-beta6", | ||
"version": "2.1.0-beta7", | ||
"description": "pnp - provides shared odata functionality and base classes", | ||
@@ -8,5 +8,5 @@ "main": "./index.js", | ||
"dependencies": { | ||
"tslib": "2.0.0", | ||
"@pnp/logging": "2.1.0-beta6", | ||
"@pnp/common": "2.1.0-beta6" | ||
"tslib": "2.0.3", | ||
"@pnp/logging": "2.1.0-beta7", | ||
"@pnp/common": "2.1.0-beta7" | ||
}, | ||
@@ -13,0 +13,0 @@ "author": { |
@@ -1,5 +0,5 @@ | ||
import { IODataParser } from "./parsers"; | ||
import { IODataParser } from "./parsers.js"; | ||
import { IFetchOptions, IRequestClient } from "@pnp/common"; | ||
import { IQueryableData } from "./queryable"; | ||
import { PipelineMethod } from "./pipeline"; | ||
import { IQueryableData } from "./queryable.js"; | ||
import { PipelineMethod } from "./pipeline.js"; | ||
export interface IRequestOptions<T> extends IFetchOptions { | ||
@@ -6,0 +6,0 @@ parser: IODataParser<T>; |
@@ -1,5 +0,5 @@ | ||
import { ODataParser } from "./parsers"; | ||
import { ODataParser } from "./parsers.js"; | ||
import { getGUID, objectDefinedNotNull } from "@pnp/common"; | ||
import { cloneQueryableData } from "./queryable"; | ||
import { pipe, getDefaultPipeline } from "./pipeline"; | ||
import { cloneQueryableData } from "./queryable.js"; | ||
import { pipe, getDefaultPipeline } from "./pipeline.js"; | ||
// first we bind the pipeline we will use for all requests within this closure | ||
@@ -6,0 +6,0 @@ export function pipelineBinder(pipes) { |
import { IRequestClient } from "@pnp/common"; | ||
import { IQueryableData } from "./queryable"; | ||
import { IQueryableData } from "./queryable.js"; | ||
/** | ||
@@ -4,0 +4,0 @@ * Defines the context for a given request to be processed in the pipeline |
import { __decorate } from "tslib"; | ||
import { assign, isFunc, hOP } from "@pnp/common"; | ||
import { Logger } from "@pnp/logging"; | ||
import { CachingOptions, CachingParserWrapper } from "./caching"; | ||
import { CachingOptions, CachingParserWrapper } from "./caching.js"; | ||
/** | ||
@@ -6,0 +6,0 @@ * Resolves the context's result value |
import { IFetchOptions, IConfigOptions, IRequestClient, ITypedHash, Runtime } from "@pnp/common"; | ||
import { ICachingOptions } from "./caching"; | ||
import { Batch } from "./batch"; | ||
import { PipelineMethod } from "./pipeline"; | ||
import { IODataParser } from "./parsers"; | ||
import { ICachingOptions } from "./caching.js"; | ||
import { Batch } from "./batch.js"; | ||
import { PipelineMethod } from "./pipeline.js"; | ||
import { IODataParser } from "./parsers.js"; | ||
export declare function cloneQueryableData(source: Partial<IQueryableData>): Partial<IQueryableData>; | ||
@@ -7,0 +7,0 @@ export interface IQueryableData<DefaultActionType = any> { |
import { __read, __spread } from "tslib"; | ||
import { combine, mergeOptions, objectDefinedNotNull, assign, Runtime, DefaultRuntime, dateAdd, stringIsNullOrEmpty, } from "@pnp/common"; | ||
import { ODataParser } from "./parsers"; | ||
import { ODataParser } from "./parsers.js"; | ||
export function cloneQueryableData(source) { | ||
@@ -5,0 +5,0 @@ var body; |
@@ -0,0 +0,0 @@ ![SharePoint Patterns and Practices](https://devofficecdn.azureedge.net/media/Default/PnP/sppnp.png) |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
106560
+ Added@pnp/common@2.1.0-beta7(transitive)
+ Added@pnp/logging@2.1.0-beta7(transitive)
+ Addedtslib@2.0.3(transitive)
- Removed@pnp/common@2.1.0-beta6(transitive)
- Removed@pnp/logging@2.1.0-beta6(transitive)
- Removedtslib@2.0.0(transitive)
Updated@pnp/common@2.1.0-beta7
Updated@pnp/logging@2.1.0-beta7
Updatedtslib@2.0.3