microsoft-graph 3.9.8 → 3.10.3
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/.github/workflows/check.yml +24 -0
- package/.github/workflows/release.yml +50 -0
- package/dist/cjs/models/Address.d.ts +1 -1
- package/dist/cjs/models/Address.d.ts.map +1 -1
- package/dist/cjs/services/stringCaseConversion.d.ts +4 -4
- package/dist/cjs/services/stringCaseConversion.d.ts.map +1 -1
- package/dist/cjs/services/stringCaseConversion.js +11 -4
- package/dist/esm/models/Address.d.ts +1 -1
- package/dist/esm/models/Address.d.ts.map +1 -1
- package/dist/esm/services/stringCaseConversion.d.ts +4 -4
- package/dist/esm/services/stringCaseConversion.d.ts.map +1 -1
- package/dist/esm/services/stringCaseConversion.js +8 -4
- package/docs/api/Address.md +8 -8
- package/docs/api/BadRequestError.md +1 -1
- package/docs/api/BadTemplateError.md +1 -1
- package/docs/api/BandwidthLimitExceededError.md +1 -1
- package/docs/api/ConflictBehavior.md +1 -1
- package/docs/api/ConflictError.md +1 -1
- package/docs/api/EnvironmentVariableMissingError.md +1 -1
- package/docs/api/ForbiddenError.md +1 -1
- package/docs/api/GatewayTimeoutError.md +1 -1
- package/docs/api/GoneError.md +1 -1
- package/docs/api/InconsistentContextError.md +1 -1
- package/docs/api/InsufficientStorageError.md +1 -1
- package/docs/api/InternalServerError.md +1 -1
- package/docs/api/InvalidArgumentError.md +1 -1
- package/docs/api/InvalidOperationError.md +1 -1
- package/docs/api/LengthRequiredError.md +1 -1
- package/docs/api/LockedError.md +1 -1
- package/docs/api/MethodNotAllowedError.md +1 -1
- package/docs/api/NeverError.md +1 -1
- package/docs/api/NotAcceptableError.md +1 -1
- package/docs/api/NotFoundError.md +1 -1
- package/docs/api/NotImplementedError.md +1 -1
- package/docs/api/PaymentRequiredError.md +1 -1
- package/docs/api/PreconditionFailedError.md +1 -1
- package/docs/api/ProtocolError.md +1 -1
- package/docs/api/RequestEntityTooLargeError.md +1 -1
- package/docs/api/RequestFailedError.md +1 -1
- package/docs/api/RequestTimeoutError.md +1 -1
- package/docs/api/RequestedRangeNotSatisfiableError.md +1 -1
- package/docs/api/ServiceUnavailableError.md +1 -1
- package/docs/api/TooManyRequestsError.md +1 -1
- package/docs/api/UnauthorizedError.md +1 -1
- package/docs/api/UnprocessableEntityError.md +1 -1
- package/docs/api/UnsupportedAddressTypeError.md +1 -1
- package/docs/api/UnsupportedMediaTypeError.md +1 -1
- package/docs/api/createDriveItemContent.md +1 -1
- package/docs/api/insertWorkbookRangeRow.md +2 -0
- package/docs/api/insertWorkbookRangeRows.md +2 -0
- package/docs/api/iterateWorkbookRangeRows.md +2 -0
- package/docs/api/readWorkbookRangeFirstRow.md +2 -0
- package/docs/api/readWorkbookRangeRows.md +2 -0
- package/docs/api/streamDriveItemContent.md +2 -2
- package/docs/api/stringCaseConversion.md +6 -6
- package/docs/api/updateWorkbookRangeFirstRow.md +2 -0
- package/docs/api/updateWorkbookRangeRows.md +2 -0
- package/package.json +6 -6
- package/.github/dependabot.yml +0 -12
- package/.github/workflows/quality.yml +0 -25
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
name: Check
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
check:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- name: Checkout repository
|
|
13
|
+
uses: actions/checkout@v4
|
|
14
|
+
- name: Setup NPM cache
|
|
15
|
+
uses: actions/cache@v4
|
|
16
|
+
with:
|
|
17
|
+
path: ~/.npm
|
|
18
|
+
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
19
|
+
restore-keys: |
|
|
20
|
+
${{ runner.os }}-node-
|
|
21
|
+
- name: Install dependencies
|
|
22
|
+
run: npm clean-install --prefer-offline --no-audit --no-fund
|
|
23
|
+
- name: Run build
|
|
24
|
+
run: npm run check
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
permissions:
|
|
10
|
+
contents: write
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
release:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
steps:
|
|
16
|
+
- name: Checkout repository
|
|
17
|
+
uses: actions/checkout@v4
|
|
18
|
+
|
|
19
|
+
- name: Setup NPM cache
|
|
20
|
+
uses: actions/cache@v4
|
|
21
|
+
with:
|
|
22
|
+
path: ~/.npm
|
|
23
|
+
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
24
|
+
restore-keys: |
|
|
25
|
+
${{ runner.os }}-node-
|
|
26
|
+
|
|
27
|
+
- name: Authenticate with npm
|
|
28
|
+
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
|
|
29
|
+
|
|
30
|
+
- name: Install dependencies
|
|
31
|
+
run: npm clean-install --prefer-offline --no-audit --no-fund
|
|
32
|
+
|
|
33
|
+
- name: Update version
|
|
34
|
+
id: version
|
|
35
|
+
run: |
|
|
36
|
+
MAJOR=$(node -p "require('./package.json').version.split('.')[0]")
|
|
37
|
+
MINOR=$(node -p "require('./package.json').version.split('.')[1]")
|
|
38
|
+
VERSION="$MAJOR.$MINOR.${{ github.run_number }}"
|
|
39
|
+
npm version --no-git-tag-version "$VERSION"
|
|
40
|
+
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
|
41
|
+
|
|
42
|
+
- name: Tag commit
|
|
43
|
+
run: |
|
|
44
|
+
git config user.name "github-actions[bot]"
|
|
45
|
+
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
46
|
+
git tag v${{ steps.version.outputs.version }}
|
|
47
|
+
git push origin v${{ steps.version.outputs.version }}
|
|
48
|
+
|
|
49
|
+
- name: Run release
|
|
50
|
+
run: npm run release
|
|
@@ -12,7 +12,7 @@ export type ColumnAddress = `${Uppercase<string>}`;
|
|
|
12
12
|
* Address of multiple consecutive columns in a worksheet ().
|
|
13
13
|
* @example 'C:D'
|
|
14
14
|
*/
|
|
15
|
-
export type ColumnRangeAddress = `${
|
|
15
|
+
export type ColumnRangeAddress = `${ColumnAddress}:${ColumnAddress}`;
|
|
16
16
|
/**
|
|
17
17
|
* Address of a used range in a column, either from the start or to the end.
|
|
18
18
|
* @example 'C:'
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Address.d.ts","sourceRoot":"","sources":["../../../src/models/Address.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;;GAGG;AACH,MAAM,MAAM,aAAa,GAAG,GAAG,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC;AAEnD;;;GAGG;AACH,MAAM,MAAM,kBAAkB,GAAG,GAAG,
|
|
1
|
+
{"version":3,"file":"Address.d.ts","sourceRoot":"","sources":["../../../src/models/Address.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;;GAGG;AACH,MAAM,MAAM,aAAa,GAAG,GAAG,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC;AAEnD;;;GAGG;AACH,MAAM,MAAM,kBAAkB,GAAG,GAAG,aAAa,IAAI,aAAa,EAAE,CAAC;AAErE;;;;GAIG;AACH,MAAM,MAAM,sBAAsB,GAAG,GAAG,aAAa,GAAG,GAAG,IAAI,aAAa,EAAE,CAAC;AAE/E;;;GAGG;AACH,MAAM,MAAM,UAAU,GAAG,GAAG,MAAM,EAAE,CAAC;AAErC;;;GAGG;AACH,MAAM,MAAM,eAAe,GAAG,GAAG,UAAU,IAAI,UAAU,EAAE,CAAC;AAE5D;;;;GAIG;AACH,MAAM,MAAM,mBAAmB,GAAG,GAAG,UAAU,GAAG,GAAG,IAAI,UAAU,EAAE,CAAC;AAEtE;;;GAGG;AACH,MAAM,MAAM,WAAW,GAAG,GAAG,aAAa,GAAG,UAAU,EAAE,CAAC;AAE1D;;;GAGG;AACH,MAAM,MAAM,gBAAgB,GAAG,GAAG,WAAW,IAAI,WAAW,EAAE,CAAC;AAE/D;;;;GAIG;AACH,MAAM,MAAM,oBAAoB,GAAG,GAAG,WAAW,GAAG,GAAG,IAAI,WAAW,EAAE,CAAC;AAEzE;;;GAGG;AACH,MAAM,MAAM,cAAc,GAAG,GAAG,CAAC;AAEjC;;;;GAIG;AACH,MAAM,MAAM,OAAO,GAAG,aAAa,GAAG,kBAAkB,GAAG,UAAU,GAAG,eAAe,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAEzH;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG,cAAc,GAAG,sBAAsB,GAAG,mBAAmB,GAAG,oBAAoB,CAAC;AAE/G;;;;;;GAMG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC/B,WAAW,EAAE,aAAa,CAAC;IAC3B,SAAS,EAAE,aAAa,CAAC;IACzB,QAAQ,EAAE,UAAU,CAAC;IACrB,MAAM,EAAE,UAAU,CAAC;CACnB,CAAC"}
|
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
*/
|
|
6
6
|
/**
|
|
7
7
|
* Converts a kebab-case string to camelCase.
|
|
8
|
-
* @param str -
|
|
9
|
-
* @returns
|
|
8
|
+
* @param str Kebab-case string.
|
|
9
|
+
* @returns CamelCase string.
|
|
10
10
|
*/
|
|
11
11
|
export declare function kebabToCamelCase(str: string): string;
|
|
12
12
|
/**
|
|
13
13
|
* Converts a camelCase string to PascalCase.
|
|
14
|
-
* @param str
|
|
15
|
-
* @returns
|
|
14
|
+
* @param str CamelCase string.
|
|
15
|
+
* @returns PascalCase string.
|
|
16
16
|
*/
|
|
17
17
|
export declare function camelCaseToPascalCase(str: string): string;
|
|
18
18
|
//# sourceMappingURL=stringCaseConversion.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stringCaseConversion.d.ts","sourceRoot":"","sources":["../../../src/services/stringCaseConversion.ts"],"names":[],"mappings":"AAAA;;;;GAIG;
|
|
1
|
+
{"version":3,"file":"stringCaseConversion.d.ts","sourceRoot":"","sources":["../../../src/services/stringCaseConversion.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAQpD;AAED;;;;GAIG;AACH,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAKzD"}
|
|
@@ -4,23 +4,30 @@
|
|
|
4
4
|
* @module stringCaseConversion
|
|
5
5
|
* @category Services
|
|
6
6
|
*/
|
|
7
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
9
|
+
};
|
|
7
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
11
|
exports.kebabToCamelCase = kebabToCamelCase;
|
|
9
12
|
exports.camelCaseToPascalCase = camelCaseToPascalCase;
|
|
13
|
+
const InvalidArgumentError_ts_1 = __importDefault(require("../errors/InvalidArgumentError.js"));
|
|
10
14
|
/**
|
|
11
15
|
* Converts a kebab-case string to camelCase.
|
|
12
|
-
* @param str -
|
|
13
|
-
* @returns
|
|
16
|
+
* @param str Kebab-case string.
|
|
17
|
+
* @returns CamelCase string.
|
|
14
18
|
*/
|
|
15
19
|
function kebabToCamelCase(str) {
|
|
20
|
+
if (str.length > 1000) {
|
|
21
|
+
throw new InvalidArgumentError_ts_1.default("String length exceeds 1000 characters.");
|
|
22
|
+
}
|
|
16
23
|
return str
|
|
17
24
|
.replace(/^-+|-+$/g, "") // Remove leading and trailing dashes
|
|
18
25
|
.replace(/-([a-z])/g, (_, letter) => letter.toUpperCase());
|
|
19
26
|
}
|
|
20
27
|
/**
|
|
21
28
|
* Converts a camelCase string to PascalCase.
|
|
22
|
-
* @param str
|
|
23
|
-
* @returns
|
|
29
|
+
* @param str CamelCase string.
|
|
30
|
+
* @returns PascalCase string.
|
|
24
31
|
*/
|
|
25
32
|
function camelCaseToPascalCase(str) {
|
|
26
33
|
if (!str) {
|
|
@@ -12,7 +12,7 @@ export type ColumnAddress = `${Uppercase<string>}`;
|
|
|
12
12
|
* Address of multiple consecutive columns in a worksheet ().
|
|
13
13
|
* @example 'C:D'
|
|
14
14
|
*/
|
|
15
|
-
export type ColumnRangeAddress = `${
|
|
15
|
+
export type ColumnRangeAddress = `${ColumnAddress}:${ColumnAddress}`;
|
|
16
16
|
/**
|
|
17
17
|
* Address of a used range in a column, either from the start or to the end.
|
|
18
18
|
* @example 'C:'
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Address.d.ts","sourceRoot":"","sources":["../../../src/models/Address.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;;GAGG;AACH,MAAM,MAAM,aAAa,GAAG,GAAG,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC;AAEnD;;;GAGG;AACH,MAAM,MAAM,kBAAkB,GAAG,GAAG,
|
|
1
|
+
{"version":3,"file":"Address.d.ts","sourceRoot":"","sources":["../../../src/models/Address.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;;GAGG;AACH,MAAM,MAAM,aAAa,GAAG,GAAG,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC;AAEnD;;;GAGG;AACH,MAAM,MAAM,kBAAkB,GAAG,GAAG,aAAa,IAAI,aAAa,EAAE,CAAC;AAErE;;;;GAIG;AACH,MAAM,MAAM,sBAAsB,GAAG,GAAG,aAAa,GAAG,GAAG,IAAI,aAAa,EAAE,CAAC;AAE/E;;;GAGG;AACH,MAAM,MAAM,UAAU,GAAG,GAAG,MAAM,EAAE,CAAC;AAErC;;;GAGG;AACH,MAAM,MAAM,eAAe,GAAG,GAAG,UAAU,IAAI,UAAU,EAAE,CAAC;AAE5D;;;;GAIG;AACH,MAAM,MAAM,mBAAmB,GAAG,GAAG,UAAU,GAAG,GAAG,IAAI,UAAU,EAAE,CAAC;AAEtE;;;GAGG;AACH,MAAM,MAAM,WAAW,GAAG,GAAG,aAAa,GAAG,UAAU,EAAE,CAAC;AAE1D;;;GAGG;AACH,MAAM,MAAM,gBAAgB,GAAG,GAAG,WAAW,IAAI,WAAW,EAAE,CAAC;AAE/D;;;;GAIG;AACH,MAAM,MAAM,oBAAoB,GAAG,GAAG,WAAW,GAAG,GAAG,IAAI,WAAW,EAAE,CAAC;AAEzE;;;GAGG;AACH,MAAM,MAAM,cAAc,GAAG,GAAG,CAAC;AAEjC;;;;GAIG;AACH,MAAM,MAAM,OAAO,GAAG,aAAa,GAAG,kBAAkB,GAAG,UAAU,GAAG,eAAe,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAEzH;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG,cAAc,GAAG,sBAAsB,GAAG,mBAAmB,GAAG,oBAAoB,CAAC;AAE/G;;;;;;GAMG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC/B,WAAW,EAAE,aAAa,CAAC;IAC3B,SAAS,EAAE,aAAa,CAAC;IACzB,QAAQ,EAAE,UAAU,CAAC;IACrB,MAAM,EAAE,UAAU,CAAC;CACnB,CAAC"}
|
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
*/
|
|
6
6
|
/**
|
|
7
7
|
* Converts a kebab-case string to camelCase.
|
|
8
|
-
* @param str -
|
|
9
|
-
* @returns
|
|
8
|
+
* @param str Kebab-case string.
|
|
9
|
+
* @returns CamelCase string.
|
|
10
10
|
*/
|
|
11
11
|
export declare function kebabToCamelCase(str: string): string;
|
|
12
12
|
/**
|
|
13
13
|
* Converts a camelCase string to PascalCase.
|
|
14
|
-
* @param str
|
|
15
|
-
* @returns
|
|
14
|
+
* @param str CamelCase string.
|
|
15
|
+
* @returns PascalCase string.
|
|
16
16
|
*/
|
|
17
17
|
export declare function camelCaseToPascalCase(str: string): string;
|
|
18
18
|
//# sourceMappingURL=stringCaseConversion.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stringCaseConversion.d.ts","sourceRoot":"","sources":["../../../src/services/stringCaseConversion.ts"],"names":[],"mappings":"AAAA;;;;GAIG;
|
|
1
|
+
{"version":3,"file":"stringCaseConversion.d.ts","sourceRoot":"","sources":["../../../src/services/stringCaseConversion.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAQpD;AAED;;;;GAIG;AACH,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAKzD"}
|
|
@@ -3,20 +3,24 @@
|
|
|
3
3
|
* @module stringCaseConversion
|
|
4
4
|
* @category Services
|
|
5
5
|
*/
|
|
6
|
+
import InvalidArgumentError from "../errors/InvalidArgumentError.js";
|
|
6
7
|
/**
|
|
7
8
|
* Converts a kebab-case string to camelCase.
|
|
8
|
-
* @param str -
|
|
9
|
-
* @returns
|
|
9
|
+
* @param str Kebab-case string.
|
|
10
|
+
* @returns CamelCase string.
|
|
10
11
|
*/
|
|
11
12
|
export function kebabToCamelCase(str) {
|
|
13
|
+
if (str.length > 1000) {
|
|
14
|
+
throw new InvalidArgumentError("String length exceeds 1000 characters.");
|
|
15
|
+
}
|
|
12
16
|
return str
|
|
13
17
|
.replace(/^-+|-+$/g, "") // Remove leading and trailing dashes
|
|
14
18
|
.replace(/-([a-z])/g, (_, letter) => letter.toUpperCase());
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
17
21
|
* Converts a camelCase string to PascalCase.
|
|
18
|
-
* @param str
|
|
19
|
-
* @returns
|
|
22
|
+
* @param str CamelCase string.
|
|
23
|
+
* @returns PascalCase string.
|
|
20
24
|
*/
|
|
21
25
|
export function camelCaseToPascalCase(str) {
|
|
22
26
|
if (!str) {
|
package/docs/api/Address.md
CHANGED
|
@@ -10,7 +10,7 @@ Address of a set of cells in a spreadsheet.
|
|
|
10
10
|
|
|
11
11
|
> **Address** = [`ColumnAddress`](#columnaddress) \| [`ColumnRangeAddress`](#columnrangeaddress) \| [`RowAddress`](#rowaddress) \| [`RowRangeAddress`](#rowrangeaddress) \| [`CellAddress`](#celladdress) \| [`CellRangeAddress`](#cellrangeaddress)
|
|
12
12
|
|
|
13
|
-
Defined in: [src/models/Address.ts:
|
|
13
|
+
Defined in: [src/models/Address.ts:75](https://github.com/Future-Secure-AI/microsoft-graph/blob/main/src/models/Address.ts#L75)
|
|
14
14
|
|
|
15
15
|
Any type of address.
|
|
16
16
|
|
|
@@ -92,7 +92,7 @@ Address of a single column in a worksheet.
|
|
|
92
92
|
|
|
93
93
|
### ColumnRangeAddress
|
|
94
94
|
|
|
95
|
-
> **ColumnRangeAddress** = `` `${
|
|
95
|
+
> **ColumnRangeAddress** = `` `${ColumnAddress}:${ColumnAddress}` ``
|
|
96
96
|
|
|
97
97
|
Defined in: [src/models/Address.ts:17](https://github.com/Future-Secure-AI/microsoft-graph/blob/main/src/models/Address.ts#L17)
|
|
98
98
|
|
|
@@ -110,7 +110,7 @@ Address of multiple consecutive columns in a worksheet ().
|
|
|
110
110
|
|
|
111
111
|
> **DecomposedAddress** = `object`
|
|
112
112
|
|
|
113
|
-
Defined in: [src/models/Address.ts:
|
|
113
|
+
Defined in: [src/models/Address.ts:89](https://github.com/Future-Secure-AI/microsoft-graph/blob/main/src/models/Address.ts#L89)
|
|
114
114
|
|
|
115
115
|
Address when decomposed into its components.
|
|
116
116
|
|
|
@@ -118,10 +118,10 @@ Address when decomposed into its components.
|
|
|
118
118
|
|
|
119
119
|
| Property | Type | Description | Defined in |
|
|
120
120
|
| ------ | ------ | ------ | ------ |
|
|
121
|
-
| <a id="endcolumn"></a> `endColumn` | [`ColumnAddress`](#columnaddress) | The ending column address. | [src/models/Address.ts:
|
|
122
|
-
| <a id="endrow"></a> `endRow` | [`RowAddress`](#rowaddress) | The ending row address. | [src/models/Address.ts:
|
|
123
|
-
| <a id="startcolumn"></a> `startColumn` | [`ColumnAddress`](#columnaddress) | The starting column address. | [src/models/Address.ts:
|
|
124
|
-
| <a id="startrow"></a> `startRow` | [`RowAddress`](#rowaddress) | The starting row address. | [src/models/Address.ts:
|
|
121
|
+
| <a id="endcolumn"></a> `endColumn` | [`ColumnAddress`](#columnaddress) | The ending column address. | [src/models/Address.ts:91](https://github.com/Future-Secure-AI/microsoft-graph/blob/main/src/models/Address.ts#L91) |
|
|
122
|
+
| <a id="endrow"></a> `endRow` | [`RowAddress`](#rowaddress) | The ending row address. | [src/models/Address.ts:93](https://github.com/Future-Secure-AI/microsoft-graph/blob/main/src/models/Address.ts#L93) |
|
|
123
|
+
| <a id="startcolumn"></a> `startColumn` | [`ColumnAddress`](#columnaddress) | The starting column address. | [src/models/Address.ts:90](https://github.com/Future-Secure-AI/microsoft-graph/blob/main/src/models/Address.ts#L90) |
|
|
124
|
+
| <a id="startrow"></a> `startRow` | [`RowAddress`](#rowaddress) | The starting row address. | [src/models/Address.ts:92](https://github.com/Future-Secure-AI/microsoft-graph/blob/main/src/models/Address.ts#L92) |
|
|
125
125
|
|
|
126
126
|
***
|
|
127
127
|
|
|
@@ -161,7 +161,7 @@ Address of multiple consecutive rows in a worksheet.
|
|
|
161
161
|
|
|
162
162
|
> **UsedAddress** = [`AllUsedAddress`](#allusedaddress) \| [`UsedColumnRangeAddress`](#usedcolumnrangeaddress) \| [`UsedRowRangeAddress`](#usedrowrangeaddress) \| [`UsedCellRangeAddress`](#usedcellrangeaddress)
|
|
163
163
|
|
|
164
|
-
Defined in: [src/models/Address.ts:
|
|
164
|
+
Defined in: [src/models/Address.ts:80](https://github.com/Future-Secure-AI/microsoft-graph/blob/main/src/models/Address.ts#L80)
|
|
165
165
|
|
|
166
166
|
Any type of used range address, including entire, column, row, or cell used ranges.
|
|
167
167
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -10,7 +10,7 @@ Conflict behavior options.
|
|
|
10
10
|
|
|
11
11
|
> **ConflictBehavior** = `"fail"` \| `"replace"` \| `"rename"`
|
|
12
12
|
|
|
13
|
-
Defined in: src/models/ConflictBehavior.ts:13
|
|
13
|
+
Defined in: [src/models/ConflictBehavior.ts:13](https://github.com/Future-Secure-AI/microsoft-graph/blob/main/src/models/ConflictBehavior.ts#L13)
|
|
14
14
|
|
|
15
15
|
What to do if a file/folder with the same name already exists.
|
|
16
16
|
- "fail": Throw an error if the item already exists.
|
|
@@ -180,7 +180,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
180
180
|
| Parameter | Type |
|
|
181
181
|
| ------ | ------ |
|
|
182
182
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
183
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
183
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
184
184
|
|
|
185
185
|
###### Returns
|
|
186
186
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -178,7 +178,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
178
178
|
| Parameter | Type |
|
|
179
179
|
| ------ | ------ |
|
|
180
180
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
181
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
181
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
182
182
|
|
|
183
183
|
###### Returns
|
|
184
184
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
package/docs/api/GoneError.md
CHANGED
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
package/docs/api/LockedError.md
CHANGED
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
package/docs/api/NeverError.md
CHANGED
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -176,7 +176,7 @@ Defined in: node\_modules/@types/node/globals.d.ts:150
|
|
|
176
176
|
| Parameter | Type |
|
|
177
177
|
| ------ | ------ |
|
|
178
178
|
| `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
|
|
179
|
-
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
179
|
+
| `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L171)[] |
|
|
180
180
|
|
|
181
181
|
###### Returns
|
|
182
182
|
|
|
@@ -80,7 +80,7 @@ Creates a new drive item in the specified parent drive or folder using a stream
|
|
|
80
80
|
| ------ | ------ | ------ |
|
|
81
81
|
| `parentRef` | [`DriveRef`](Drive-1.md#driveref) \| [`DriveItemRef`](DriveItem-1.md#driveitemref) | Reference to the parent drive or folder where the drive item will be created. |
|
|
82
82
|
| `itemPath` | [`DriveItemPath`](DriveItem-1.md#driveitempath) | Path (including the filename) for the new drive item within the given parent. |
|
|
83
|
-
| `contentStream` | [`ReadableStream`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
83
|
+
| `contentStream` | [`ReadableStream`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/globals.d.ts#L202) | A Node.js readable stream containing the file content. |
|
|
84
84
|
| `contentLength` | `number` | The total size in bytes of the content to be uploaded. |
|
|
85
85
|
| `options` | [`CreateDriveItemContentOptions`](#createdriveitemcontentoptions) | Optional. Additional options for the upload operation. |
|
|
86
86
|
|
|
@@ -8,7 +8,7 @@ Stream the content of a drive item as a Node.js readable stream.
|
|
|
8
8
|
|
|
9
9
|
### streamDriveItemContent()
|
|
10
10
|
|
|
11
|
-
> **streamDriveItemContent**(`itemRef`): [`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<[`Readable`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
11
|
+
> **streamDriveItemContent**(`itemRef`): [`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<[`Readable`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/stream.d.ts#L68)\>
|
|
12
12
|
|
|
13
13
|
Defined in: [src/operations/driveItem/streamDriveItemContent.ts:21](https://github.com/Future-Secure-AI/microsoft-graph/blob/main/src/operations/driveItem/streamDriveItemContent.ts#L21)
|
|
14
14
|
|
|
@@ -22,7 +22,7 @@ Stream the content of a drive item.
|
|
|
22
22
|
|
|
23
23
|
#### Returns
|
|
24
24
|
|
|
25
|
-
[`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<[`Readable`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/
|
|
25
|
+
[`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<[`Readable`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8eb4e48e9d43edd37c36a9a46bd1a1084807387b/types/node/stream.d.ts#L68)\>
|
|
26
26
|
|
|
27
27
|
A Node.js readable stream of the drive item content.
|
|
28
28
|
|
|
@@ -10,7 +10,7 @@ Utilities for converting string case styles (e.g., kebab-case to camelCase).
|
|
|
10
10
|
|
|
11
11
|
> **camelCaseToPascalCase**(`str`): `string`
|
|
12
12
|
|
|
13
|
-
Defined in: [src/services/stringCaseConversion.ts:
|
|
13
|
+
Defined in: [src/services/stringCaseConversion.ts:29](https://github.com/Future-Secure-AI/microsoft-graph/blob/main/src/services/stringCaseConversion.ts#L29)
|
|
14
14
|
|
|
15
15
|
Converts a camelCase string to PascalCase.
|
|
16
16
|
|
|
@@ -18,13 +18,13 @@ Converts a camelCase string to PascalCase.
|
|
|
18
18
|
|
|
19
19
|
| Parameter | Type | Description |
|
|
20
20
|
| ------ | ------ | ------ |
|
|
21
|
-
| `str` | `string` |
|
|
21
|
+
| `str` | `string` | CamelCase string. |
|
|
22
22
|
|
|
23
23
|
#### Returns
|
|
24
24
|
|
|
25
25
|
`string`
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
PascalCase string.
|
|
28
28
|
|
|
29
29
|
***
|
|
30
30
|
|
|
@@ -32,7 +32,7 @@ The PascalCase string.
|
|
|
32
32
|
|
|
33
33
|
> **kebabToCamelCase**(`str`): `string`
|
|
34
34
|
|
|
35
|
-
Defined in: [src/services/stringCaseConversion.ts:
|
|
35
|
+
Defined in: [src/services/stringCaseConversion.ts:14](https://github.com/Future-Secure-AI/microsoft-graph/blob/main/src/services/stringCaseConversion.ts#L14)
|
|
36
36
|
|
|
37
37
|
Converts a kebab-case string to camelCase.
|
|
38
38
|
|
|
@@ -40,10 +40,10 @@ Converts a kebab-case string to camelCase.
|
|
|
40
40
|
|
|
41
41
|
| Parameter | Type | Description |
|
|
42
42
|
| ------ | ------ | ------ |
|
|
43
|
-
| `str` | `string` |
|
|
43
|
+
| `str` | `string` | Kebab-case string. |
|
|
44
44
|
|
|
45
45
|
#### Returns
|
|
46
46
|
|
|
47
47
|
`string`
|
|
48
48
|
|
|
49
|
-
|
|
49
|
+
CamelCase string.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "microsoft-graph",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.10.3",
|
|
4
4
|
"description": "Microsoft GraphAPI SDK for NodeJS",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -26,20 +26,20 @@
|
|
|
26
26
|
"license": "PolyForm Noncommercial License 1.0.0",
|
|
27
27
|
"type": "module",
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@biomejs/biome": "^2.
|
|
29
|
+
"@biomejs/biome": "^2.1.1",
|
|
30
30
|
"@microsoft/microsoft-graph-types": "^2.40.0",
|
|
31
31
|
"@types/csv-parse": "^1.1.12",
|
|
32
32
|
"@types/lodash": "^4.17.17",
|
|
33
|
-
"@types/node": "^24.0.
|
|
33
|
+
"@types/node": "^24.0.6",
|
|
34
34
|
"csv-parse": "^5.6.0",
|
|
35
35
|
"globals": "^16.2.0",
|
|
36
36
|
"npm-check-updates": "^18.0.1",
|
|
37
37
|
"tsx": "^4.20.3",
|
|
38
|
-
"typedoc": "^0.28.
|
|
38
|
+
"typedoc": "^0.28.7",
|
|
39
39
|
"typedoc-material-theme": "^1.4.0",
|
|
40
|
-
"typedoc-plugin-dt-links": "^2.0.
|
|
40
|
+
"typedoc-plugin-dt-links": "^2.0.9",
|
|
41
41
|
"typedoc-plugin-include-example": "^2.1.2",
|
|
42
|
-
"typedoc-plugin-markdown": "^4.
|
|
42
|
+
"typedoc-plugin-markdown": "^4.7.0",
|
|
43
43
|
"typedoc-plugin-mdn-links": "^5.0.2",
|
|
44
44
|
"typedoc-plugin-rename-defaults": "^0.7.3",
|
|
45
45
|
"typescript": "^5.8.3",
|
package/.github/dependabot.yml
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# To get started with Dependabot version updates, you'll need to specify which
|
|
2
|
-
# package ecosystems to update and where the package manifests are located.
|
|
3
|
-
# Please see the documentation for all configuration options:
|
|
4
|
-
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
5
|
-
|
|
6
|
-
version: 2
|
|
7
|
-
updates:
|
|
8
|
-
- package-ecosystem: "npm"
|
|
9
|
-
directory: "/"
|
|
10
|
-
schedule:
|
|
11
|
-
interval: "weekly"
|
|
12
|
-
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
name: Code quality
|
|
2
|
-
permissions:
|
|
3
|
-
contents: read
|
|
4
|
-
pull-requests: write
|
|
5
|
-
on:
|
|
6
|
-
pull_request:
|
|
7
|
-
branches: [main]
|
|
8
|
-
paths:
|
|
9
|
-
- '**/*.ts'
|
|
10
|
-
- '**/*.js'
|
|
11
|
-
- 'biome.json'
|
|
12
|
-
jobs:
|
|
13
|
-
biome:
|
|
14
|
-
runs-on: ubuntu-latest
|
|
15
|
-
steps:
|
|
16
|
-
- name: Checkout
|
|
17
|
-
uses: actions/checkout@v3
|
|
18
|
-
- name: Set up Node.js
|
|
19
|
-
uses: actions/setup-node@v3
|
|
20
|
-
with:
|
|
21
|
-
node-version: 23
|
|
22
|
-
- name: Install packages
|
|
23
|
-
run: npm clean-install --include dev --no-audit --no-fund
|
|
24
|
-
- name: Run Biome check
|
|
25
|
-
run: npm run check || exit 1
|