Skip to content

Commit 19d6db8

Browse files
committed
New feature: Tenant Properties. Version updated, ready to publish.
1 parent 7d9962d commit 19d6db8

File tree

12 files changed

+9701
-6817
lines changed

12 files changed

+9701
-6817
lines changed

package-lock.json

Lines changed: 35 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sp-editor",
3-
"version": "7.5.5",
3+
"version": "7.6.0",
44
"private": true,
55
"homepage": ".",
66
"dependencies": {
@@ -18,11 +18,11 @@
1818
"@microsoft/mgt-react": "^4.4.0",
1919
"@microsoft/microsoft-graph-client": "^3.0.7",
2020
"@minoru/react-dnd-treeview": "^3.5.0",
21-
"@pnp/graph": "^4.10.0",
22-
"@pnp/logging": "^4.10.0",
23-
"@pnp/msaljsclient": "^4.10.0",
24-
"@pnp/sp": "^4.10.0",
25-
"@pnp/sp-admin": "^4.10.0",
21+
"@pnp/graph": "^4.11.0",
22+
"@pnp/logging": "^4.11.0",
23+
"@pnp/msaljsclient": "^4.11.0",
24+
"@pnp/sp": "^4.11.0",
25+
"@pnp/sp-admin": "^4.11.0",
2626
"@reduxjs/toolkit": "^2.6.0",
2727
"@testing-library/jest-dom": "^6.6.3",
2828
"@testing-library/react": "^16.2.0",

pnpjs-sources/index-sp.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
export * from '../node_modules/@pnp/sp/presets/all'
2+
export * from '../node_modules/@pnp/sp-admin/index'

public/@pnp/graph/files/types.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,12 @@ export declare class _DriveItem extends _GraphInstance<IDriveItemType> {
105105
* Method for retrieving thumbnails of the drive items.
106106
* @returns Microsoft Graph - ThumbnailSet
107107
*/
108-
get thumbnails(): IGraphCollection<IThumbnailSetType>;
108+
get thumbnails(): IGraphCollection<IThumbnailSetType[]>;
109109
/**
110110
* Method for retrieving the versions of a drive item.
111111
* @returns IDriveItemVersionInfo
112112
*/
113-
get versions(): IGraphCollection<IDriveItemVersionType>;
113+
get versions(): IGraphCollection<IDriveItemVersionType[]>;
114114
/**
115115
* Method for moving a file to a new location and/or name.
116116
* @param moveOptions - IItemOptions object

public/@pnp/graph/presets/all.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import "../lists/index.js";
2121
import "../mail/index.js";
2222
import "../members/index.js";
2323
import "../onenote/index.js";
24+
import "../open-extensions/index.js";
2425
import "../operations/index.js";
2526
import "../pages/index.js";
2627
import "../permissions/index.js";
@@ -35,6 +36,8 @@ import "../taxonomy/index.js";
3536
import "../teams/index.js";
3637
import "../to-do/index.js";
3738
import "../users/index.js";
39+
import "../workbooks/index.js";
40+
import "../users/index.js";
3841
export * from "../index.js";
3942
export * from "../admin/index.js";
4043
export * from "../analytics/index.js";
@@ -72,4 +75,5 @@ export * from "../taxonomy/index.js";
7275
export * from "../teams/index.js";
7376
export * from "../to-do/index.js";
7477
export * from "../users/index.js";
78+
export * from "../workbooks/index.js";
7579
//# sourceMappingURL=all.d.ts.map

public/@pnp/sp/presets/all.d.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1+
import "../batching.js";
12
import "../appcatalog/index.js";
23
import "../attachments/index.js";
34
import "../clientside-pages/index.js";
45
import "../column-defaults/index.js";
56
import "../comments/index.js";
67
import "../content-types/index.js";
8+
import "../context-info/index.js";
79
import "../features/index.js";
810
import "../fields/index.js";
911
import "../files/index.js";
1012
import "../folders/index.js";
1113
import "../forms/index.js";
14+
import "../groupsitemanager/index.js";
1215
import "../hubsites/index.js";
1316
import "../items/index.js";
1417
import "../lists/index.js";
@@ -32,17 +35,27 @@ import "../user-custom-actions/index.js";
3235
import "../views/index.js";
3336
import "../webparts/index.js";
3437
import "../webs/index.js";
38+
import "../utils/create-change-token.js";
39+
import "../utils/encode-path-str.js";
40+
import "../utils/extract-web-url.js";
41+
import "../utils/file-names.js";
42+
import "../utils/metadata.js";
43+
import "../utils/odata-url-from.js";
44+
import "../utils/to-resource-path.js";
45+
export * from "../batching.js";
3546
export * from "../appcatalog/index.js";
3647
export * from "../attachments/index.js";
3748
export * from "../clientside-pages/index.js";
3849
export * from "../column-defaults/index.js";
3950
export * from "../comments/index.js";
4051
export * from "../content-types/index.js";
52+
export * from "../context-info/index.js";
4153
export * from "../features/index.js";
4254
export * from "../fields/index.js";
4355
export * from "../files/index.js";
4456
export * from "../folders/index.js";
4557
export * from "../forms/index.js";
58+
export * from "../groupsitemanager/index.js";
4659
export * from "../hubsites/index.js";
4760
export * from "../items/index.js";
4861
export * from "../lists/index.js";
@@ -67,5 +80,12 @@ export * from "../user-custom-actions/index.js";
6780
export * from "../views/index.js";
6881
export * from "../webparts/index.js";
6982
export * from "../webs/index.js";
83+
export * from "../utils/create-change-token.js";
84+
export * from "../utils/encode-path-str.js";
85+
export * from "../utils/extract-web-url.js";
86+
export * from "../utils/file-names.js";
87+
export * from "../utils/metadata.js";
88+
export * from "../utils/odata-url-from.js";
89+
export * from "../utils/to-resource-path.js";
7090
export * from "../index.js";
7191
//# sourceMappingURL=all.d.ts.map

public/@pnp/sp/utils/encode-path-str.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55
* @returns A path encoded for use in SP urls
66
*/
77
export declare function encodePath(value: string): string;
8+
export declare function encodePathNoURIEncode(value: string): string;
89
//# sourceMappingURL=encode-path-str.d.ts.map

0 commit comments

Comments
 (0)