microsoft-graph 3.9.8 → 3.10.2

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.
Files changed (55) hide show
  1. package/.github/workflows/check.yml +24 -0
  2. package/.github/workflows/release.yml +50 -0
  3. package/dist/cjs/services/stringCaseConversion.d.ts +4 -4
  4. package/dist/cjs/services/stringCaseConversion.d.ts.map +1 -1
  5. package/dist/cjs/services/stringCaseConversion.js +11 -4
  6. package/dist/esm/services/stringCaseConversion.d.ts +4 -4
  7. package/dist/esm/services/stringCaseConversion.d.ts.map +1 -1
  8. package/dist/esm/services/stringCaseConversion.js +8 -4
  9. package/docs/api/BadRequestError.md +1 -1
  10. package/docs/api/BadTemplateError.md +1 -1
  11. package/docs/api/BandwidthLimitExceededError.md +1 -1
  12. package/docs/api/ConflictBehavior.md +1 -1
  13. package/docs/api/ConflictError.md +1 -1
  14. package/docs/api/EnvironmentVariableMissingError.md +1 -1
  15. package/docs/api/ForbiddenError.md +1 -1
  16. package/docs/api/GatewayTimeoutError.md +1 -1
  17. package/docs/api/GoneError.md +1 -1
  18. package/docs/api/InconsistentContextError.md +1 -1
  19. package/docs/api/InsufficientStorageError.md +1 -1
  20. package/docs/api/InternalServerError.md +1 -1
  21. package/docs/api/InvalidArgumentError.md +1 -1
  22. package/docs/api/InvalidOperationError.md +1 -1
  23. package/docs/api/LengthRequiredError.md +1 -1
  24. package/docs/api/LockedError.md +1 -1
  25. package/docs/api/MethodNotAllowedError.md +1 -1
  26. package/docs/api/NeverError.md +1 -1
  27. package/docs/api/NotAcceptableError.md +1 -1
  28. package/docs/api/NotFoundError.md +1 -1
  29. package/docs/api/NotImplementedError.md +1 -1
  30. package/docs/api/PaymentRequiredError.md +1 -1
  31. package/docs/api/PreconditionFailedError.md +1 -1
  32. package/docs/api/ProtocolError.md +1 -1
  33. package/docs/api/RequestEntityTooLargeError.md +1 -1
  34. package/docs/api/RequestFailedError.md +1 -1
  35. package/docs/api/RequestTimeoutError.md +1 -1
  36. package/docs/api/RequestedRangeNotSatisfiableError.md +1 -1
  37. package/docs/api/ServiceUnavailableError.md +1 -1
  38. package/docs/api/TooManyRequestsError.md +1 -1
  39. package/docs/api/UnauthorizedError.md +1 -1
  40. package/docs/api/UnprocessableEntityError.md +1 -1
  41. package/docs/api/UnsupportedAddressTypeError.md +1 -1
  42. package/docs/api/UnsupportedMediaTypeError.md +1 -1
  43. package/docs/api/createDriveItemContent.md +1 -1
  44. package/docs/api/insertWorkbookRangeRow.md +2 -0
  45. package/docs/api/insertWorkbookRangeRows.md +2 -0
  46. package/docs/api/iterateWorkbookRangeRows.md +2 -0
  47. package/docs/api/readWorkbookRangeFirstRow.md +2 -0
  48. package/docs/api/readWorkbookRangeRows.md +2 -0
  49. package/docs/api/streamDriveItemContent.md +2 -2
  50. package/docs/api/stringCaseConversion.md +6 -6
  51. package/docs/api/updateWorkbookRangeFirstRow.md +2 -0
  52. package/docs/api/updateWorkbookRangeRows.md +2 -0
  53. package/package.json +6 -6
  54. package/.github/dependabot.yml +0 -12
  55. 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
@@ -5,14 +5,14 @@
5
5
  */
6
6
  /**
7
7
  * Converts a kebab-case string to camelCase.
8
- * @param str - The kebab-case string.
9
- * @returns The camelCase string.
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 - The camelCase string.
15
- * @returns The PascalCase string.
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;AAEH;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAIpD;AAED;;;;GAIG;AACH,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAKzD"}
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 - The kebab-case string.
13
- * @returns The camelCase string.
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 - The camelCase string.
23
- * @returns The PascalCase string.
29
+ * @param str CamelCase string.
30
+ * @returns PascalCase string.
24
31
  */
