@ama-sdk/client-fetch 14.0.0-next.5 → 14.0.0-next.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ama-sdk/client-fetch",
3
- "version": "14.0.0-next.5",
3
+ "version": "14.0.0-next.8",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,20 +35,20 @@
35
35
  "build:builders": "tsc -b tsconfig.builders.json --pretty && yarn generate-cjs-manifest"
36
36
  },
37
37
  "dependencies": {
38
- "@o3r/schematics": "~14.0.0-next.5",
38
+ "@o3r/schematics": "~14.0.0-next.8",
39
39
  "@swc/helpers": "~0.5.17",
40
40
  "tslib": "^2.6.2",
41
41
  "uuid": "^11.0.5"
42
42
  },
43
43
  "peerDependencies": {
44
- "@ama-sdk/core": "~14.0.0-next.5",
44
+ "@ama-sdk/core": "~14.0.0-next.8",
45
45
  "@angular-devkit/schematics": "^20.0.0",
46
46
  "@angular/cli": "^20.0.0",
47
47
  "@angular/common": "^20.0.0",
48
- "@o3r/schematics": "~14.0.0-next.5",
48
+ "@o3r/schematics": "~14.0.0-next.8",
49
49
  "@schematics/angular": "^20.0.0",
50
50
  "isomorphic-fetch": "^3.0.0",
51
- "type-fest": "^4.30.1",
51
+ "type-fest": "^5.3.1",
52
52
  "typescript": "^5.9.0"
53
53
  },
54
54
  "peerDependenciesMeta": {
@@ -78,7 +78,7 @@
78
78
  }
79
79
  },
80
80
  "devDependencies": {
81
- "@ama-sdk/core": "~14.0.0-next.5",
81
+ "@ama-sdk/core": "~14.0.0-next.8",
82
82
  "@angular-devkit/core": "~20.3.13",
83
83
  "@angular-devkit/schematics": "~20.3.13",
84
84
  "@angular/common": "~20.3.15",
@@ -86,9 +86,9 @@
86
86
  "@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
87
87
  "@nx/eslint-plugin": "~21.6.0",
88
88
  "@nx/jest": "~21.6.0",
89
- "@o3r/build-helpers": "~14.0.0-next.5",
90
- "@o3r/eslint-plugin": "~14.0.0-next.5",
91
- "@o3r/test-helpers": "~14.0.0-next.5",
89
+ "@o3r/build-helpers": "~14.0.0-next.8",
90
+ "@o3r/eslint-plugin": "~14.0.0-next.8",
91
+ "@o3r/test-helpers": "~14.0.0-next.8",
92
92
  "@schematics/angular": "~20.3.13",
93
93
  "@stylistic/eslint-plugin": "~5.6.0",
94
94
  "@swc/cli": "~0.7.9",
@@ -104,9 +104,9 @@
104
104
  "eslint-plugin-import": "~2.32.0",
105
105
  "eslint-plugin-import-newlines": "~1.4.0",
106
106
  "eslint-plugin-jest": "~29.1.0",
107
- "eslint-plugin-jsdoc": "~54.7.0",
107
+ "eslint-plugin-jsdoc": "~61.5.0",
108
108
  "eslint-plugin-prefer-arrow": "~1.2.3",
109
- "eslint-plugin-unicorn": "~60.0.0",
109
+ "eslint-plugin-unicorn": "~62.0.0",
110
110
  "eslint-plugin-unused-imports": "~4.3.0",
111
111
  "isomorphic-fetch": "~3.0.0",
112
112
  "jest": "~30.2.0",
@@ -118,7 +118,7 @@
118
118
  "rxjs": "^7.8.1",
119
119
  "semver": "^7.5.2",
120
120
  "ts-jest": "~29.4.0",
121
- "type-fest": "^4.30.1",
121
+ "type-fest": "^5.3.1",
122
122
  "typescript": "~5.9.2",
123
123
  "typescript-eslint": "~8.47.0",
124
124
  "zone.js": "~0.15.0"
@@ -3,12 +3,12 @@ import type { Mark as CoreMark, PerformanceMetricOptions as CorePerformanceMetri
3
3
  import type { FetchCall, FetchPlugin, FetchPluginContext } from '../../fetch-plugin';
4
4
  /**
5
5
  * Performance metric mark associated to a call.
6
- * @deprecated use {@link CoreMark|Mark from @ama-sdk/core} instead. Will be removed in v15
6
+ * @deprecated use {@link CoreMark|Mark from `@ama-sdk/core`} instead. Will be removed in v15
7
7
  */
8
8
  export type Mark = CoreMark;
9
9
  /**
10
10
  * Options for the Performance Metric Plugin.
11
- * @deprecated use {@link CorePerformanceMetricOptions|PerformanceMetricOptions from @ama-sdk/core} instead. Will be removed in v15
11
+ * @deprecated use {@link CorePerformanceMetricOptions|PerformanceMetricOptions from `@ama-sdk/core`} instead. Will be removed in v15
12
12
  */
13
13
  export type PerformanceMetricOptions = CorePerformanceMetricOptions;
14
14
  /**
@@ -1,6 +1,6 @@
1
1
  import type { FetchCall, FetchPlugin, FetchPluginContext } from '../../fetch-plugin';
2
2
  /**
3
- * Type to describe the timer status of the {@see TimeoutFetch} plugin.
3
+ * Type to describe the timer status of the {@link TimeoutFetch} plugin.
4
4
  * Today, only the stop and restart of the timer is supported which match the following events:
5
5
  * - stop: stop the timeout timer
6
6
  * - start: reset the timer and restart it
@@ -12,7 +12,7 @@ export type TimeoutStatus = 'timeoutStopped' | 'timeoutStarted';
12
12
  */
13
13
  export type TimeoutPauseEventHandler = ((timeoutPauseCallback: (timeoutStatus: TimeoutStatus) => void, context: any) => () => void);
14
14
  /**
15
- * Factory to generate a {@see TimeoutPauseEventHandler} depending on various configurations
15
+ * Factory to generate a {@link TimeoutPauseEventHandler} depending on various configurations
16
16
  */
17
17
  export type TimeoutPauseEventHandlerFactory<T> = (config?: Partial<T>) => TimeoutPauseEventHandler;
18
18
  /**