@twin.org/web 0.0.3-next.32 → 0.0.3-next.33

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.
@@ -1 +1 @@
1
- {"version":3,"file":"IFetchOptions.js","sourceRoot":"","sources":["../../../src/models/IFetchOptions.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { IHttpHeaders } from \"./IHttpHeaders.js\";\n\n/**\n * Options for call to the fetch helper.\n */\nexport interface IFetchOptions {\n\t/**\n\t * @param headers The headers for the request.\n\t */\n\theaders?: IHttpHeaders;\n\n\t/**\n\t * Timeout for requests in milliseconds.\n\t */\n\ttimeoutMs?: number;\n\n\t/**\n\t * Include credentials in the requests.\n\t */\n\tincludeCredentials?: boolean;\n\n\t/**\n\t * The number of times to retry fetching defaults to no retries.\n\t */\n\tretryCount?: number;\n\n\t/**\n\t * The number of milliseconds we should delay before any retry.\n\t */\n\tretryDelayMs?: number;\n\n\t/**\n\t * The number of milliseconds to cache the response for, leave undefined for no cache, 0 means infinite.\n\t */\n\tcacheTtlMs?: number;\n}\n"]}
1
+ {"version":3,"file":"IFetchOptions.js","sourceRoot":"","sources":["../../../src/models/IFetchOptions.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { IHttpHeaders } from \"./IHttpHeaders.js\";\n\n/**\n * Options for call to the fetch helper.\n */\nexport interface IFetchOptions {\n\t/**\n\t * The headers for the request.\n\t */\n\theaders?: IHttpHeaders;\n\n\t/**\n\t * Timeout for requests in milliseconds.\n\t */\n\ttimeoutMs?: number;\n\n\t/**\n\t * Include credentials in the requests.\n\t */\n\tincludeCredentials?: boolean;\n\n\t/**\n\t * The number of times to retry fetching defaults to no retries.\n\t */\n\tretryCount?: number;\n\n\t/**\n\t * The number of milliseconds we should delay before any retry.\n\t */\n\tretryDelayMs?: number;\n\n\t/**\n\t * The number of milliseconds to cache the response for, leave undefined for no cache, 0 means infinite.\n\t */\n\tcacheTtlMs?: number;\n}\n"]}
@@ -4,7 +4,7 @@ import type { IHttpHeaders } from "./IHttpHeaders.js";
4
4
  */
5
5
  export interface IFetchOptions {
6
6
  /**
7
- * @param headers The headers for the request.
7
+ * The headers for the request.
8
8
  */
9
9
  headers?: IHttpHeaders;
10
10
  /**
package/docs/changelog.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.3-next.33](https://github.com/twinfoundation/twin-framework/compare/web-v0.0.3-next.32...web-v0.0.3-next.33) (2026-05-05)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **web:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/core bumped from 0.0.3-next.32 to 0.0.3-next.33
16
+ * @twin.org/crypto bumped from 0.0.3-next.32 to 0.0.3-next.33
17
+ * @twin.org/nameof bumped from 0.0.3-next.32 to 0.0.3-next.33
18
+ * devDependencies
19
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.32 to 0.0.3-next.33
20
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.32 to 0.0.3-next.33
21
+ * @twin.org/validate-locales bumped from 0.0.3-next.32 to 0.0.3-next.33
22
+
3
23
  ## [0.0.3-next.32](https://github.com/twinfoundation/twin-framework/compare/web-v0.0.3-next.31...web-v0.0.3-next.32) (2026-04-30)
4
24
 
5
25
 
@@ -8,8 +8,6 @@ Options for call to the fetch helper.
8
8
 
9
9
  > `optional` **headers?**: [`IHttpHeaders`](IHttpHeaders.md)
10
10
 
11
- #### Param
12
-
13
11
  The headers for the request.
14
12
 
15
13
  ***
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/web",
3
- "version": "0.0.3-next.32",
3
+ "version": "0.0.3-next.33",
4
4
  "description": "Classes for use with web operations",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,9 +14,9 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/core": "0.0.3-next.32",
18
- "@twin.org/crypto": "0.0.3-next.32",
19
- "@twin.org/nameof": "0.0.3-next.32",
17
+ "@twin.org/core": "0.0.3-next.33",
18
+ "@twin.org/crypto": "0.0.3-next.33",
19
+ "@twin.org/nameof": "0.0.3-next.33",
20
20
  "jose": "6.2.2"
21
21
  },
22
22
  "main": "./dist/es/index.js",