25
32
  function camelCaseToPascalCase(str) {
26
33
  if (!str) {
@@ -5,14 +5,14 @@
5
5
  */
6
6
  /**
7
7
  * Converts a kebab-case string to camelCase.
8
- * @param str - The kebab-case string.
9
- * @returns The camelCase string.
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 - The camelCase string.
15
- * @returns The PascalCase string.
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;AAEH;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAIpD;AAED;;;;GAIG;AACH,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAKzD"}
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 - The kebab-case string.
9
- * @returns The camelCase string.
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 - The camelCase string.
19
- * @returns The PascalCase string.
22
+ * @param str CamelCase string.
23
+ * @returns PascalCase string.
20
24
  */
21
25
  export function camelCaseToPascalCase(str) {
22
26
  if (!str) {
@@ -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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L171)[] |
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/master/types/node/globals.d.ts#L202) | A Node.js readable stream containing the file content. |
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
 
@@ -16,6 +16,8 @@ Defined in: [src/tasks/insertWorkbookRangeRow.ts:20](https://github.com/Future-S
16
16
 
17
17
  **`Experimental`**
18
18
 
19
+ Inserts a single row into a workbook range.
20
+
19
21
  #### Parameters
20
22
 
21
23
  | Parameter | Type | Description |
@@ -16,6 +16,8 @@ Defined in: [src/tasks/insertWorkbookRangeRows.ts:38](https://github.com/Future-
16
16
 
17
17
  **`Experimental`**
18
18
 
19
+ Inserts rows into a workbook range.
20
+
19
21
  #### Parameters
20
22
 
21
23
  | Parameter | Type | Default value | Description |
@@ -38,6 +38,8 @@ Defined in: [src/tasks/iterateWorkbookRangeRows.ts:54](https://github.com/Future
38
38
 
39
39
  **`Experimental`**
40
40
 
41
+ Iterate over the rows in a given worksheet range.
42
+
41
43
  #### Parameters
42
44
 
43
45
  | Parameter | Type | Default value | Description |
@@ -16,6 +16,8 @@ Defined in: [src/tasks/readWorkbookRangeFirstRow.ts:23](https://github.com/Futur
16
16
 
17
17
  **`Experimental`**
18
18
 
19
+ Read the first row from a given workbook range.
20
+
19
21
  #### Parameters
20
22
 
21
23
  | Parameter | Type | Default value | Description |
@@ -16,6 +16,8 @@ Defined in: [src/tasks/readWorkbookRangeRows.ts:23](https://github.com/Future-Se
16
16
 
17
17
  **`Experimental`**
18
18
 
19
+ Read all rows from a given workbook range.
20
+
19
21
  #### Parameters
20
22
 
21
23
  | Parameter | Type | Default value | Description |
@@ -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/master/types/node/stream.d.ts#L68)\>
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/master/types/node/stream.d.ts#L68)\>
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:23](https://github.com/Future-Secure-AI/microsoft-graph/blob/main/src/services/stringCaseConversion.ts#L23)
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` | The camelCase string. |
21
+ | `str` | `string` | CamelCase string. |
22
22
 
23
23
  #### Returns
24
24
 
25
25
  `string`
26
26
 
27
- The PascalCase string.
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:12](https://github.com/Future-Secure-AI/microsoft-graph/blob/main/src/services/stringCaseConversion.ts#L12)
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` | The kebab-case string. |
43
+ | `str` | `string` | Kebab-case string. |
44
44
 
45
45
  #### Returns
46
46
 
47
47
  `string`
48
48
 
49
- The camelCase string.
49
+ CamelCase string.
@@ -16,6 +16,8 @@ Defined in: [src/tasks/updateWorkbookRangeFirstRow.ts:28](https://github.com/Fut
16
16
 
17
17
  **`Experimental`**
18
18
 
19
+ Update first row in a given workbook range.
20
+
19
21
  #### Parameters
20
22
 
21
23
  | Parameter | Type | Description |
@@ -16,6 +16,8 @@ Defined in: [src/tasks/updateWorkbookRangeRows.ts:54](https://github.com/Future-
16
16
 
17
17
  **`Experimental`**
18
18
 
19
+ Update rows in a given workbook range.
20
+
19
21
  #### Parameters
20
22
 
21
23
  | Parameter | Type | Default value | Description |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "microsoft-graph",
3
- "version": "3.9.8",
3
+ "version": "3.10.2",
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.0.0",
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.3",
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.5",
38
+ "typedoc": "^0.28.7",
39
39
  "typedoc-material-theme": "^1.4.0",
40
- "typedoc-plugin-dt-links": "^2.0.5",
40
+ "typedoc-plugin-dt-links": "^2.0.9",
41
41
  "typedoc-plugin-include-example": "^2.1.2",
42
- "typedoc-plugin-markdown": "^4.6.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",
@@ -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