@lindle/sharepoint_requests 0.1.9-beta.0 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/root/index.d.ts +2 -2
- package/dist/sharepoint_requests.cjs.development.js +222 -290
- package/dist/sharepoint_requests.cjs.development.js.map +1 -1
- package/dist/sharepoint_requests.cjs.production.min.js +1 -1
- package/dist/sharepoint_requests.cjs.production.min.js.map +1 -1
- package/dist/sharepoint_requests.esm.js +222 -290
- package/dist/sharepoint_requests.esm.js.map +1 -1
- package/package.json +3 -3
- package/src/root/index.ts +49 -24
- package/src/{types/index.ts → types.ts} +342 -342
- package/dist/root/request/digest.d.ts +0 -7
- package/dist/root/request/get.d.ts +0 -13
- package/src/root/request/digest.ts +0 -25
- package/src/root/request/get.ts +0 -44
- /package/dist/{types/index.d.ts → types.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ This package is a TypeScript library for interacting with SharePoint REST APIs.
|
|
|
7
7
|
Install the package using npm:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install
|
|
10
|
+
npm install @lindle/sharepoint_requests
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Usage
|
|
@@ -15,7 +15,7 @@ npm install sharepoint-requests
|
|
|
15
15
|
### Create a SharePoint Request Instance
|
|
16
16
|
|
|
17
17
|
```typescript
|
|
18
|
-
import createBase from '
|
|
18
|
+
import createBase from '@lindle/sharepoint_requests';
|
|
19
19
|
|
|
20
20
|
const sharepoint = createBase().create({
|
|
21
21
|
baseURL: 'https://your-sharepoint-site.com',
|
package/dist/root/index.d.ts
CHANGED