Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@pnp/odata

Package Overview
Dependencies
Maintainers
13
Versions
154
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pnp/odata - npm Package Compare versions

Comparing version 2.1.0-beta6 to 2.1.0-beta7

6

batch.d.ts
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

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc