Skip to content

Commit df763f7

Browse files
dependabot[bot]cloud-sdk-jsdavidkna-sapmarikaner
authored
chore(deps): bump eslint-plugin-jsdoc from 60.3.1 to 61.0.1 (#6113)
* chore(deps): bump eslint-plugin-jsdoc from 60.3.1 to 61.0.1 Bumps [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) from 60.3.1 to 61.0.1. - [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases) - [Changelog](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/.releaserc) - [Commits](gajus/eslint-plugin-jsdoc@v60.3.1...v61.0.1) --- updated-dependencies: - dependency-name: eslint-plugin-jsdoc dependency-version: 61.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Regenerate check-public-api action * chore: fix linter issue * fix: use backticks instead of @link --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: cloud-sdk-js <[email protected]> Co-authored-by: David Knaack <[email protected]> Co-authored-by: Marika Marszalkowski <[email protected]>
1 parent 84c021d commit df763f7

File tree

65 files changed

+176
-158
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+176
-158
lines changed

packages/connectivity/src/scp-cf/xsuaa-service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ interface XsuaaParameters {
1818
}
1919

2020
/**
21-
* Make a client credentials request against the XSUAA credentials inside {@param service}.
21+
* Make a client credentials request against the XSUAA credentials inside `service`.
2222
* @param service - Service as it is defined in the environment variable.
2323
* @param jwt - User JWT or object containing the `iss` property.
2424
* @returns Client credentials token.
@@ -67,7 +67,7 @@ export async function getClientCredentialsToken(
6767
}
6868

6969
/**
70-
* Make a user token request against the XSUAA credentials inside {@param service}.
70+
* Make a user token request against the XSUAA credentials inside `service`.
7171
* @param service - Service as it is defined in the environment variable.
7272
* @param userJwt - User JWT.
7373
* @returns User token.

packages/eslint-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"eslint-config-prettier": "^10.1.8",
3636
"eslint-import-resolver-typescript": "^4.4.4",
3737
"eslint-plugin-import": "^2.32.0",
38-
"eslint-plugin-jsdoc": "^60.3.1",
38+
"eslint-plugin-jsdoc": "^61.0.1",
3939
"eslint-plugin-prettier": "^5.5.4",
4040
"eslint-plugin-regex": "^1.10.0",
4141
"eslint-plugin-unused-imports": "^4.3.0",

packages/generator-common/src/options-parser.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ type ParsedOptionType<OptionT extends Option> = OptionT extends {
6363

6464
/**
6565
* Union type of the options that specify the given property name.
66-
* @typeParam OptionPropertyT - The literal name of the property in each option.
67-
* @typeParam CliOptionsT - Configuration of CLI options.
66+
* @template OptionPropertyT - The literal name of the property in each option.
67+
* @template CliOptionsT - Configuration of CLI options.
6868
*/
6969
type OptionsWith<
7070
OptionPropertyT extends keyof Option,

packages/odata-common/src/batch-response.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ interface BatchResponseTypeGuards<DeSerializersT extends DeSerializers> {
2121

2222
/**
2323
* Represents the list of responses for a change set in a batch request.
24-
* @typeParam DeSerializersT - Type of the (de-)serializers.
24+
* @template DeSerializersT - Type of the (de-)serializers.
2525
*/
2626
export interface WriteResponses<
2727
DeSerializersT extends DeSerializers
@@ -52,7 +52,7 @@ export interface ErrorResponse extends BatchResponseTypeGuards<any> {
5252

5353
/**
5454
* Represents a response to a retrieve request within a batch request.
55-
* @typeParam DeSerializersT - Type of the (de-)serializers.
55+
* @template DeSerializersT - Type of the (de-)serializers.
5656
*/
5757
export interface ReadResponse<
5858
DeSerializersT extends DeSerializers
@@ -85,7 +85,7 @@ export interface ReadResponse<
8585

8686
/**
8787
* Represents a single subresponse to a changeset request within a batch request.
88-
* @typeParam DeSerializersT - Type of the (de-)serializers.
88+
* @template DeSerializersT - Type of the (de-)serializers.
8989
*/
9090
export interface WriteResponse<DeSerializersT extends DeSerializers> {
9191
/**

packages/odata-common/src/de-serializers/custom-de-serializers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import type { DefaultDeSerializers } from './default-de-serializers';
1111
* Infers the deserialized type for an EDM type, based on custom (de-)serializers.
1212
* If the custom (de-)serializers specify a type for the given EDM type, this type is inferred.
1313
* Otherwise the given DefaultType is used.
14-
* @typeParam CustomDeSerializerT - Type of the custom (de-)serializers.
15-
* @typeParam EdmT - The EDM type to infer the type for.
14+
* @template CustomDeSerializerT - Type of the custom (de-)serializers.
15+
* @template EdmT - The EDM type to infer the type for.
1616
*/
1717
export type CustomOrDefaultType<
1818
CustomDeSerializerT,

packages/odata-common/src/de-serializers/de-serializers.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export interface DeSerializers<
8383
/**
8484
* Represents a set of functions for serialization, deserialization and optionally serialization for URIs.
8585
* The return type of the `deserialize` function is the type of the input to the `serialize` and `serializeToUri` functions.
86-
* @typeParam DeserializedT - The return type of `deserialize` and input of `serialize` and `serializeToUri`.
86+
* @template DeserializedT - The return type of `deserialize` and input of `serialize` and `serializeToUri`.
8787
*/
8888
export interface DeSerializer<DeserializedT> {
8989
/**
@@ -115,8 +115,8 @@ export interface DeSerializer<DeserializedT> {
115115

116116
/**
117117
* Infers the deserialized type for an EDM type from the given (de-)serializers type.
118-
* @typeParam DeSerializersT - Type of the (de-)serializers.
119-
* @typeParam EdmT - Return type of the deserialize function for the given EDM type.
118+
* @template DeSerializersT - Type of the (de-)serializers.
119+
* @template EdmT - Return type of the deserialize function for the given EDM type.
120120
*/
121121
export type DeserializedType<
122122
DeSerializersT extends DeSerializers,

packages/odata-common/src/entity-api.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import type {
99

1010
/**
1111
* Represents the API of an entity, including its request and entity builders as well as its schema.
12-
* @typeParam EntityT - Type of the entity.
13-
* @typeParam DeSerializersT - Type of the (de-)serializers.
14-
* @typeParam JsonT - Type of the entity without methods.
12+
* @template EntityT - Type of the entity.
13+
* @template DeSerializersT - Type of the (de-)serializers.
14+
* @template JsonT - Type of the entity without methods.
1515
*/
1616
export interface EntityApi<
1717
EntityT extends EntityBase,

packages/odata-common/src/entity-builder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export type PureEntityType<T> = Omit<NonNullishType<T>, keyof EntityBase>;
3232
* Type to describe possible inputs for `.fromJson`.
3333
* This is based on the JSON type of an entity and allows all properties to be optional recursively.
3434
* It also allows setting unknown properties, which will be treated as custom fields.
35-
* @typeParam JsonT - JSON type of the entity.
35+
* @template JsonT - JSON type of the entity.
3636
*/
3737
// prettier-ignore
3838
export type FromJsonType<JsonT> = {

packages/odata-common/src/expandable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type { EntityApi } from './entity-api';
55

66
/**
77
* Represents everything that can be used in an `.expand` statement. Only relevant for OData v4 requests.
8-
* @typeParam EntityT - Type of the entity to be selected on
8+
* @template EntityT - Type of the entity to be selected on.
99
*/
1010
export type Expandable<
1111
EntityT extends EntityBase,

packages/odata-common/src/filter/filter-link.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import type { Filterable } from './filterable';
1212
* `Entity.to_NavProperty.filter(LinkedEntity.property.equals(value))` is a `FilterLink`.
1313
*
1414
* In OData v4 filtering is also possible on one-to-many links. See {@link OneToManyLink}.
15-
* @typeParam EntityT - Type of the entity to be filtered.
16-
* @typeParam LinkedEntityT - Type of the linked entity which is used in the filter.
15+
* @template EntityT - Type of the entity to be filtered.
16+
* @template LinkedEntityT - Type of the linked entity which is used in the filter.
1717
*/
1818
export class FilterLink<
1919
EntityT extends EntityBase,

0 commit comments

Comments
 (0)